diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index fc8d77466731..98fcb80de020 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -21,7 +21,7 @@ ] }, "microsoft.dotnet.xharness.cli": { - "version": "10.0.0-prerelease.24514.1", + "version": "10.0.0-prerelease.24524.9", "commands": [ "xharness" ] diff --git a/NuGet.config b/NuGet.config index ddfa65c56e49..d4bf36d29bea 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,6 +13,9 @@ + + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9638a5d1fc15..26b352bf1856 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,16 +1,16 @@ - + https://github.com/dotnet/xharness - 8b3d320f930244889da101cd17cbfb6a178b7e35 + b12e9b940300433453aa7d57ff094aad50ce782c - + https://github.com/dotnet/xharness - 8b3d320f930244889da101cd17cbfb6a178b7e35 + b12e9b940300433453aa7d57ff094aad50ce782c - + https://github.com/dotnet/xharness - 8b3d320f930244889da101cd17cbfb6a178b7e35 + b12e9b940300433453aa7d57ff094aad50ce782c diff --git a/eng/Versions.props b/eng/Versions.props index e45bc8f4a2a0..d1d8b7dc28f9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -28,7 +28,7 @@ - 8.0.82 + 8.0.83 9.0.100-rc.2.24474.11 $(MicrosoftNETSdkPackageVersion) @@ -82,7 +82,7 @@ 9.0.0-rc.2.24474.3 9.0.0-rc.2.24474.3 - 8.0.7 + 8.0.10 $(MicrosoftAspNetCorePackageVersion) $(MicrosoftAspNetCorePackageVersion) $(MicrosoftAspNetCorePackageVersion) @@ -124,10 +124,10 @@ <_SkiaSharpExtendedVersion>2.0.0 <_HarfBuzzSharpVersion>7.3.0.2 <_SkiaSharpNativeAssetsVersion>0.0.0-commit.7af1d0840a381c0ce7ef2877454a88dbb2949686.1086 - 7.0.114 - 10.0.0-prerelease.24514.1 - 10.0.0-prerelease.24514.1 - 10.0.0-prerelease.24514.1 + 7.0.120 + 10.0.0-prerelease.24524.9 + 10.0.0-prerelease.24524.9 + 10.0.0-prerelease.24524.9 0.9.2 1.0.0.16 1.3.0 diff --git a/eng/pipelines/common/device-tests-steps.yml b/eng/pipelines/common/device-tests-steps.yml index 854a1e67c078..0e1e3b14b012 100644 --- a/eng/pipelines/common/device-tests-steps.yml +++ b/eng/pipelines/common/device-tests-steps.yml @@ -30,7 +30,7 @@ steps: ${{ if or(eq(parameters.platform, 'ios'), eq(parameters.platform, 'catalyst'), eq(parameters.platform, 'android'))}}: platform: macos skipXcode: ${{ or(eq(parameters.platform, 'android'), eq(parameters.platform, 'windows')) }} - skipProvisioning: ${{ eq(parameters.platform, 'windows') }} + skipProvisioning: true skipAndroidImages : ${{ or(eq(parameters.platform, 'ios'), eq(parameters.platform, 'catalyst')) }} skipAndroidSdks: ${{ or(eq(parameters.platform, 'ios'), eq(parameters.platform, 'catalyst')) }} installDefaultAndroidApi: ${{ or(eq(parameters.platform, 'ios'), eq(parameters.platform, 'catalyst')) }} diff --git a/eng/pipelines/common/maui-templates.yml b/eng/pipelines/common/maui-templates.yml index 1dcd1be6e16e..3062100fd248 100644 --- a/eng/pipelines/common/maui-templates.yml +++ b/eng/pipelines/common/maui-templates.yml @@ -69,6 +69,8 @@ jobs: - template: provision.yml parameters: checkoutDirectory: ${{ parameters.checkoutDirectory }} + skipXcode: ${{ ne(parameters.PlatformName, 'macos') }} + skipProvisioning: true - task: DownloadBuildArtifacts@0 displayName: 'Download Packages' @@ -156,18 +158,19 @@ jobs: - ${{ each pair in step }}: ${{ pair.key }}: ${{ pair.value }} - - ${{ if eq(RunPlatform.testName, 'RunOniOS') }}: - - bash: | - chmod +x $(System.DefaultWorkingDirectory)/eng/scripts/clean-bot.sh - chmod +x $(System.DefaultWorkingDirectory)/eng/scripts/clean-simulator-runtime.sh - $(System.DefaultWorkingDirectory)/eng/scripts/clean-bot.sh - displayName: 'Clean bot' - continueOnError: true - timeoutInMinutes: 60 + # - ${{ if eq(RunPlatform.testName, 'RunOniOS') }}: + # - bash: | + # chmod +x $(System.DefaultWorkingDirectory)/eng/scripts/clean-bot.sh + # chmod +x $(System.DefaultWorkingDirectory)/eng/scripts/clean-simulator-runtime.sh + # $(System.DefaultWorkingDirectory)/eng/scripts/clean-bot.sh + # displayName: 'Clean bot' + # continueOnError: true + # timeoutInMinutes: 60 - template: provision.yml parameters: skipXcode: ${{ eq(RunPlatform.testName, 'RunOnAndroid') }} + skipProvisioning: true skipAndroidImages: ${{ ne(RunPlatform.testName, 'RunOnAndroid') }} checkoutDirectory: ${{ parameters.checkoutDirectory }} diff --git a/eng/pipelines/common/pack.yml b/eng/pipelines/common/pack.yml index eb3cb7da5aad..44db61145f1b 100644 --- a/eng/pipelines/common/pack.yml +++ b/eng/pipelines/common/pack.yml @@ -88,41 +88,6 @@ steps: - ${{ each pair in step }}: ${{ pair.key }}: ${{ pair.value }} - - pwsh: | - if ($env:JAVA_HOME_11_X64) { - $env:JAVA_HOME = $env:JAVA_HOME_11_X64 - } else { - $path = (Get-ChildItem $env:ProgramFiles\Microsoft\jdk-11.*\bin\java.exe) | Select-Object -First 1 - if ($path -and (Test-Path $path)) { - $env:JAVA_HOME = $path.Directory.Parent.FullName - } - } - if ($env:JAVA_HOME) { - echo "##vso[task.setvariable variable=JAVA_HOME]$env:JAVA_HOME" - echo "JAVA_HOME set to '$env:JAVA_HOME'" - } else { - echo "Unable to set JAVA_HOME" - } - displayName: 'Setup JDK Paths' - condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - - - pwsh: | - if ($env:ANDROID_SDK_ROOT) { - echo "ANDROID_SDK_ROOT already set to '$env:ANDROID_SDK_ROOT'" - } else { - if ((Test-Path "${env:ProgramFiles(x86)}\Android\android-sdk")) { - $env:ANDROID_SDK_ROOT = "${env:ProgramFiles(x86)}\Android\android-sdk" - } - if ($env:ANDROID_SDK_ROOT) { - echo "##vso[task.setvariable variable=ANDROID_SDK_ROOT]$env:ANDROID_SDK_ROOT" - echo "ANDROID_SDK_ROOT set to '$env:ANDROID_SDK_ROOT'" - } else { - echo "Unable to set ANDROID_SDK_ROOT" - } - } - displayName: 'Setup ANDROID_SDK_ROOT Paths' - condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - - pwsh: ./build.ps1 --target=dotnet --configuration="${{ parameters.buildConfiguration }}" --verbosity=diagnostic --nugetsource="${{ parameters.nugetFolder }}" displayName: 'Install .NET' retryCountOnTaskFailure: 3 diff --git a/eng/pipelines/common/provision.yml b/eng/pipelines/common/provision.yml index 13302d8e0025..3a65cbbe32e1 100644 --- a/eng/pipelines/common/provision.yml +++ b/eng/pipelines/common/provision.yml @@ -20,47 +20,63 @@ parameters: steps: # Prepare macOS - - ${{ if ne(parameters.poolName, 'Azure Pipelines') }}: - - template: agent-cleanser/v1.yml@yaml-templates - parameters: - condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) - UninstallMono: false - UninstallXamarinMac: false - CleanseAgentToolsDotNet: true # Cleanse all .NET versions under the agent tools directory and use only those provisioned by the pipeline - SelfHealPowerShell: false - AUTH_TOKEN_GITHUB_COM: $(github--pat--vs-mobiletools-engineering-service2) + # - ${{ if ne(parameters.poolName, 'Azure Pipelines') }}: + # - template: agent-cleanser/v1.yml@yaml-templates + # parameters: + # condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) + # UninstallMono: false + # UninstallXamarinMac: false + # CleanseAgentToolsDotNet: true # Cleanse all .NET versions under the agent tools directory and use only those provisioned by the pipeline + # SelfHealPowerShell: false + # AUTH_TOKEN_GITHUB_COM: $(github--pat--vs-mobiletools-engineering-service2) # Provision Xcode - ${{ if ne(parameters.skipXcode, 'true') }}: - - task: xamops.azdevex.provisionator-task.provisionator@2 - condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) - displayName: 'Provision Xcode' - inputs: - provisioning_script: ${{ parameters.checkoutDirectory }}/${{ parameters.provisionatorXCodePath }} - provisioning_extra_args: ${{ parameters.provisionatorExtraArguments }} - github_token: ${{ parameters.gitHubToken }} - env: - PROVISIONATOR_CHANNEL: ${{ parameters.provisionatorChannel }} - AUTH_TOKEN_COMPONENTS_MAC_IOS_CERTIFICATE_P12: ${{ parameters.certPass }} + # - task: xamops.azdevex.provisionator-task.provisionator@2 + # condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) + # displayName: 'Provision Xcode' + # inputs: + # provisioning_script: ${{ parameters.checkoutDirectory }}/${{ parameters.provisionatorXCodePath }} + # provisioning_extra_args: ${{ parameters.provisionatorExtraArguments }} + # github_token: ${{ parameters.gitHubToken }} + # env: + # PROVISIONATOR_CHANNEL: ${{ parameters.provisionatorChannel }} + # AUTH_TOKEN_COMPONENTS_MAC_IOS_CERTIFICATE_P12: ${{ parameters.certPass }} + + - script: | + echo Mac OS version: + sw_vers -productVersion + echo + echo Installed Xcode versions: + ls /Applications | grep 'Xcode' + echo + echo currently selected xcode: + xcrun xcode-select --print-path + echo + echo selecting latest xcode... + sudo xcode-select -s /Applications/Xcode_$(REQUIRED_XCODE).app + xcrun xcode-select --print-path + xcodebuild -version + displayName: Select Xcode Version # Provision Additional Software - - ${{ if ne(parameters.skipProvisioning, 'true') }}: - - task: xamops.azdevex.provisionator-task.provisionator@2 - displayName: 'Provision Additional Software' - condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) - continueOnError: true - inputs: - provisioning_script: ${{ parameters.checkoutDirectory }}/${{ parameters.provisionatorPath }} - provisioning_extra_args: ${{ parameters.provisionatorExtraArguments }} - github_token: ${{ parameters.gitHubToken }} - env: - PROVISIONATOR_CHANNEL: ${{ parameters.provisionatorChannel }} - AUTH_TOKEN_COMPONENTS_MAC_IOS_CERTIFICATE_P12: ${{ parameters.certPass }} - ${{ if eq(parameters.skipAndroidSdks, true) }}: - SKIP_ANDROID_API_SDKS: 'true' - ${{ if eq(parameters.skipAndroidImages, true) }}: - SKIP_ANDROID_API_IMAGES: 'true' - ${{ if eq(parameters.installDefaultAndroidApi, true) }}: - INSTALL_DEFAULT_ANDROID_API: 'true' + #- ${{ if ne(parameters.skipProvisioning, 'true') }}: + # - task: xamops.azdevex.provisionator-task.provisionator@2 + # displayName: 'Provision Additional Software' + # condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) + # continueOnError: true + # inputs: + # provisioning_script: ${{ parameters.checkoutDirectory }}/${{ parameters.provisionatorPath }} + # provisioning_extra_args: ${{ parameters.provisionatorExtraArguments }} + # github_token: ${{ parameters.gitHubToken }} + # env: + # PROVISIONATOR_CHANNEL: ${{ parameters.provisionatorChannel }} + # AUTH_TOKEN_COMPONENTS_MAC_IOS_CERTIFICATE_P12: ${{ parameters.certPass }} + # ${{ if eq(parameters.skipAndroidSdks, true) }}: + # SKIP_ANDROID_API_SDKS: 'true' + # ${{ if eq(parameters.skipAndroidImages, true) }}: + # SKIP_ANDROID_API_IMAGES: 'true' + # ${{ if eq(parameters.installDefaultAndroidApi, true) }}: + # INSTALL_DEFAULT_ANDROID_API: 'true' # Setup JDK Paths (gradle needs it) - bash: | @@ -69,17 +85,7 @@ steps: # brew install --cask microsoft-openjdk@17 displayName: 'Setup JDK Paths' condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) - # Configure VS Mac for Xcode - # This seems to be needed or else it will pick other xcode for example on xharness - # - bash: | - # set -x - # mkdir -p ~/Library/Preferences/Xamarin - # rm -f ~/Library/Preferences/Xamarin/Settings.plist - # /usr/libexec/PlistBuddy -c "add :AppleSdkRoot string $(dirname $(dirname $(xcode-select -p)))" ~/Library/Preferences/Xamarin/Settings.plist || true - # cat ~/Library/Preferences/Xamarin/Settings.plist || true - # displayName: 'Configure Visual Studio' - # condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin')) - + # Prepare Windows # Provision Additional Software - ${{ if ne(parameters.skipProvisioning, 'true') }}: @@ -117,23 +123,6 @@ steps: displayName: 'Setup JDK Paths' condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - - pwsh: | - if ($env:ANDROID_SDK_ROOT) { - echo "ANDROID_SDK_ROOT already set to '$env:ANDROID_SDK_ROOT'" - } else { - if ((Test-Path "${env:ProgramFiles(x86)}\Android\android-sdk")) { - $env:ANDROID_SDK_ROOT = "${env:ProgramFiles(x86)}\Android\android-sdk" - } - if ($env:ANDROID_SDK_ROOT) { - echo "##vso[task.setvariable variable=ANDROID_SDK_ROOT]$env:ANDROID_SDK_ROOT" - echo "ANDROID_SDK_ROOT set to '$env:ANDROID_SDK_ROOT'" - } else { - echo "Unable to set ANDROID_SDK_ROOT" - } - } - displayName: 'Setup ANDROID_SDK_ROOT Paths' - condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) - # Prepare Both - task: UseDotNet@2 # https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/tool/dotnet-core-tool-installer?view=azure-devops displayName: 'Use .NET SDK $(DOTNET_VERSION)' diff --git a/eng/pipelines/common/ui-tests-build-sample.yml b/eng/pipelines/common/ui-tests-build-sample.yml index c133355d3e32..bbb9922503b8 100644 --- a/eng/pipelines/common/ui-tests-build-sample.yml +++ b/eng/pipelines/common/ui-tests-build-sample.yml @@ -22,7 +22,7 @@ steps: - template: provision.yml parameters: - skipProvisioning: ${{ eq(parameters.platform, 'windows') }} + skipProvisioning: true # FIXME: 'Build the MSBuild Tasks' step fails for net9.0-android35 without API 35 skipAndroidSdks: false skipXcode: ${{ or(eq(parameters.platform, 'android'), eq(parameters.platform, 'windows')) }} diff --git a/eng/pipelines/common/ui-tests-steps.yml b/eng/pipelines/common/ui-tests-steps.yml index 095103432667..d3fe6ecbe9a2 100644 --- a/eng/pipelines/common/ui-tests-steps.yml +++ b/eng/pipelines/common/ui-tests-steps.yml @@ -37,7 +37,7 @@ steps: - template: provision.yml parameters: - skipProvisioning: ${{ eq(parameters.platform, 'windows') }} + skipProvisioning: true skipAndroidSdks: ${{ ne(parameters.platform, 'android') }} skipXcode: ${{ or(eq(parameters.platform, 'android'), eq(parameters.platform, 'windows')) }} provisionatorChannel: ${{ parameters.provisionatorChannel }} diff --git a/eng/pipelines/common/ui-tests.yml b/eng/pipelines/common/ui-tests.yml index b1c3bb778d47..d3bb528cf96c 100644 --- a/eng/pipelines/common/ui-tests.yml +++ b/eng/pipelines/common/ui-tests.yml @@ -2,6 +2,7 @@ parameters: androidPool: { } iosPool: { } windowsPool: { } + windowsBuildPool: { } macosPool: { } androidCompatibilityPool: { } iosCompatibilityPool: { } @@ -79,9 +80,8 @@ stages: jobs: - job: build_ui_tests displayName: Build Sample App (Windows) - pool: ${{ parameters.windowsPool }} + pool: ${{ parameters.windowsBuildPool }} variables: - REQUIRED_XCODE: $(DEVICETESTS_REQUIRED_XCODE) APPIUM_HOME: $(System.DefaultWorkingDirectory)/.appium/ steps: - template: ui-tests-build-sample.yml diff --git a/eng/pipelines/common/variables.yml b/eng/pipelines/common/variables.yml index 1f29c6c8278d..695be3033dee 100644 --- a/eng/pipelines/common/variables.yml +++ b/eng/pipelines/common/variables.yml @@ -8,7 +8,7 @@ variables: - name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE value: true - name: DOTNET_VERSION - value: 9.0.100-preview.4.24267.66 + value: 9.0.100-rc.2.24474.11 - name: REQUIRED_XCODE value: 16.0.0 - name: DEVICETESTS_REQUIRED_XCODE @@ -57,7 +57,6 @@ variables: value: 7.4.0 - name: Codeql.Enabled value: false -- group: Xamarin-Secrets # Variable groups required for private builds - ${{ if or(eq(variables['System.TeamProject'], 'DevDiv'), eq(variables['Build.DefinitionName'], 'dotnet-maui')) }}: @@ -73,6 +72,8 @@ variables: # - name: PostBuildSign # value: true # For eng/common/SetupNugetSources.ps1 + # - group: Xamarin-Secrets + - group: DotNetBuilds storage account read tokens - group: AzureDevOps-Artifact-Feeds-Pats - name: _InternalBuildArgs diff --git a/eng/pipelines/handlers.yml b/eng/pipelines/handlers.yml index ad1740cba0e3..6abc8a90a7b9 100644 --- a/eng/pipelines/handlers.yml +++ b/eng/pipelines/handlers.yml @@ -166,10 +166,12 @@ stages: - template: common/provision.yml parameters: poolName: ${{ BuildPlatform.poolName }} - gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) + # gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) skipAndroidSdks: true skipAndroidImages: true installDefaultAndroidApi: false + skipProvisioning: true + skipXcode: ${{ ne(BuildPlatform.name , 'macOS') }} - pwsh: ./build.ps1 --target=dotnet --configuration="${{ BuildConfiguration }}" --verbosity=diagnostic displayName: 'Install .NET' retryCountOnTaskFailure: 3 @@ -236,10 +238,12 @@ stages: parameters: checkoutDirectory: '$(System.DefaultWorkingDirectory)' provisionatorChannel: ${{ parameters.provisionatorChannel }} - gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) + # gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) skipAndroidSdks: true skipAndroidImages: true installDefaultAndroidApi: true + skipProvisioning: true + skipXcode: ${{ ne(PackPlatform.name , 'macOS') }} - stage: samples_net displayName: Test .NET MAUI Samples @@ -255,8 +259,7 @@ stages: name: ${{ BuildPlatform.poolName }} vmImage: ${{ BuildPlatform.vmImage }} demands: - - macOS.Name -equals Sonoma - - macOS.Architecture -equals x64 + - macOS.Name -equals Sonoma steps: - template: common/provision.yml parameters: @@ -264,6 +267,8 @@ stages: skipAndroidSdks: true skipAndroidImages: true installDefaultAndroidApi: true + skipProvisioning: true + skipXcode: ${{ ne(BuildPlatform.name , 'macOS') }} - task: DownloadBuildArtifacts@0 displayName: 'Download Packages' diff --git a/eng/pipelines/maui-release.yml b/eng/pipelines/maui-release.yml index c25664848a36..bbb06909f26f 100644 --- a/eng/pipelines/maui-release.yml +++ b/eng/pipelines/maui-release.yml @@ -169,10 +169,12 @@ extends: parameters: checkoutDirectory: '$(System.DefaultWorkingDirectory)' provisionatorChannel: ${{ parameters.provisionatorChannel }} - gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) + # gitHubToken: $(github--pat--vs-mobiletools-engineering-service2) skipAndroidImages: true skipAndroidSdks: true installDefaultAndroidApi: true + skipProvisioning: true + skipXcode: true - ${{ if eq(variables['System.TeamProject'], 'devdiv') }}: # Sign only using the private server - template: /eng/pipelines/common/sign.yml@self diff --git a/eng/pipelines/ui-tests.yml b/eng/pipelines/ui-tests.yml index d6d44bc4be41..ad3189b3d75f 100644 --- a/eng/pipelines/ui-tests.yml +++ b/eng/pipelines/ui-tests.yml @@ -79,6 +79,12 @@ parameters: - macOS.Name -equals Sonoma - macOS.Architecture -equals x64 + - name: windowsBuildPool + type: object + default: + name: $(windowsVmPool) + vmImage: $(windowsVmImage) + - name: windowsPool type: object default: @@ -124,6 +130,7 @@ stages: androidPool: ${{ parameters.androidPool }} iosPool: ${{ parameters.iosPool }} windowsPool: ${{ parameters.windowsPool }} + windowsBuildPool: ${{ parameters.windowsBuildPool }} macosPool: ${{ parameters.macosPool }} androidCompatibilityPool: ${{ parameters.androidCompatibilityPool }} iosCompatibilityPool: ${{ parameters.iosCompatibilityPool }} diff --git a/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 6a114998aa44..102545da65f6 100644 --- a/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/cs/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true v souboru projektu a zajistěte, aby byla u této vazby zadána správná hodnota pro x:DataType. Další informace najdete na adrese https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 798dc4661356..b3b66f8d2093 100644 --- a/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/cs/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 1cd08b96a732..90e590a10afe 100644 --- a/loc/cs/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 52919557f7dd..41b296c0bcbd 100644 --- a/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 41b6001d9711..1aaac69dbe3f 100644 --- a/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 647557da0809..dbd59115cd7c 100644 --- a/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index e914f0a3d39a..dd764ae26c71 100644 --- a/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index 63cfed2949ca..ba075218b359 100644 --- a/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index f3750933a06b..7562e5fc4ebc 100644 --- a/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 5bd684068ac6..052663758ba8 100644 --- a/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 284f7350c8c3..a08c82a76a1f 100644 --- a/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/cs/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 4787624f9cd8..43a1ded538fd 100644 --- a/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/de/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true festlegen und sicherstellen, dass der richtige x:DataType für diese Bindung angegeben ist. Weitere Informationen finden Sie unter https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,7 +319,7 @@ - + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 95fa955015a0..eaf6834640a2 100644 --- a/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/de/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 19bf555da0af..8ebab6c6373b 100644 --- a/loc/de/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 252ed6beaf91..792078f72a63 100644 --- a/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index d548188adec8..5f0bc7122861 100644 --- a/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 49fefad5c302..2ad3780e50d1 100644 --- a/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index 79e83f024cb3..566babe78663 100644 --- a/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index c23b879bc81e..86eeb63faed9 100644 --- a/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 32dec37b1783..54d6d2cd3c6d 100644 --- a/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 0cc5d3537f94..e4386dd4d038 100644 --- a/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 15a0adff77bb..a74d26a72f67 100644 --- a/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/de/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 8e73ce83c34c..b19a2b29c93a 100644 --- a/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/es/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true en el archivo de proyecto y asegúrese de que se especifica el x:DataType correcto para este enlace. Consulte https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings para más información.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,7 +319,7 @@ - + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index a03e205f7e79..d3b5218c55bd 100644 --- a/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/es/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index c135e88c9053..09048a2310be 100644 --- a/loc/es/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 705baad630f6..792e082445fe 100644 --- a/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 3962504cd2d4..8ad6d94a842f 100644 --- a/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index b4f5b0f19e11..8939cb833218 100644 --- a/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index c7a6ce1cacb3..75e26b466571 100644 --- a/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index fd271d55e732..f1acd1bb80d0 100644 --- a/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index b348703efa3a..88afef30c777 100644 --- a/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 62f07ea39620..e88d78712c76 100644 --- a/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index bcfd468122ad..2b3df36944ca 100644 --- a/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/es/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index eff229f027e2..4b1361c1df4b 100644 --- a/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/fr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true dans votre fichier de projet et assurez-vous que le type x:DataType correspondant est spécifié pour cette liaison. Pour plus d’informations, consultez https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 621c66698fe4..eded93692ca9 100644 --- a/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/fr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 0fdb710c89f1..9f1b454e4fa2 100644 --- a/loc/fr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 60d3c8022fd0..6b46f9710705 100644 --- a/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index d061d7c14e6c..249533a469f5 100644 --- a/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 222690913be4..6dbfdf5ee051 100644 --- a/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index 623f306c07f9..d38ef274450d 100644 --- a/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index 865c351301bf..8bc0b5745ba4 100644 --- a/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 647f122b01fb..cd935551479e 100644 --- a/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 8a510fa1d65a..a20e534c9e4f 100644 --- a/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index d38fdcdd76fa..26f177dc0c28 100644 --- a/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/fr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 947e21de8d3f..ac5751e84451 100644 --- a/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/it/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true nel file di progetto e assicurarsi che sia specificato x:DataType correttamente per questa associazione. Per altre informazioni, vedere https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index fb19e7ba1f8f..0e956824135b 100644 --- a/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/it/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 59c0f4b8e879..8bf35c6d47c0 100644 --- a/loc/it/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index a128ca1e9c82..1056c53890e2 100644 --- a/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 42a07611305a..8351b711404b 100644 --- a/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index b74297518109..482d979d7ef7 100644 --- a/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index c2726aa87482..45f080f41c4c 100644 --- a/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index 62211c454683..e3602e4e066e 100644 --- a/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index bcdbb21580ed..a73f099db9f6 100644 --- a/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index fe071e260345..c30d47b5aa1c 100644 --- a/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 96765feb7107..6bf8d691bd4e 100644 --- a/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/it/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 770f5d074bb3..8d22edd93f02 100644 --- a/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/ja/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true を設定して、このバインドに正しい x:DataType が指定されていることを確認して、この最適化を有効にすることを検討してください。詳細については、https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings を参照してください。]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,7 +319,7 @@ - + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 8ecdd7272c87..46ded6b6cff2 100644 --- a/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/ja/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 2d0c2fd3bab4..d16e511851da 100644 --- a/loc/ja/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index bac7c9ba1ef1..4828b2677c2a 100644 --- a/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 722a8c60bd06..01d85f44da16 100644 --- a/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 14ba90da4f0d..5bd6637554ca 100644 --- a/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index 45834fc2e375..fbbf10960954 100644 --- a/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index a6268920de11..026a3066861f 100644 --- a/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 5363b222ea6d..70cc3fe575db 100644 --- a/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 983b1798e6e9..5064f991bcd5 100644 --- a/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 2f4d47f4df23..3baaf5ddd4d0 100644 --- a/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ja/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index e5d394953b40..b3cba54e8ebd 100644 --- a/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/ko/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true을(를) 설정하여 이 최적화를 사용하도록 설정하는 것을 고려하고 이 바인딩에 올바른 x:DataType이 지정되어 있는지 확인하세요. 자세한 내용은 https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings를 참조하세요.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 608ce6640076..c039fdd70ea9 100644 --- a/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/ko/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 560c40fcf479..a10eb0b45842 100644 --- a/loc/ko/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 4335403e253b..05dcf3b15edd 100644 --- a/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 5f902a15ee09..dc0a1bf1e5cb 100644 --- a/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 5943236f24b2..ce8a1a84306a 100644 --- a/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index c84020523a9c..56cda3ac4a31 100644 --- a/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index 004bb236b257..da81ae0840c8 100644 --- a/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index a86402952c85..7b18d4082650 100644 --- a/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 0cddea56a146..cab42d0a63e1 100644 --- a/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 46dd790f0734..2b4d25a24125 100644 --- a/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ko/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index a9f23a58d559..cac420a67d9d 100644 --- a/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/pl/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true w pliku projektu i upewnij się, że dla tego powiązania określono poprawną adnotację x:DataType. Aby uzyskać więcej informacji, zobacz https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 9a537abf5563..5fb04bbc3666 100644 --- a/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/pl/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 57e4c0b6e874..d839100c004d 100644 --- a/loc/pl/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 2f74fd8ff85e..9029eb4b8754 100644 --- a/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 1e8cea1699aa..252349c45893 100644 --- a/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 12a0ec119096..d92da8953b14 100644 --- a/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index e7ea2425de49..7088089e2a22 100644 --- a/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index d9ed37741d52..32afdb2e0aa9 100644 --- a/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index c2dca49e99ae..824eda1e497e 100644 --- a/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 49cefa94dd50..247d8eb53053 100644 --- a/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index b80ac3d150ac..8046ec7bae9e 100644 --- a/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pl/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 51c9c3af62fc..a06350a55c38 100644 --- a/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/pt-BR/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true no arquivo de projeto e certifique-se de que o x:DataType correto esteja especificado para esta associação. Confira https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings para obter mais informações.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 26184d634c63..dacc016dd602 100644 --- a/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/pt-BR/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 36cbe32fd8b8..0f5ac27f4f1b 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index a32b18fac49e..d8ded487dda9 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 5743d86778b3..bf099cc1acf0 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 19784cf53ced..b725711fa24f 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index df254f39564b..57efe8338aa0 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index dd42e797c2c2..5b4b1abc1cfd 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 72dd74e584c8..9bfe5680bcc2 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 8dc24eaff1a7..1427a172ea11 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index a754c54dc818..89138cfb05ec 100644 --- a/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/pt-BR/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index b2dd6de69de7..292fba7317c8 100644 --- a/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/ru/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true в файле проекта. Убедитесь, что для этой привязки указан правильный атрибут x:DataType. Дополнительные сведения см. по адресу https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 6d21081b4fe8..d440f37d5273 100644 --- a/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/ru/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index f5111c4dd1d9..65cf5a3d9651 100644 --- a/loc/ru/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 815c5a2427f0..6245df39bab2 100644 --- a/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 0c2b4564f8aa..950aaad059c3 100644 --- a/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 33ca41b977e1..9d65f81e4ed1 100644 --- a/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index e4da66d29b84..dad4ddc1ea4a 100644 --- a/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index c57ba5b20c83..edc2ee446bcd 100644 --- a/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index aa82e4b06824..cb06dfe35cb8 100644 --- a/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index f183b718babc..68aac73ba390 100644 --- a/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 2dab8e53a81a..b4cac02da28b 100644 --- a/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/ru/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 7bd53d150d2a..658d8275b7f3 100644 --- a/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/tr/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true değerini ayarlayıp bu bağlama için doğru x:DataType'ın belirtilmiş olduğundan emin olun. Bkz. https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 8760153f1385..99f3932decec 100644 --- a/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/tr/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index a98c54738ebb..0e4ce4f33ca0 100644 --- a/loc/tr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 741c02a6d1c2..b867abe079ed 100644 --- a/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index 4a0cc21752a4..d59c65cfd804 100644 --- a/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 7ce7ac08cc9e..b004f42e222d 100644 --- a/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index a526c255b556..cab401e163c7 100644 --- a/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index b67e6a661bfb..09ab8a02146b 100644 --- a/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 797dd5ae4af1..20f91c80d12e 100644 --- a/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 8d4e6beb3a27..3c5d33a389f2 100644 --- a/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 14051446db74..d392858a19cf 100644 --- a/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/tr/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index f85976cc2b3d..57f2706ce78e 100644 --- a/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/zh-Hans/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true 来启用此优化,并确保为此绑定指定了正确的 x:DataType。有关详细信息,请参阅 https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings。]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,7 +319,7 @@ - + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 0d5c2d14a197..f76867b1e56f 100644 --- a/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/zh-Hans/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 76bc2ce76ee2..051959265602 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index 189c780f0768..1040c5d95f26 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index a340bbefbf31..28e2c82768f5 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 021759e14756..5179fb84f00b 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index 4eaabf6d2bba..2d9d5de47101 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index 1cec5f796252..d7feda23b9fa 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index 2fa2a26ab423..284fdae1b9b8 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 943706f74560..3025fa4b8dcf 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 36b6ad6ea62a..0ff689fd06f0 100644 --- a/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hans/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl b/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl index 08fa1e0ebb32..36af75469d76 100644 --- a/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl +++ b/loc/zh-Hant/src/Controls/src/Build.Tasks/ErrorMessages.resx.lcl @@ -85,24 +85,36 @@ + + + true in your project file and make sure the correct x:DataType is specified for this binding. See https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings for more information.]]> + + true,並確定已為此繫結指定正確的 x:DataType,以啟用此最佳化。如需詳細資訊,請參閱 https://learn.microsoft.com/dotnet/maui/fundamentals/data-binding/compiled-bindings。]]> + + + + + + + @@ -217,6 +229,9 @@ + + + @@ -277,6 +292,9 @@ + + + @@ -301,8 +319,8 @@ - - + + @@ -331,14 +349,17 @@ + + + - - + + diff --git a/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl b/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl index 90553155f9bb..0fff1900fbce 100644 --- a/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl +++ b/loc/zh-Hant/src/Controls/src/Core/Compatibility/iOS/Resources/StringResources.resx.lcl @@ -1,10 +1,11 @@  - + + @@ -12,21 +13,21 @@ + + + - - - + + + - - - - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl index 887fd539200e..8fd9b742179a 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-blazor-solution/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,189 +13,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl index ace76b3d1fcf..bcfc30a3b3fd 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-blazor/.template.config/localize/templatestrings.json.lcl @@ -22,8 +22,8 @@ - - + + @@ -34,8 +34,8 @@ - - + + @@ -46,8 +46,8 @@ - - + + @@ -58,6 +58,9 @@ + + + @@ -82,12 +85,18 @@ + + + + + + diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl index d514a55c5fa2..3d75e53d921c 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl index 9068f5fe88b1..b0a55743c077 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentpage-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl index 53a5ff662536..9c080bdaa325 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-csharp/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl index c6df3dfcea7b..348eab6416b6 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-contentview-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl index de2bb14166d7..8897342939e6 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-lib/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,39 +13,60 @@ + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl index 82e302768646..5a4d27ddf76c 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-mobile/.template.config/localize/templatestrings.json.lcl @@ -1,10 +1,11 @@  - + + @@ -12,45 +13,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file diff --git a/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl b/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl index 422c76195516..17a9fac52fd0 100644 --- a/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl +++ b/loc/zh-Hant/src/Templates/src/templates/maui-resourcedictionary-xaml/.template.config/localize/templatestrings.json.lcl @@ -22,6 +22,9 @@ + + + diff --git a/src/Compatibility/Core/src/Compatibility.csproj b/src/Compatibility/Core/src/Compatibility.csproj index 87c2bf3b13fb..b84e9fbedede 100644 --- a/src/Compatibility/Core/src/Compatibility.csproj +++ b/src/Compatibility/Core/src/Compatibility.csproj @@ -9,7 +9,7 @@ iOS\ Windows\ Tizen\ - true + true true true $(NoWarn);CS1591;CS0672;CS0618 @@ -17,8 +17,9 @@ - $(NoWarn);CA1416;CS8305;IL2059 + $(NoWarn);CA1416;CS8305 $(DefineConstants);WINDOWS + true @@ -52,8 +53,6 @@ $(InterceptorsPreviewNamespaces);Microsoft.Maui.Controls.Generated - - $(CompilerResponseFile);WorkaroundXamlPreCompilePreviewFeatures.rsp + public partial class ActivityIndicatorRenderer : ViewRenderer { object _foregroundDefault; diff --git a/src/Compatibility/Core/src/Windows/AlertDialog.cs b/src/Compatibility/Core/src/Windows/AlertDialog.cs index afe671ed8af2..7ad78abe69fd 100644 --- a/src/Compatibility/Core/src/Windows/AlertDialog.cs +++ b/src/Compatibility/Core/src/Windows/AlertDialog.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class AlertDialog : ContentDialog + public partial class AlertDialog : ContentDialog { public Microsoft.UI.Xaml.Controls.ScrollBarVisibility VerticalScrollBarVisibility { get; set; } diff --git a/src/Compatibility/Core/src/Windows/BoolToVisibilityConverter.cs b/src/Compatibility/Core/src/Windows/BoolToVisibilityConverter.cs index 7a1563949303..3dc060dec20a 100644 --- a/src/Compatibility/Core/src/Windows/BoolToVisibilityConverter.cs +++ b/src/Compatibility/Core/src/Windows/BoolToVisibilityConverter.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public sealed class BoolToVisibilityConverter : Microsoft.UI.Xaml.Data.IValueConverter + public sealed partial class BoolToVisibilityConverter : Microsoft.UI.Xaml.Data.IValueConverter { public bool FalseIsVisible { get; set; } diff --git a/src/Compatibility/Core/src/Windows/BoxViewBorderRenderer.cs b/src/Compatibility/Core/src/Windows/BoxViewBorderRenderer.cs index 08a2ca9d7323..7408f02250e9 100644 --- a/src/Compatibility/Core/src/Windows/BoxViewBorderRenderer.cs +++ b/src/Compatibility/Core/src/Windows/BoxViewBorderRenderer.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class BoxViewBorderRenderer : ViewRenderer + public partial class BoxViewBorderRenderer : ViewRenderer { protected override void OnElementChanged(ElementChangedEventArgs e) { diff --git a/src/Compatibility/Core/src/Windows/BrushConverter.cs b/src/Compatibility/Core/src/Windows/BrushConverter.cs index 9787b5000985..4867f18e0de6 100644 --- a/src/Compatibility/Core/src/Windows/BrushConverter.cs +++ b/src/Compatibility/Core/src/Windows/BrushConverter.cs @@ -4,7 +4,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class BrushConverter : Microsoft.UI.Xaml.Data.IValueConverter + public partial class BrushConverter : Microsoft.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { diff --git a/src/Compatibility/Core/src/Windows/ButtonRenderer.cs b/src/Compatibility/Core/src/Windows/ButtonRenderer.cs index 1ad41f2efd50..2171a0a69c7d 100644 --- a/src/Compatibility/Core/src/Windows/ButtonRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ButtonRenderer.cs @@ -15,7 +15,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ButtonRenderer : ViewRenderer + public partial class ButtonRenderer : ViewRenderer { bool _fontApplied; TextBlock _textBlock = null; diff --git a/src/Compatibility/Core/src/Windows/CarouselPageRenderer.cs b/src/Compatibility/Core/src/Windows/CarouselPageRenderer.cs index 8b3090ddd8a3..ffb354eee54e 100644 --- a/src/Compatibility/Core/src/Windows/CarouselPageRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CarouselPageRenderer.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - internal class CarouselPageRenderer : FlipView, IVisualElementRenderer + internal partial class CarouselPageRenderer : FlipView, IVisualElementRenderer { bool _fromUpdate; bool _disposed; diff --git a/src/Compatibility/Core/src/Windows/CellControl.cs b/src/Compatibility/Core/src/Windows/CellControl.cs index 54a5d5a864c6..8438fcfae181 100644 --- a/src/Compatibility/Core/src/Windows/CellControl.cs +++ b/src/Compatibility/Core/src/Windows/CellControl.cs @@ -22,7 +22,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Platform.Compatibility.CellControl instead")] - public class CellControl : ContentControl + public partial class CellControl : ContentControl { public static readonly DependencyProperty CellProperty = DependencyProperty.Register("Cell", typeof(object), typeof(CellControl), new PropertyMetadata(null, (o, e) => ((CellControl)o).SetSource((Cell)e.OldValue, (Cell)e.NewValue))); diff --git a/src/Compatibility/Core/src/Windows/CheckBoxRenderer.cs b/src/Compatibility/Core/src/Windows/CheckBoxRenderer.cs index 3c7a7b026bf5..15c5a11562c7 100644 --- a/src/Compatibility/Core/src/Windows/CheckBoxRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CheckBoxRenderer.cs @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class CheckBoxRenderer : ViewRenderer + public partial class CheckBoxRenderer : ViewRenderer { static WBrush _tintDefaultBrush = Colors.Blue.ToPlatform(); bool _disposed = false; diff --git a/src/Compatibility/Core/src/Windows/CollectionView/CarouselViewRenderer.cs b/src/Compatibility/Core/src/Windows/CollectionView/CarouselViewRenderer.cs index 3325dc7ee67b..ac4a52e9de52 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/CarouselViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/CarouselViewRenderer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class CarouselViewRenderer : ItemsViewRenderer + public partial class CarouselViewRenderer : ItemsViewRenderer { ScrollViewer _scrollViewer; WScrollBarVisibility? _horizontalScrollBarVisibilityWithoutLoop; diff --git a/src/Compatibility/Core/src/Windows/CollectionView/CollectionViewRenderer.cs b/src/Compatibility/Core/src/Windows/CollectionView/CollectionViewRenderer.cs index 09fee605a00e..fd5f5f8ffab9 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/CollectionViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/CollectionViewRenderer.cs @@ -14,7 +14,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class CollectionViewRenderer : GroupableItemsViewRenderer + public partial class CollectionViewRenderer : GroupableItemsViewRenderer { } } \ No newline at end of file diff --git a/src/Compatibility/Core/src/Windows/CollectionView/GroupableItemsViewRenderer.cs b/src/Compatibility/Core/src/Windows/CollectionView/GroupableItemsViewRenderer.cs index c46adcef2566..90533a8af4b2 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/GroupableItemsViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/GroupableItemsViewRenderer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class GroupableItemsViewRenderer : SelectableItemsViewRenderer + public partial class GroupableItemsViewRenderer : SelectableItemsViewRenderer where TItemsView : GroupableItemsView { protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs changedProperty) diff --git a/src/Compatibility/Core/src/Windows/CollectionView/ItemContentControl.cs b/src/Compatibility/Core/src/Windows/CollectionView/ItemContentControl.cs index 8f631109c378..a19d0bdf7e3f 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/ItemContentControl.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/ItemContentControl.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete] - public class ItemContentControl : ContentControl + public partial class ItemContentControl : ContentControl { VisualElement _visualElement; IVisualElementRenderer _renderer; diff --git a/src/Compatibility/Core/src/Windows/CollectionView/SelectableItemsViewRenderer.cs b/src/Compatibility/Core/src/Windows/CollectionView/SelectableItemsViewRenderer.cs index 01238d8eada2..300690e33b16 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/SelectableItemsViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/SelectableItemsViewRenderer.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class SelectableItemsViewRenderer : StructuredItemsViewRenderer + public partial class SelectableItemsViewRenderer : StructuredItemsViewRenderer where TItemsView : SelectableItemsView { bool _ignoreNativeSelectionChange; @@ -201,7 +201,7 @@ void UpdateFormsMultipleSelection() ItemsView.SelectionChanged += FormsSelectionChanged; } - class SelectionModeConvert : Microsoft.UI.Xaml.Data.IValueConverter + partial class SelectionModeConvert : Microsoft.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { diff --git a/src/Compatibility/Core/src/Windows/CollectionView/StructuredItemsViewRenderer.cs b/src/Compatibility/Core/src/Windows/CollectionView/StructuredItemsViewRenderer.cs index 0795ef9eff36..bcbd41076ec4 100644 --- a/src/Compatibility/Core/src/Windows/CollectionView/StructuredItemsViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/CollectionView/StructuredItemsViewRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class StructuredItemsViewRenderer : ItemsViewRenderer + public partial class StructuredItemsViewRenderer : ItemsViewRenderer where TItemsView : StructuredItemsView { View _currentHeader; diff --git a/src/Compatibility/Core/src/Windows/DatePickerRenderer.cs b/src/Compatibility/Core/src/Windows/DatePickerRenderer.cs index 3666eb0b178f..77b7f04b7b0d 100644 --- a/src/Compatibility/Core/src/Windows/DatePickerRenderer.cs +++ b/src/Compatibility/Core/src/Windows/DatePickerRenderer.cs @@ -15,7 +15,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class DatePickerRenderer : ViewRenderer + public partial class DatePickerRenderer : ViewRenderer { WBrush _defaultBrush; bool _fontApplied; diff --git a/src/Compatibility/Core/src/Windows/DefaultRenderer.cs b/src/Compatibility/Core/src/Windows/DefaultRenderer.cs index 520729b6b179..62c62e874f9b 100644 --- a/src/Compatibility/Core/src/Windows/DefaultRenderer.cs +++ b/src/Compatibility/Core/src/Windows/DefaultRenderer.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - internal sealed class DefaultRenderer : ViewRenderer + internal sealed partial class DefaultRenderer : ViewRenderer { } } \ No newline at end of file diff --git a/src/Compatibility/Core/src/Windows/EditorRenderer.cs b/src/Compatibility/Core/src/Windows/EditorRenderer.cs index 4c203788a1cf..f94cee07ba02 100644 --- a/src/Compatibility/Core/src/Windows/EditorRenderer.cs +++ b/src/Compatibility/Core/src/Windows/EditorRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class EditorRenderer : ViewRenderer + public partial class EditorRenderer : ViewRenderer { bool _fontApplied; WBrush _backgroundColorFocusedDefaultBrush; diff --git a/src/Compatibility/Core/src/Windows/EntryCellTextBox.cs b/src/Compatibility/Core/src/Windows/EntryCellTextBox.cs index a80218f0a5ba..33a5e8c331ec 100644 --- a/src/Compatibility/Core/src/Windows/EntryCellTextBox.cs +++ b/src/Compatibility/Core/src/Windows/EntryCellTextBox.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Platform.Compatibility.EntryCellTextBox instead")] - public class EntryCellTextBox : TextBox + public partial class EntryCellTextBox : TextBox { protected override void OnKeyUp(KeyRoutedEventArgs e) { diff --git a/src/Compatibility/Core/src/Windows/EntryRenderer.cs b/src/Compatibility/Core/src/Windows/EntryRenderer.cs index 42ecc9180776..94b33bd86ce0 100644 --- a/src/Compatibility/Core/src/Windows/EntryRenderer.cs +++ b/src/Compatibility/Core/src/Windows/EntryRenderer.cs @@ -15,7 +15,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class EntryRenderer : ViewRenderer + public partial class EntryRenderer : ViewRenderer { bool _fontApplied; WBrush _backgroundColorFocusedDefaultBrush; diff --git a/src/Compatibility/Core/src/Windows/FlyoutPageControl.cs b/src/Compatibility/Core/src/Windows/FlyoutPageControl.cs index fe245f4175c7..95a45e5b940c 100644 --- a/src/Compatibility/Core/src/Windows/FlyoutPageControl.cs +++ b/src/Compatibility/Core/src/Windows/FlyoutPageControl.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FlyoutPageControl : Control, IToolbarProvider, ITitleViewRendererController + public partial class FlyoutPageControl : Control, IToolbarProvider, ITitleViewRendererController { public static readonly DependencyProperty FlyoutProperty = DependencyProperty.Register(nameof(Flyout), typeof(FrameworkElement), typeof(FlyoutPageControl), new PropertyMetadata(default(FrameworkElement))); @@ -388,7 +388,7 @@ void UpdateToolbarDynamicOverflowEnabled() } - public class MasterDetailControl : FlyoutPageControl + public partial class MasterDetailControl : FlyoutPageControl { public FrameworkElement Master { diff --git a/src/Compatibility/Core/src/Windows/FormsButton.cs b/src/Compatibility/Core/src/Windows/FormsButton.cs index 211a23e276b4..6a4e2ec78b44 100644 --- a/src/Compatibility/Core/src/Windows/FormsButton.cs +++ b/src/Compatibility/Core/src/Windows/FormsButton.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [PortHandler] - public class FormsButton : Microsoft.UI.Xaml.Controls.Button + public partial class FormsButton : Microsoft.UI.Xaml.Controls.Button { public static readonly DependencyProperty BorderRadiusProperty = DependencyProperty.Register(nameof(BorderRadius), typeof(int), typeof(FormsButton), new PropertyMetadata(default(int), OnBorderRadiusChanged)); diff --git a/src/Compatibility/Core/src/Windows/FormsCancelButton.cs b/src/Compatibility/Core/src/Windows/FormsCancelButton.cs index fa1662240e57..8d7d849f4002 100644 --- a/src/Compatibility/Core/src/Windows/FormsCancelButton.cs +++ b/src/Compatibility/Core/src/Windows/FormsCancelButton.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - internal class FormsCancelButton : Microsoft.UI.Xaml.Controls.Button + internal partial class FormsCancelButton : Microsoft.UI.Xaml.Controls.Button { TextBlock _cancelButtonGlyph; WBorder _cancelButtonBackground; diff --git a/src/Compatibility/Core/src/Windows/FormsCheckBox.cs b/src/Compatibility/Core/src/Windows/FormsCheckBox.cs index 25d137a1afbb..1e7267ca83f9 100644 --- a/src/Compatibility/Core/src/Windows/FormsCheckBox.cs +++ b/src/Compatibility/Core/src/Windows/FormsCheckBox.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsCheckBox : WindowsCheckbox + public partial class FormsCheckBox : WindowsCheckbox { public static readonly DependencyProperty TintBrushProperty = DependencyProperty.Register(nameof(TintBrush), typeof(WBrush), typeof(FormsCheckBox), diff --git a/src/Compatibility/Core/src/Windows/FormsComboBox.cs b/src/Compatibility/Core/src/Windows/FormsComboBox.cs index 8f7a51e36847..cd7ee5b53426 100644 --- a/src/Compatibility/Core/src/Windows/FormsComboBox.cs +++ b/src/Compatibility/Core/src/Windows/FormsComboBox.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsComboBox : ComboBox + public partial class FormsComboBox : ComboBox { public FormsComboBox() { diff --git a/src/Compatibility/Core/src/Windows/FormsCommandBar.cs b/src/Compatibility/Core/src/Windows/FormsCommandBar.cs index df3ae96e3e58..a600e8c48498 100644 --- a/src/Compatibility/Core/src/Windows/FormsCommandBar.cs +++ b/src/Compatibility/Core/src/Windows/FormsCommandBar.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsCommandBar : CommandBar + public partial class FormsCommandBar : CommandBar { Microsoft.UI.Xaml.Controls.Button _moreButton; Microsoft.UI.Xaml.Controls.ItemsControl _primaryItemsControl; diff --git a/src/Compatibility/Core/src/Windows/FormsPivot.cs b/src/Compatibility/Core/src/Windows/FormsPivot.cs index d7a91183df8d..b02c17bc6b0d 100644 --- a/src/Compatibility/Core/src/Windows/FormsPivot.cs +++ b/src/Compatibility/Core/src/Windows/FormsPivot.cs @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsPivot : Pivot, IToolbarProvider + public partial class FormsPivot : Pivot, IToolbarProvider { public static readonly DependencyProperty TitleVisibilityProperty = DependencyProperty.Register(nameof(TitleVisibility), typeof(UI.Xaml.Visibility), typeof(FormsPivot), new PropertyMetadata(UI.Xaml.Visibility.Collapsed)); diff --git a/src/Compatibility/Core/src/Windows/FormsPresenter.cs b/src/Compatibility/Core/src/Windows/FormsPresenter.cs index 23ed6646383f..9cf8655557f4 100644 --- a/src/Compatibility/Core/src/Windows/FormsPresenter.cs +++ b/src/Compatibility/Core/src/Windows/FormsPresenter.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - internal class FormsPresenter : Microsoft.UI.Xaml.Controls.ContentPresenter + internal partial class FormsPresenter : Microsoft.UI.Xaml.Controls.ContentPresenter { public FormsPresenter() { diff --git a/src/Compatibility/Core/src/Windows/FormsProgressBar.cs b/src/Compatibility/Core/src/Windows/FormsProgressBar.cs index 8d7cfecf1874..316f37e4d0b5 100644 --- a/src/Compatibility/Core/src/Windows/FormsProgressBar.cs +++ b/src/Compatibility/Core/src/Windows/FormsProgressBar.cs @@ -2,7 +2,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsProgressBar : Microsoft.UI.Xaml.Controls.ProgressBar + public partial class FormsProgressBar : Microsoft.UI.Xaml.Controls.ProgressBar { public static readonly DependencyProperty ElementOpacityProperty = DependencyProperty.Register( nameof(ElementOpacity), typeof(double), typeof(FormsProgressBar), new PropertyMetadata(default(double))); diff --git a/src/Compatibility/Core/src/Windows/FormsRadioButton.cs b/src/Compatibility/Core/src/Windows/FormsRadioButton.cs index 1b0888cdf1e7..1fa7d5697887 100644 --- a/src/Compatibility/Core/src/Windows/FormsRadioButton.cs +++ b/src/Compatibility/Core/src/Windows/FormsRadioButton.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsRadioButton : Microsoft.UI.Xaml.Controls.RadioButton + public partial class FormsRadioButton : Microsoft.UI.Xaml.Controls.RadioButton { public static readonly DependencyProperty BorderRadiusProperty = DependencyProperty.Register(nameof(BorderRadius), typeof(int), typeof(FormsButton), new PropertyMetadata(default(int), OnBorderRadiusChanged)); diff --git a/src/Compatibility/Core/src/Windows/FormsSlider.cs b/src/Compatibility/Core/src/Windows/FormsSlider.cs index 74d7c5463ed2..79e4c1cc9d8b 100644 --- a/src/Compatibility/Core/src/Windows/FormsSlider.cs +++ b/src/Compatibility/Core/src/Windows/FormsSlider.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class FormsSlider : Microsoft.UI.Xaml.Controls.Slider + public partial class FormsSlider : Microsoft.UI.Xaml.Controls.Slider { internal Thumb Thumb { get; set; } internal Thumb ImageThumb { get; set; } diff --git a/src/Compatibility/Core/src/Windows/FormsTextBox.cs b/src/Compatibility/Core/src/Windows/FormsTextBox.cs index e70201fec87f..cba02623f366 100644 --- a/src/Compatibility/Core/src/Windows/FormsTextBox.cs +++ b/src/Compatibility/Core/src/Windows/FormsTextBox.cs @@ -19,7 +19,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP /// An intermediate class for injecting bindings for things the default /// textbox doesn't allow us to bind/modify /// - public class FormsTextBox : TextBox + public partial class FormsTextBox : TextBox { const char ObfuscationCharacter = '●'; diff --git a/src/Compatibility/Core/src/Windows/FrameRenderer.cs b/src/Compatibility/Core/src/Windows/FrameRenderer.cs index 3eab53873e04..4cf9340222e6 100644 --- a/src/Compatibility/Core/src/Windows/FrameRenderer.cs +++ b/src/Compatibility/Core/src/Windows/FrameRenderer.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.FrameRenderer instead")] - public class FrameRenderer : ViewRenderer + public partial class FrameRenderer : ViewRenderer { public FrameRenderer() { diff --git a/src/Compatibility/Core/src/Windows/ImageButtonRenderer.cs b/src/Compatibility/Core/src/Windows/ImageButtonRenderer.cs index 51aad0073a6d..b19c107909aa 100644 --- a/src/Compatibility/Core/src/Windows/ImageButtonRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ImageButtonRenderer.cs @@ -16,7 +16,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ImageButtonRenderer : ViewRenderer, IImageVisualElementRenderer + public partial class ImageButtonRenderer : ViewRenderer, IImageVisualElementRenderer { bool _measured; bool _disposed; diff --git a/src/Compatibility/Core/src/Windows/ImageRenderer.cs b/src/Compatibility/Core/src/Windows/ImageRenderer.cs index d6ec732881e1..f6fd0ad5a20c 100644 --- a/src/Compatibility/Core/src/Windows/ImageRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ImageRenderer.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ImageRenderer : ViewRenderer, IImageVisualElementRenderer + public partial class ImageRenderer : ViewRenderer, IImageVisualElementRenderer { bool _measured; bool _disposed; diff --git a/src/Compatibility/Core/src/Windows/ImageSourceIconElementConverter.cs b/src/Compatibility/Core/src/Windows/ImageSourceIconElementConverter.cs index 9652b71f55ee..0d59073cc942 100644 --- a/src/Compatibility/Core/src/Windows/ImageSourceIconElementConverter.cs +++ b/src/Compatibility/Core/src/Windows/ImageSourceIconElementConverter.cs @@ -2,7 +2,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - internal class ImageSourceIconElementConverter : Microsoft.UI.Xaml.Data.IValueConverter + internal partial class ImageSourceIconElementConverter : Microsoft.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { diff --git a/src/Compatibility/Core/src/Windows/IndicatorViewRenderer.cs b/src/Compatibility/Core/src/Windows/IndicatorViewRenderer.cs index 52610e43a02c..74298b7e352f 100644 --- a/src/Compatibility/Core/src/Windows/IndicatorViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/IndicatorViewRenderer.cs @@ -14,7 +14,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - class IndicatorViewRenderer : ViewRenderer + partial class IndicatorViewRenderer : ViewRenderer { const int DefaultPadding = 4; WSolidColorBrush _selectedColor; diff --git a/src/Compatibility/Core/src/Windows/InterceptVisualStateManager.cs b/src/Compatibility/Core/src/Windows/InterceptVisualStateManager.cs index 7c0e8aa3f63e..f0c6b70efdd4 100644 --- a/src/Compatibility/Core/src/Windows/InterceptVisualStateManager.cs +++ b/src/Compatibility/Core/src/Windows/InterceptVisualStateManager.cs @@ -4,7 +4,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - internal class InterceptVisualStateManager : Microsoft.UI.Xaml.VisualStateManager + internal partial class InterceptVisualStateManager : Microsoft.UI.Xaml.VisualStateManager { static InterceptVisualStateManager s_instance; diff --git a/src/Compatibility/Core/src/Windows/LabelRenderer.cs b/src/Compatibility/Core/src/Windows/LabelRenderer.cs index ed5d49c48af6..1b6e97840c46 100644 --- a/src/Compatibility/Core/src/Windows/LabelRenderer.cs +++ b/src/Compatibility/Core/src/Windows/LabelRenderer.cs @@ -41,7 +41,7 @@ public static Run ToRun(this Span span, IFontManager fontManager) } [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class LabelRenderer : ViewRenderer + public partial class LabelRenderer : ViewRenderer { bool _fontApplied; bool _isInitiallyDefault; diff --git a/src/Compatibility/Core/src/Windows/LayoutRenderer.cs b/src/Compatibility/Core/src/Windows/LayoutRenderer.cs index 399d29286aea..8bfbd9154e7c 100644 --- a/src/Compatibility/Core/src/Windows/LayoutRenderer.cs +++ b/src/Compatibility/Core/src/Windows/LayoutRenderer.cs @@ -11,7 +11,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class LayoutRenderer : ViewRenderer + public partial class LayoutRenderer : ViewRenderer { protected override void OnElementChanged(ElementChangedEventArgs e) { diff --git a/src/Compatibility/Core/src/Windows/ListGroupHeaderPresenter.cs b/src/Compatibility/Core/src/Windows/ListGroupHeaderPresenter.cs index f02812798381..e826f0c07034 100644 --- a/src/Compatibility/Core/src/Windows/ListGroupHeaderPresenter.cs +++ b/src/Compatibility/Core/src/Windows/ListGroupHeaderPresenter.cs @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Platform.Compatibility.ListGroupHeaderPresenter instead")] - public class ListGroupHeaderPresenter : Microsoft.UI.Xaml.Controls.ContentPresenter + public partial class ListGroupHeaderPresenter : Microsoft.UI.Xaml.Controls.ContentPresenter { void OnTapped(object sender, TappedRoutedEventArgs tappedRoutedEventArgs) { diff --git a/src/Compatibility/Core/src/Windows/ListViewGroupStyleSelector.cs b/src/Compatibility/Core/src/Windows/ListViewGroupStyleSelector.cs index 28aaea89c3ff..e393009a8720 100644 --- a/src/Compatibility/Core/src/Windows/ListViewGroupStyleSelector.cs +++ b/src/Compatibility/Core/src/Windows/ListViewGroupStyleSelector.cs @@ -4,7 +4,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Platform.Compatibility.ListViewGroupStyleSelector instead")] - public class ListViewGroupStyleSelector : GroupStyleSelector + public partial class ListViewGroupStyleSelector : GroupStyleSelector { protected override GroupStyle SelectGroupStyleCore(object group, uint level) { diff --git a/src/Compatibility/Core/src/Windows/ListViewRenderer.cs b/src/Compatibility/Core/src/Windows/ListViewRenderer.cs index fd57e2757fd6..324701e7233f 100644 --- a/src/Compatibility/Core/src/Windows/ListViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ListViewRenderer.cs @@ -29,7 +29,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.ListViewRenderer instead")] - public class ListViewRenderer : ViewRenderer + public partial class ListViewRenderer : ViewRenderer { ITemplatedItemsView TemplatedItemsView => Element; bool _collectionIsWrapped; @@ -45,7 +45,7 @@ public class ListViewRenderer : ViewRenderer protected WListView List { get; private set; } - protected class ListViewTransparent : WListView + protected partial class ListViewTransparent : WListView { public ListViewTransparent() : base() { } diff --git a/src/Compatibility/Core/src/Windows/MasterBackgroundConverter.cs b/src/Compatibility/Core/src/Windows/MasterBackgroundConverter.cs index 5779cb45fc46..b0c9a1609e53 100644 --- a/src/Compatibility/Core/src/Windows/MasterBackgroundConverter.cs +++ b/src/Compatibility/Core/src/Windows/MasterBackgroundConverter.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class MasterBackgroundConverter : Microsoft.UI.Xaml.Data.IValueConverter + public partial class MasterBackgroundConverter : Microsoft.UI.Xaml.Data.IValueConverter { // Obtained by comparing the Mail apps master section background to the detail background const double Shift = 0.03; diff --git a/src/Compatibility/Core/src/Windows/NativeViewWrapperRenderer.cs b/src/Compatibility/Core/src/Windows/NativeViewWrapperRenderer.cs index d4621f23b4f0..112228f05548 100644 --- a/src/Compatibility/Core/src/Windows/NativeViewWrapperRenderer.cs +++ b/src/Compatibility/Core/src/Windows/NativeViewWrapperRenderer.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { #pragma warning disable CS0618 // Type or member is obsolete - public class NativeViewWrapperRenderer : ViewRenderer + public partial class NativeViewWrapperRenderer : ViewRenderer #pragma warning restore CS0618 // Type or member is obsolete { public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint) diff --git a/src/Compatibility/Core/src/Windows/PageControl.cs b/src/Compatibility/Core/src/Windows/PageControl.cs index 0250ab3a79a3..a1fc8267f351 100644 --- a/src/Compatibility/Core/src/Windows/PageControl.cs +++ b/src/Compatibility/Core/src/Windows/PageControl.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public sealed class PageControl : ContentControl, IToolbarProvider, ITitleViewRendererController + public sealed partial class PageControl : ContentControl, IToolbarProvider, ITitleViewRendererController { public static readonly DependencyProperty TitleVisibilityProperty = DependencyProperty.Register(nameof(TitleVisibility), typeof(WVisibility), typeof(PageControl), new PropertyMetadata(WVisibility.Visible)); diff --git a/src/Compatibility/Core/src/Windows/PageRenderer.cs b/src/Compatibility/Core/src/Windows/PageRenderer.cs index ea783ab81be6..760e19852d15 100644 --- a/src/Compatibility/Core/src/Windows/PageRenderer.cs +++ b/src/Compatibility/Core/src/Windows/PageRenderer.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class PageRenderer : + public partial class PageRenderer : //Microsoft.UI.Xaml.Controls.Grid, IVisualElementRenderer VisualElementRenderer { diff --git a/src/Compatibility/Core/src/Windows/PageToRenderedElementConverter.cs b/src/Compatibility/Core/src/Windows/PageToRenderedElementConverter.cs index c65fd3447612..eb2f0caf4f14 100644 --- a/src/Compatibility/Core/src/Windows/PageToRenderedElementConverter.cs +++ b/src/Compatibility/Core/src/Windows/PageToRenderedElementConverter.cs @@ -2,7 +2,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class PageToRenderedElementConverter : Microsoft.UI.Xaml.Data.IValueConverter + public partial class PageToRenderedElementConverter : Microsoft.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { diff --git a/src/Compatibility/Core/src/Windows/PickerRenderer.cs b/src/Compatibility/Core/src/Windows/PickerRenderer.cs index 3b60785dcc1e..0f72bb830bfd 100644 --- a/src/Compatibility/Core/src/Windows/PickerRenderer.cs +++ b/src/Compatibility/Core/src/Windows/PickerRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class PickerRenderer : ViewRenderer + public partial class PickerRenderer : ViewRenderer { bool _fontApplied; bool _isAnimating; diff --git a/src/Compatibility/Core/src/Windows/ProgressBarRenderer.cs b/src/Compatibility/Core/src/Windows/ProgressBarRenderer.cs index 583fa7421d35..154d8e674329 100644 --- a/src/Compatibility/Core/src/Windows/ProgressBarRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ProgressBarRenderer.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ProgressBarRenderer : ViewRenderer + public partial class ProgressBarRenderer : ViewRenderer { object _foregroundDefault; diff --git a/src/Compatibility/Core/src/Windows/RadioButtonRenderer.cs b/src/Compatibility/Core/src/Windows/RadioButtonRenderer.cs index 8582d7d059c3..d1c6c6c72485 100644 --- a/src/Compatibility/Core/src/Windows/RadioButtonRenderer.cs +++ b/src/Compatibility/Core/src/Windows/RadioButtonRenderer.cs @@ -10,7 +10,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class RadioButtonRenderer : ViewRenderer + public partial class RadioButtonRenderer : ViewRenderer { bool _fontApplied; diff --git a/src/Compatibility/Core/src/Windows/RefreshViewRenderer.cs b/src/Compatibility/Core/src/Windows/RefreshViewRenderer.cs index 19bf077ca593..1d11a1058dff 100644 --- a/src/Compatibility/Core/src/Windows/RefreshViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/RefreshViewRenderer.cs @@ -14,7 +14,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class RefreshViewRenderer : ViewRenderer + public partial class RefreshViewRenderer : ViewRenderer { bool _isDisposed; Deferral _refreshCompletionDeferral; diff --git a/src/Compatibility/Core/src/Windows/ScrollViewRenderer.cs b/src/Compatibility/Core/src/Windows/ScrollViewRenderer.cs index e38513dd5d46..cc5467fecb83 100644 --- a/src/Compatibility/Core/src/Windows/ScrollViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ScrollViewRenderer.cs @@ -11,7 +11,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ScrollViewRenderer : ViewRenderer + public partial class ScrollViewRenderer : ViewRenderer { VisualElement _currentView; bool _checkedForRtlScroll = false; diff --git a/src/Compatibility/Core/src/Windows/SearchBarRenderer.cs b/src/Compatibility/Core/src/Windows/SearchBarRenderer.cs index 85eb26b0343c..364163302ca2 100644 --- a/src/Compatibility/Core/src/Windows/SearchBarRenderer.cs +++ b/src/Compatibility/Core/src/Windows/SearchBarRenderer.cs @@ -12,7 +12,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class SearchBarRenderer : ViewRenderer + public partial class SearchBarRenderer : ViewRenderer { WBrush _defaultPlaceholderColorBrush; WBrush _defaultPlaceholderColorFocusBrush; diff --git a/src/Compatibility/Core/src/Windows/Shapes/EllipseRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/EllipseRenderer.cs index 72f6fede26c5..07801ee0b3d6 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/EllipseRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/EllipseRenderer.cs @@ -12,7 +12,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class EllipseRenderer : ShapeRenderer + public partial class EllipseRenderer : ShapeRenderer { protected override void OnElementChanged(ElementChangedEventArgs args) { diff --git a/src/Compatibility/Core/src/Windows/Shapes/LineRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/LineRenderer.cs index c9c29974e669..01fe65caf19c 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/LineRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/LineRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class LineRenderer : ShapeRenderer + public partial class LineRenderer : ShapeRenderer { protected override void OnElementChanged(ElementChangedEventArgs args) { diff --git a/src/Compatibility/Core/src/Windows/Shapes/PathRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/PathRenderer.cs index 6889b467804f..86443608d36e 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/PathRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/PathRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class PathRenderer : ShapeRenderer + public partial class PathRenderer : ShapeRenderer { protected override void OnElementChanged(ElementChangedEventArgs args) { diff --git a/src/Compatibility/Core/src/Windows/Shapes/PolygonRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/PolygonRenderer.cs index d1b75436b8c7..207ee7e8b5d0 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/PolygonRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/PolygonRenderer.cs @@ -17,7 +17,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class PolygonRenderer : ShapeRenderer + public partial class PolygonRenderer : ShapeRenderer { PointCollection _points; diff --git a/src/Compatibility/Core/src/Windows/Shapes/PolylineRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/PolylineRenderer.cs index 333d96e217e3..0fd82dd24353 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/PolylineRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/PolylineRenderer.cs @@ -17,7 +17,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class PolylineRenderer : ShapeRenderer + public partial class PolylineRenderer : ShapeRenderer { PointCollection _points; diff --git a/src/Compatibility/Core/src/Windows/Shapes/RectangleRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/RectangleRenderer.cs index d13b52315e1a..afa4cf76b043 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/RectangleRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/RectangleRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class RectangleRenderer : ShapeRenderer + public partial class RectangleRenderer : ShapeRenderer { protected override void OnElementChanged(ElementChangedEventArgs args) { diff --git a/src/Compatibility/Core/src/Windows/Shapes/ShapeRenderer.cs b/src/Compatibility/Core/src/Windows/Shapes/ShapeRenderer.cs index 73559385050c..bad9728ab934 100644 --- a/src/Compatibility/Core/src/Windows/Shapes/ShapeRenderer.cs +++ b/src/Compatibility/Core/src/Windows/Shapes/ShapeRenderer.cs @@ -26,7 +26,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.WPF #endif { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class ShapeRenderer : ViewRenderer + public partial class ShapeRenderer : ViewRenderer where TShape : Shape where TNativeShape : WShape { diff --git a/src/Compatibility/Core/src/Windows/SliderRenderer.cs b/src/Compatibility/Core/src/Windows/SliderRenderer.cs index 404f3520a08d..c60f1515859c 100644 --- a/src/Compatibility/Core/src/Windows/SliderRenderer.cs +++ b/src/Compatibility/Core/src/Windows/SliderRenderer.cs @@ -12,7 +12,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class SliderRenderer : ViewRenderer + public partial class SliderRenderer : ViewRenderer { WBrush defaultforegroundcolor; WBrush defaultbackgroundcolor; diff --git a/src/Compatibility/Core/src/Windows/StepperControl.cs b/src/Compatibility/Core/src/Windows/StepperControl.cs index 18d294052608..b51f818d1713 100644 --- a/src/Compatibility/Core/src/Windows/StepperControl.cs +++ b/src/Compatibility/Core/src/Windows/StepperControl.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public sealed class StepperControl : Control + public sealed partial class StepperControl : Control { public static readonly DependencyProperty ValueProperty = DependencyProperty.Register("Value", typeof(double), typeof(StepperControl), new PropertyMetadata(default(double), OnValueChanged)); diff --git a/src/Compatibility/Core/src/Windows/StepperRenderer.cs b/src/Compatibility/Core/src/Windows/StepperRenderer.cs index 8063c1d82c94..7bbef117e3ca 100644 --- a/src/Compatibility/Core/src/Windows/StepperRenderer.cs +++ b/src/Compatibility/Core/src/Windows/StepperRenderer.cs @@ -5,7 +5,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class StepperRenderer : ViewRenderer + public partial class StepperRenderer : ViewRenderer { bool _isDisposed; diff --git a/src/Compatibility/Core/src/Windows/SwipeViewRenderer.cs b/src/Compatibility/Core/src/Windows/SwipeViewRenderer.cs index b150f3c12e74..7fa9116ef64a 100644 --- a/src/Compatibility/Core/src/Windows/SwipeViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/SwipeViewRenderer.cs @@ -14,7 +14,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class SwipeViewRenderer : ViewRenderer + public partial class SwipeViewRenderer : ViewRenderer { bool _isDisposed; Dictionary _leftItems; diff --git a/src/Compatibility/Core/src/Windows/SwitchRenderer.cs b/src/Compatibility/Core/src/Windows/SwitchRenderer.cs index 1d9da0bd4a1f..8f034a3bddd2 100644 --- a/src/Compatibility/Core/src/Windows/SwitchRenderer.cs +++ b/src/Compatibility/Core/src/Windows/SwitchRenderer.cs @@ -16,7 +16,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class SwitchRenderer : ViewRenderer + public partial class SwitchRenderer : ViewRenderer { const string ToggleSwitchCommonStates = "CommonStates"; const string ToggleSwitchPointerOver = "PointerOver"; diff --git a/src/Compatibility/Core/src/Windows/TableViewRenderer.cs b/src/Compatibility/Core/src/Windows/TableViewRenderer.cs index d8ebea5993ca..7f065947f96e 100644 --- a/src/Compatibility/Core/src/Windows/TableViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/TableViewRenderer.cs @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.TableViewRenderer instead")] - public class TableViewRenderer : ViewRenderer + public partial class TableViewRenderer : ViewRenderer { bool _ignoreSelectionEvent; bool _disposed; diff --git a/src/Compatibility/Core/src/Windows/TextAlignmentToHorizontalAlignmentConverter.cs b/src/Compatibility/Core/src/Windows/TextAlignmentToHorizontalAlignmentConverter.cs index 8941c2430b2e..bff30a1c5b77 100644 --- a/src/Compatibility/Core/src/Windows/TextAlignmentToHorizontalAlignmentConverter.cs +++ b/src/Compatibility/Core/src/Windows/TextAlignmentToHorizontalAlignmentConverter.cs @@ -3,7 +3,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public sealed class TextAlignmentToHorizontalAlignmentConverter : Microsoft.UI.Xaml.Data.IValueConverter + public sealed partial class TextAlignmentToHorizontalAlignmentConverter : Microsoft.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { diff --git a/src/Compatibility/Core/src/Windows/TimePickerRenderer.cs b/src/Compatibility/Core/src/Windows/TimePickerRenderer.cs index d853d127d0ec..ded027021259 100644 --- a/src/Compatibility/Core/src/Windows/TimePickerRenderer.cs +++ b/src/Compatibility/Core/src/Windows/TimePickerRenderer.cs @@ -13,7 +13,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class TimePickerRenderer : ViewRenderer + public partial class TimePickerRenderer : ViewRenderer { WBrush _defaultBrush; bool _fontApplied; diff --git a/src/Compatibility/Core/src/Windows/ViewRenderer.cs b/src/Compatibility/Core/src/Windows/ViewRenderer.cs index c0804a0d84ab..8d436d4ce20e 100644 --- a/src/Compatibility/Core/src/Windows/ViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/ViewRenderer.cs @@ -6,7 +6,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.ViewRenderer instead")] - public class ViewRenderer : VisualElementRenderer where TElement : View where TNativeElement : FrameworkElement + public partial class ViewRenderer : VisualElementRenderer where TElement : View where TNativeElement : FrameworkElement { string _defaultAutomationPropertiesName; AccessibilityView? _defaultAutomationPropertiesAccessibilityView; diff --git a/src/Compatibility/Core/src/Windows/ViewToRendererConverter.cs b/src/Compatibility/Core/src/Windows/ViewToRendererConverter.cs index a9b079768cf2..10c805d879b5 100644 --- a/src/Compatibility/Core/src/Windows/ViewToRendererConverter.cs +++ b/src/Compatibility/Core/src/Windows/ViewToRendererConverter.cs @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { - public class ViewToRendererConverter : ViewToHandlerConverter + public partial class ViewToRendererConverter : ViewToHandlerConverter { } } \ No newline at end of file diff --git a/src/Compatibility/Core/src/Windows/VisualElementRenderer.cs b/src/Compatibility/Core/src/Windows/VisualElementRenderer.cs index ee9eb3a0f145..b2b94e0e1637 100644 --- a/src/Compatibility/Core/src/Windows/VisualElementRenderer.cs +++ b/src/Compatibility/Core/src/Windows/VisualElementRenderer.cs @@ -16,7 +16,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [Obsolete("Use Microsoft.Maui.Controls.Handlers.Compatibility.VisualElementRenderer instead")] - public class VisualElementRenderer : Panel, IVisualNativeElementRenderer, IDisposable, IEffectControlProvider where TElement : VisualElement + public partial class VisualElementRenderer : Panel, IVisualNativeElementRenderer, IDisposable, IEffectControlProvider where TElement : VisualElement where TNativeElement : FrameworkElement { string _defaultAutomationPropertiesName; diff --git a/src/Compatibility/Core/src/Windows/WebViewRenderer.cs b/src/Compatibility/Core/src/Windows/WebViewRenderer.cs index ff23bdfd056f..8c2b3e75971a 100644 --- a/src/Compatibility/Core/src/Windows/WebViewRenderer.cs +++ b/src/Compatibility/Core/src/Windows/WebViewRenderer.cs @@ -18,7 +18,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.UWP { [System.Obsolete(Compatibility.Hosting.MauiAppBuilderExtensions.UseMapperInstead)] - public class WebViewRenderer : ViewRenderer, IWebViewDelegate + public partial class WebViewRenderer : ViewRenderer, IWebViewDelegate { IWebViewController WebViewController => Element; WebNavigationEvent _eventState; diff --git a/src/Compatibility/Core/src/WorkaroundXamlPreCompilePreviewFeatures.rsp b/src/Compatibility/Core/src/WorkaroundXamlPreCompilePreviewFeatures.rsp deleted file mode 100644 index e60a129bbc68..000000000000 --- a/src/Compatibility/Core/src/WorkaroundXamlPreCompilePreviewFeatures.rsp +++ /dev/null @@ -1 +0,0 @@ -/features:"InterceptorsPreviewNamespaces=Microsoft.Maui.Controls.Generated" \ No newline at end of file diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ActionSheetArguments.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ActionSheetArguments.xml index 4c3115df8e73..1f8f5574fef5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ActionSheetArguments.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ActionSheetArguments.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -45,7 +44,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -65,7 +63,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -85,7 +82,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -105,7 +101,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -125,7 +120,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -148,7 +142,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -168,7 +161,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/AlertArguments.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/AlertArguments.xml index 7daae018753f..c4eefa65d2df 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/AlertArguments.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/AlertArguments.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -45,7 +44,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -65,7 +63,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -85,7 +82,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -105,7 +101,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -125,7 +120,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -148,7 +142,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -168,7 +161,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/AsyncValueExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/AsyncValueExtensions.xml index 4331e09ed260..deb109514076 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/AsyncValueExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/AsyncValueExtensions.xml @@ -18,7 +18,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -47,7 +46,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/CellExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/CellExtensions.xml index de203d4ef37a..d6304a91de6e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/CellExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/CellExtensions.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -58,7 +57,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -97,7 +95,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -136,7 +133,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -175,7 +171,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -199,7 +194,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -239,7 +233,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ContentPageEx.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ContentPageEx.xml index 4f74040b1ccd..342b005b6c66 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ContentPageEx.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ContentPageEx.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ System.Collections.Generic.List<Microsoft.Maui.Controls.Internals.ProfileDatum> - To be added. - To be added. @@ -52,8 +48,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DataTemplateExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DataTemplateExtensions.xml index 4070ccd22cfe..d5f314d9d71c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DataTemplateExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DataTemplateExtensions.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -47,7 +46,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -75,7 +73,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DependencyResolver.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DependencyResolver.xml index d8dc89495b91..f355c5dfae55 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DependencyResolver.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DependencyResolver.xml @@ -14,7 +14,6 @@ Contains static methods that add functions to use for resolving dependencies. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DeviceOrientationExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DeviceOrientationExtensions.xml index 0f3916312dcc..98584f8bf78b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DeviceOrientationExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DeviceOrientationExtensions.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -43,7 +42,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -67,7 +65,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DynamicResource.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DynamicResource.xml index 2c5c5793f1e4..7d5c3d02a932 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/DynamicResource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/DynamicResource.xml @@ -20,7 +20,6 @@ For internal use by platform renderers. - To be added. @@ -41,7 +40,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -62,7 +60,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EffectUtilities.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EffectUtilities.xml index d52f6f60aaa1..9b72968e43e5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EffectUtilities.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EffectUtilities.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -46,7 +45,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -70,7 +68,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EnumerableExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EnumerableExtensions.xml index 284d4600c651..f848dfb3f6f2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EnumerableExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EnumerableExtensions.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -48,7 +47,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -87,7 +85,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -126,7 +123,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -157,7 +153,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -187,7 +182,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -217,7 +211,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -252,7 +245,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EvalRequested.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EvalRequested.xml index 640e2c2a3aa0..2ec61b43f40d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/EvalRequested.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/EvalRequested.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -39,7 +38,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -59,7 +57,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ExpressionSearch.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ExpressionSearch.xml index 7b274fb89f58..5c7afff22976 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ExpressionSearch.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ExpressionSearch.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -35,7 +34,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -55,7 +53,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmap.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmap.xml index a37b265e9788..4a16ab65b17b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmap.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmap.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ Microsoft.Maui.Controls.Internals.GIFBitmap+Rect - To be added. - To be added. - To be added. @@ -68,9 +60,6 @@ Microsoft.Maui.Controls.Internals.GIFColorTable - To be added. - To be added. - To be added. @@ -99,9 +88,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -118,9 +104,6 @@ System.Int32[] - To be added. - To be added. - To be added. @@ -137,9 +120,6 @@ System.Int64 - To be added. - To be added. - To be added. @@ -156,9 +136,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -175,9 +152,6 @@ Microsoft.Maui.Controls.Internals.GIFBitmap+DisposeMethod - To be added. - To be added. - To be added. @@ -194,9 +168,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -213,9 +184,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -232,9 +200,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -251,9 +216,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmapDecoder.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmapDecoder.xml index 94f553f1fe90..62c795dde834 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmapDecoder.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFBitmapDecoder.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -53,8 +49,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -79,9 +73,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFColorTable.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFColorTable.xml index f38205d0af38..d4077626b18a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFColorTable.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFColorTable.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -36,9 +34,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -55,9 +50,6 @@ System.Int32[] - To be added. - To be added. - To be added. @@ -75,8 +67,6 @@ - To be added. - To be added. @@ -97,8 +87,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderFormatException.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderFormatException.xml index f4172e9c48d5..1bf0f830a834 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderFormatException.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderFormatException.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -67,8 +61,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderStreamReader.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderStreamReader.xml index 3ce73bdb222c..19c097535727 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderStreamReader.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFDecoderStreamReader.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. @@ -49,9 +45,6 @@ System.Byte[] - To be added. - To be added. - To be added. @@ -68,9 +61,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -87,9 +77,6 @@ System.Int64 - To be added. - To be added. - To be added. @@ -107,9 +94,6 @@ - To be added. - To be added. - To be added. @@ -132,9 +116,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -152,9 +133,6 @@ - To be added. - To be added. - To be added. @@ -172,9 +150,6 @@ - To be added. - To be added. - To be added. @@ -195,9 +170,6 @@ To be added. - To be added. - To be added. - To be added. @@ -215,9 +187,6 @@ - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFHeader.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFHeader.xml index c463a55f4df1..cdd6ddb36bb4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFHeader.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFHeader.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -74,9 +66,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -93,9 +82,6 @@ Microsoft.Maui.Controls.Internals.GIFColorTable - To be added. - To be added. - To be added. @@ -112,9 +98,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -131,9 +114,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -150,9 +130,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -169,9 +146,6 @@ System.String - To be added. - To be added. - To be added. @@ -188,9 +162,6 @@ System.String - To be added. - To be added. - To be added. @@ -207,9 +178,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFImageParser.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFImageParser.xml index a957e5143ea0..4666633f3e1e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFImageParser.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/GIFImageParser.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -53,8 +49,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -72,8 +66,6 @@ - To be added. - To be added. @@ -98,9 +90,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -118,8 +107,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/InvalidationTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/InvalidationTrigger.xml index c8ed03d7a20e..a20cdedab1c5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/InvalidationTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/InvalidationTrigger.xml @@ -21,7 +21,6 @@ For internal use by platform renderers. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NameScope.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NameScope.xml index a374e88a96e4..05c255d1a2df 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NameScope.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NameScope.xml @@ -24,7 +24,6 @@ For internal use by platform renderers. - To be added. @@ -41,7 +40,6 @@ For internal use by platform renderers. - To be added. @@ -66,7 +64,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -86,7 +83,6 @@ For internal use by platform renderers. - To be added. @@ -112,7 +108,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -140,7 +135,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -169,7 +163,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationModel.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationModel.xml index b1cbc7078de8..bc56d7f827ce 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationModel.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationModel.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -35,7 +34,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -55,7 +53,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -75,7 +72,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -100,7 +96,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -120,7 +115,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -144,7 +138,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -165,7 +158,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -186,7 +178,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -209,7 +200,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -234,7 +224,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -257,7 +246,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -281,7 +269,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -306,7 +293,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -326,7 +312,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationProxy.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationProxy.xml index ad814bc746ff..9d1500e23cac 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationProxy.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationProxy.xml @@ -23,7 +23,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -39,7 +38,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -60,7 +58,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -81,7 +78,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -101,7 +97,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -129,7 +124,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -152,7 +146,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -175,7 +168,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -200,7 +192,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -224,7 +215,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -248,7 +238,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -272,7 +261,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -298,7 +286,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -324,7 +311,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -347,7 +333,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -371,7 +356,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -398,7 +382,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -422,7 +405,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -449,7 +431,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -473,7 +454,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -500,7 +480,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -527,7 +506,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -556,7 +534,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -583,7 +560,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -612,7 +588,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -638,7 +613,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestType.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestType.xml index 87d8038bed35..1547a1bf87dd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestType.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestType.xml @@ -17,7 +17,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestedEventArgs.xml index 7fc042c22e93..b57d777c06b8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NavigationRequestedEventArgs.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -40,7 +39,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -68,7 +66,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -92,7 +89,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -112,7 +108,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -132,7 +127,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -156,7 +150,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -175,7 +168,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -195,7 +187,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsEx.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsEx.xml index 189349559be9..5ba0c6d773f5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsEx.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsEx.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -41,7 +40,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -65,7 +63,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -89,7 +86,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -115,7 +111,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -141,7 +136,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -167,7 +161,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -193,7 +186,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -221,7 +213,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -249,7 +240,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -277,7 +267,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -305,7 +294,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -325,7 +313,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsExtensions.xml index d0e05988192f..1262ed4e90aa 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/NotifyCollectionChangedEventArgsExtensions.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -49,7 +48,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -80,7 +78,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -106,7 +103,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PageExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PageExtensions.xml index a3370163dc68..87f9c5c394ae 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PageExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PageExtensions.xml @@ -18,7 +18,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -41,7 +40,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Performance.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Performance.xml index e382f228280f..9b08eb47da72 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Performance.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Performance.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -35,7 +34,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -55,7 +53,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -78,7 +75,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -119,7 +115,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -159,7 +154,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -200,7 +194,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PlatformBindingHelpers.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PlatformBindingHelpers.xml index 1ede8fef43f2..9ee94685149c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PlatformBindingHelpers.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PlatformBindingHelpers.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -54,7 +53,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -91,7 +89,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -128,7 +125,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -163,7 +159,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -198,7 +193,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -237,7 +231,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PreserveAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PreserveAttribute.xml index 5fb2e66a1101..6ca2cb5122e0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PreserveAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PreserveAttribute.xml @@ -22,7 +22,6 @@ For internal use by platform renderers. - To be added. @@ -38,7 +37,6 @@ For internal use by platform renderers. - To be added. @@ -60,7 +58,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. @@ -79,7 +76,6 @@ For internal use by platform renderers. - To be added. @@ -98,7 +94,6 @@ For internal use by platform renderers. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Profile.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Profile.xml index b376817cf2a8..341796fa1887 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Profile.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Profile.xml @@ -22,7 +22,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -40,7 +39,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -62,7 +60,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -85,8 +82,6 @@ - To be added. - To be added. @@ -121,8 +116,6 @@ To be added. To be added. - To be added. - To be added. @@ -149,8 +142,6 @@ To be added. - To be added. - To be added. @@ -180,7 +171,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -202,9 +192,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -223,7 +210,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -242,7 +228,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ProfileDatum.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ProfileDatum.xml index 44201a13443c..7e565b922325 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ProfileDatum.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ProfileDatum.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,8 +41,6 @@ System.Int32 - To be added. - To be added. @@ -63,8 +57,6 @@ System.String - To be added. - To be added. @@ -81,8 +73,6 @@ System.Int32 - To be added. - To be added. @@ -99,8 +89,6 @@ System.String - To be added. - To be added. @@ -117,8 +105,6 @@ System.String - To be added. - To be added. @@ -135,8 +121,6 @@ System.Int64 - To be added. - To be added. @@ -153,8 +137,6 @@ System.Int64 - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PromptArguments.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PromptArguments.xml index 09adce868fb7..14fddec5de94 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PromptArguments.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PromptArguments.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -56,8 +54,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -89,8 +85,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -107,9 +101,6 @@ System.String - To be added. - To be added. - To be added. @@ -126,9 +117,6 @@ System.String - To be added. - To be added. - To be added. @@ -145,9 +133,6 @@ System.String - To be added. - To be added. - To be added. @@ -164,9 +149,6 @@ Microsoft.Maui.Keyboard - To be added. - To be added. - To be added. @@ -183,9 +165,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -202,9 +181,6 @@ System.String - To be added. - To be added. - To be added. @@ -221,9 +197,6 @@ System.String - To be added. - To be added. - To be added. @@ -240,9 +213,6 @@ System.Threading.Tasks.TaskCompletionSource<System.String> - To be added. - To be added. - To be added. @@ -263,8 +233,6 @@ To be added. - To be added. - To be added. @@ -281,9 +249,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PropertyPropagationExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PropertyPropagationExtensions.xml index 42affc88ffa2..f3cbc3b790bd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/PropertyPropagationExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/PropertyPropagationExtensions.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Registrar.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Registrar.xml index a013692d14a7..e7d37642d53c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/Registrar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/Registrar.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -39,7 +38,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -62,7 +60,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -85,8 +82,6 @@ To be added. To be added. - To be added. - To be added. @@ -106,7 +101,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -130,7 +124,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -152,7 +145,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -173,8 +165,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourceLoader.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourceLoader.xml index 0c5c11d42502..2f20b8bf87bf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourceLoader.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourceLoader.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -50,7 +49,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -75,9 +73,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -105,7 +100,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -124,7 +118,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourcesChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourcesChangedEventArgs.xml index dd6147115b8a..bab1aa238142 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourcesChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/ResourcesChangedEventArgs.xml @@ -19,7 +19,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -39,7 +38,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -58,7 +56,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -78,7 +75,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TableModel.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TableModel.xml index a9834b2cb9d8..b55fa73b97c6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TableModel.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TableModel.xml @@ -23,7 +23,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -39,7 +38,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -68,7 +66,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -95,7 +92,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -124,7 +120,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -151,7 +146,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -175,7 +169,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -199,7 +192,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -225,7 +217,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -252,7 +243,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -271,7 +261,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -290,7 +279,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -313,7 +301,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -336,7 +323,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -359,7 +345,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -387,7 +372,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -413,7 +397,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -441,7 +424,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TextTransformUtilites.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TextTransformUtilites.xml index ed7c207d6b47..fda0537a7448 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TextTransformUtilites.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TextTransformUtilites.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -46,9 +44,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -76,8 +71,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TypedBindingBase.xml b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TypedBindingBase.xml index ee77446a8c2d..dca236595861 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Internals/TypedBindingBase.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Internals/TypedBindingBase.xml @@ -19,7 +19,6 @@ For internal use by platform renderers. - To be added. @@ -39,7 +38,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -59,7 +57,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -79,7 +76,6 @@ For internal use by platform renderers. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/Application.xml index 4df9a665fc19..ded4bdd8b3a0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/Application.xml @@ -14,7 +14,6 @@ AppCompat application instance on Android. - To be added. @@ -37,8 +36,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether the appearing event is sent when the application resumes. - To be added. - To be added. @@ -61,8 +58,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether the appearing event is sent when the application resumes. - To be added. - To be added. @@ -85,8 +80,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether the disappearing event is sent when the application is paused. - To be added. - To be added. @@ -109,8 +102,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether the disappearing event is sent when the application is paused. - To be added. - To be added. @@ -133,8 +124,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether the keyboard state should be preserved when the application resumes. - To be added. - To be added. @@ -157,8 +146,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether the keyboard state should be preserved when the application resumes. - To be added. - To be added. @@ -183,8 +170,6 @@ The platform specific configuration that contains the element on which to perform the operation. The new property value to assign. Sets a value that controls whether the appearing event is sent when the application resumes. - To be added. - To be added. @@ -203,7 +188,6 @@ Backing store for the attached property that controls whether the appearing event is sent when the application resumes. - To be added. @@ -228,8 +212,6 @@ The platform specific configuration that contains the element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the disappearing event is sent when the application is paused. - To be added. - To be added. @@ -248,7 +230,6 @@ Backing store for the attached property that controls whether the disappearing event is sent when the application is paused. - To be added. @@ -273,7 +254,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the appearing event is sent when the application resumes. - To be added. @@ -298,7 +278,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the disappearing event is sent when the application is paused. - To be added. @@ -323,7 +302,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the keyboard state should be preserved when the application resumes. - To be added. @@ -348,8 +326,6 @@ The platform specific configuration that contains the element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the keyboard state should be preserved when the application resumes. - To be added. - To be added. @@ -368,7 +344,6 @@ Backing store for the property that controls whether the keyboard state should be preserved when the application resumes. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/NavigationPage.xml index 38d04a997211..90f758be3793 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific.AppCompat/NavigationPage.xml @@ -14,7 +14,6 @@ Appcompat platform specific navigation page. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls the height of the navigation bar. - To be added. @@ -57,7 +55,6 @@ The element whose bar height to get. Gets the navigation bar height for the specified . The new bar height. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the element whose bar height to get. Gets the navigation bar height for the specified element. The new bar height. - To be added. @@ -106,7 +102,6 @@ The element whose bar height to set. The new bar height value. Sets the new bar height value for the element. - To be added. @@ -132,7 +127,6 @@ The new bar height value. Sets the new bar height value for the element and returns a fluid API object. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Application.xml index 4b1966bfedef..2cc46b307e1d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Application.xml @@ -14,7 +14,6 @@ The application instance that Microsoft.Maui.Controls created on the Android platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns a value that tells whether the soft input mode of the provided pans or resizes its content to allow the display of the on-screen input UI. A value that tells whether the soft input mode of the provided pans or resizes its content to allow the display of the on-screen input UI. - To be added. @@ -62,7 +60,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a value that tells whether the soft input mode of the provided platform configuration pans or resizes its content to allow the display of the on-screen input UI. A value that tells whether the soft input mode of the provided platform configuration pans or resizes its content to allow the display of the on-screen input UI. - To be added. @@ -87,7 +84,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a value that controls whether the soft input mode of the provided pans or resizes its content to allow the display of the on-screen input UI. - To be added. @@ -113,7 +109,6 @@ The new property value to assign. Sets a value that controls whether the soft input mode of the provided platform configuration pans or resizes its content to allow the display of the on-screen input UI. A value that controls whether the soft input mode of the provided platform configuration pans or resizes its content to allow the display of the on-screen input UI. - To be added. @@ -132,7 +127,6 @@ The backing store for the attached property that controls whether the soft input mode pans or resizes content to allow the display of the on-screen input UI. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Button.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Button.xml index 1a1627d18022..7f5aa6029efd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Button.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Button.xml @@ -14,7 +14,6 @@ Controls padding and shadows for buttons on the Android platform. - To be added. @@ -38,7 +37,6 @@ The Android button for which to get the padding behavior. Returns a Boolean value that tells whether the default padding will be used. A Boolean value that tells whether the default padding will be used. - To be added. @@ -62,7 +60,6 @@ The Android button for which to get the shadow behavior. Returns a Boolean value that tells whether the default shadow will be used. A Boolean value that tells whether the default shadow will be used. - To be added. @@ -88,7 +85,6 @@ to use the default padding. Otherwise, Sets a Boolean value that controls whether the button will use the default padding. - To be added. @@ -115,7 +111,6 @@ to use the default padding. Otherwise, Sets a Boolean value that controls whether the button will use the default padding. A fluent object on which the developer may make further method calls. - To be added. @@ -141,7 +136,6 @@ to use the default shadow. Otherwise, Sets a Boolean value that controls whether the button will use the default shadow. - To be added. @@ -168,7 +162,6 @@ to use the default shadow. Otherwise, Sets a Boolean value that controls whether the button will use the default shadow. A fluent object on which the developer may make further method calls. - To be added. @@ -193,7 +186,6 @@ Returns if the button will use the default padding. Otherwise, returns . if the button will use the default padding. Otherwise, . - To be added. @@ -212,7 +204,6 @@ Backing store for the attached property that controls whether the button will use the default padding. - To be added. @@ -237,7 +228,6 @@ Returns if the button will use the default shadow. Otherwise, returns . if the button will use the default shadow. Otherwise, . - To be added. @@ -256,7 +246,6 @@ Backing store for the attached property that controls whether the button will use the default shadow. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Entry.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Entry.xml index a6b5c678a49d..d80a15acbc1e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Entry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/Entry.xml @@ -14,7 +14,6 @@ Controls input method editor (IME) options for entry fields on the Android platform. - To be added. @@ -38,7 +37,6 @@ The Android entry for which to get the input method editor options. Returns flags that specify input method editor options, such as the kind of action that is sent by the editor. The flags that specify input method editor options, such as the kind of action that is sent by the editor. - To be added. @@ -62,7 +60,6 @@ The platform configuration for the Android entry for which to get the input method editor options. Returns flags that specify input method editor options, such as the kind of action that is sent by the editor. The flags that specify input method editor options, such as the kind of action that is sent by the editor. - To be added. @@ -81,7 +78,6 @@ Backing store for the attached property that specifies input method editor options. - To be added. @@ -106,7 +102,6 @@ The Android entry for which to set the input method editor options. The new options to set. Sets the attached property that specifies input method editor options - To be added. @@ -131,8 +126,6 @@ The platform configuration for the Android entry for which to set the input method editor options. The new options to set. Sets the attached property that specifies input method editor options - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImageButton.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImageButton.xml index 895d7930a6fd..71b2b16392db 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImageButton.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImageButton.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -80,9 +72,6 @@ To be added. - To be added. - To be added. - To be added. @@ -103,9 +92,6 @@ To be added. - To be added. - To be added. - To be added. @@ -126,9 +112,6 @@ To be added. - To be added. - To be added. - To be added. @@ -149,9 +132,6 @@ To be added. - To be added. - To be added. - To be added. @@ -172,9 +152,6 @@ To be added. - To be added. - To be added. - To be added. @@ -195,9 +172,6 @@ To be added. - To be added. - To be added. - To be added. @@ -214,8 +188,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -238,8 +210,6 @@ To be added. To be added. - To be added. - To be added. @@ -262,9 +232,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -287,8 +254,6 @@ To be added. To be added. - To be added. - To be added. @@ -311,9 +276,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -336,8 +298,6 @@ To be added. To be added. - To be added. - To be added. @@ -360,9 +320,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -385,8 +342,6 @@ To be added. To be added. - To be added. - To be added. @@ -409,9 +364,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -428,8 +380,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -446,8 +396,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -464,8 +412,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImeFlags.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImeFlags.xml index 2c2f682c237e..9d7e53eef290 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImeFlags.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ImeFlags.xml @@ -13,7 +13,6 @@ Enumerates input method editor (IME) options for entry fields on the Android platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ListView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ListView.xml index e454736f069c..915478fe9792 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ListView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ListView.xml @@ -14,7 +14,6 @@ The list view instance that Microsoft.Maui.Controls created on the Android platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether fast scrolling is enabled. A Boolean value that tells whether fast scrolling is enabled. - To be added. @@ -62,7 +60,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether fast scrolling is enabled. A Boolean value that tells whether fast scrolling is enabled. - To be added. @@ -81,7 +78,6 @@ Backing store for the attached property that controls whether fast scrolling is enabled. - To be added. @@ -106,7 +102,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets the attached property that controls whether fast scrolling is enabled. - To be added. @@ -132,7 +127,6 @@ The new property value to assign. Sets the attached property that controls whether fast scrolling is enabled. The updated configuration object, on which more methods may be called. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/MixedContentHandling.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/MixedContentHandling.xml index ce89ebc3a1e3..4a0ab147d806 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/MixedContentHandling.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/MixedContentHandling.xml @@ -13,7 +13,6 @@ Enumerates web view behaviors when handling mixed content. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ShellItem.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ShellItem.xml index 3fafb8443160..0893da39b7c2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ShellItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ShellItem.xml @@ -12,8 +12,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/SwipeView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/SwipeView.xml index 303f1570558f..5ed7248c0a7e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/SwipeView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/SwipeView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -82,8 +74,6 @@ To be added. To be added. - To be added. - To be added. @@ -106,9 +96,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -125,8 +112,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/TabbedPage.xml index 4a88cdf96f82..a1ad4641e82e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/TabbedPage.xml @@ -14,7 +14,6 @@ The tabbed page instance that Microsoft.Maui.Controls created on the Android platform. - To be added. @@ -41,7 +40,6 @@ Backing store for the attached property that controls the color of a bar item. - To be added. @@ -68,7 +66,6 @@ Backing store for the attached property that controls the color of a selected bar item. - To be added. @@ -90,8 +87,6 @@ To be added. Turns off smooth scrolling for this. - To be added. - To be added. @@ -115,7 +110,6 @@ The platform specific configuration that contains the element on which to perform the operation. Disables swiped paging. The updated element on the Android platform. - To be added. @@ -137,8 +131,6 @@ To be added. Turns on smooth scrolling for this. - To be added. - To be added. @@ -162,7 +154,6 @@ The platform specific configuration that contains the element on which to perform the operation. Enables swiped paging. The updated element on the Android platform. - To be added. @@ -194,7 +185,6 @@ The platform specific element on which to perform the operation. Returns the color for bar items. The color for bar items. - To be added. @@ -226,7 +216,6 @@ The platform specific configuration for the element on which to perform the operation. Returns the color for bar items. The color for bar items. - To be added. @@ -258,7 +247,6 @@ The platform specific element on which to perform the operation. Returns the color for selected bar items. The color for bar items. - To be added. @@ -290,7 +278,6 @@ The platform specific configuration for the element on which to perform the operation. Returns the color for selected bar items. The color for bar items. - To be added. @@ -312,8 +299,6 @@ To be added. Gets whether smooth scrolling is enabled for . - To be added. - To be added. @@ -337,7 +322,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether swiped paging is enabled. A Boolean value that tells whether swipe paging is enabled. - To be added. @@ -361,7 +345,6 @@ The platform specific element on which to perform the operation. Returns the maximum allowed number of items. The maximum allowed number of items. - To be added. @@ -385,7 +368,6 @@ The platform specific configuration for the element on which to perform the operation. Returns the maximum allowed number of items. The maximum allowed number of items. - To be added. @@ -409,7 +391,6 @@ The platform specific element on which to perform the operation. Returns the number of offscreen pages are cached in memory. The number of offscreen pages are cached in memory. - To be added. @@ -433,7 +414,6 @@ The platform specific element on which to perform the operation. Returns the toolbar placement. The toolbar placement. - To be added. @@ -457,7 +437,6 @@ The platform specific configuration for the element on which to perform the operation. Returns the toolbar placement. The toolbar placement. - To be added. @@ -479,8 +458,6 @@ To be added. Gets whether smooth scrolling is enabled for this. - To be added. - To be added. @@ -498,7 +475,6 @@ The associated with the property. - To be added. @@ -523,7 +499,6 @@ Gets a Boolean value that controls whether swipe paging is enabled. if swiped paging is enabled. Otherwise, . - To be added. @@ -542,7 +517,6 @@ Backing store for the property. - To be added. @@ -566,7 +540,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns the number of offscreen pages are cached in memory. The number of offscreen pages are cached in memory. - To be added. @@ -585,7 +558,6 @@ Backing store for the attached offscreen page limit property. - To be added. @@ -618,7 +590,6 @@ The element whose value to set. The new bar item color value. Sets the color for bar items. - To be added. @@ -652,7 +623,6 @@ The new bar item color value. Sets the color for bar items. A fluent object on which the developer can make further method calls. - To be added. @@ -685,7 +655,6 @@ The platform specific element whose value to set. The new selected item color value. Sets the color for selected bar items. - To be added. @@ -719,7 +688,6 @@ The new selected item color value. Sets the color for selected bar items. A fluent object on which the developer can make further method calls. - To be added. @@ -744,7 +712,6 @@ if should enable smooth scrolling. Enables or disables smooth scrolling on . - To be added. @@ -771,8 +738,6 @@ if smooth scrolling should be enabled. Enables or disables smooth scrolling on this. - To be added. - To be added. @@ -797,7 +762,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a value that controls whether page swiping is enabled to the provided . - To be added. @@ -823,7 +787,6 @@ The new property value to assign. Sets a value that controls whether page swiping is enabled to the provided . The configuration that was updated. - To be added. @@ -848,7 +811,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets the number of off-screen pages that are stored in memory to the provided . - To be added. @@ -874,7 +836,6 @@ The new property value to assign. Sets the number of off-screen pages that are stored in memory to the provided . The configuration that was updated. - To be added. @@ -899,7 +860,6 @@ The platform specific element whose value to set. The new toolbar placement value. Sets the toolbar placement. - To be added. @@ -925,7 +885,6 @@ The new toolbar placement value. Sets the toolbar placement. A fluent object on which the developer can make further method calls. - To be added. @@ -944,7 +903,6 @@ Backing store for the attached property that controls the placement of the toolbar. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ToolbarPlacement.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ToolbarPlacement.xml index a8d62a5112b8..d70e817984ea 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ToolbarPlacement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ToolbarPlacement.xml @@ -13,7 +13,6 @@ Enumerates toolbar positions. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ViewCell.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ViewCell.xml index c149773d0323..944eea597341 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ViewCell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/ViewCell.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -76,8 +68,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WebView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WebView.xml index 73c5c921bc67..51ab705a33cb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WebView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WebView.xml @@ -14,7 +14,6 @@ Controls the mixed content mode on web views on the Android platform. - To be added. @@ -37,8 +36,6 @@ The platform configuration for the element on which to perform the operation. To be added. - To be added. - To be added. @@ -55,8 +52,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -79,8 +74,6 @@ The platform configuration for the element on which to perform the operation. To be added. - To be added. - To be added. @@ -97,8 +90,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -119,9 +110,6 @@ The element on which to perform the operation. - To be added. - To be added. - To be added. @@ -142,9 +130,6 @@ The element on which to perform the operation. - To be added. - To be added. - To be added. @@ -167,8 +152,6 @@ The Android web view for which to get the loading behavior for content that is a mix of secure and insecure content. Returns the mixed content mode for the web view. - To be added. - To be added. @@ -191,8 +174,6 @@ The platform configuration for the Android web view for which to get the loading behavior for content that is a mix of secure and insecure content. Gets the mixed content loading behavior. - To be added. - To be added. @@ -211,7 +192,6 @@ Backing store for the attached property that controls the loading behavior for content that is a mix of secure and insecure content. - To be added. @@ -234,9 +214,6 @@ The platform configuration for the element on which to perform the operation. To be added. - To be added. - To be added. - To be added. @@ -259,8 +236,6 @@ The element on which to perform the operation. To be added. - To be added. - To be added. @@ -283,9 +258,6 @@ The platform configuration for the element on which to perform the operation. To be added. - To be added. - To be added. - To be added. @@ -308,8 +280,6 @@ The element on which to perform the operation. To be added. - To be added. - To be added. @@ -334,7 +304,6 @@ The Android web view for which to set the loading behavior for content that is a mix of secure and insecure content. The new mixed content mode. Sets the mixed content mode for the web view. - To be added. @@ -359,8 +328,6 @@ The platform configuration for the Android web view for which to set the loading behavior for content that is a mix of secure and insecure content. The new mixed content mode. Sets the mixed content mode for the web view. - To be added. - To be added. @@ -381,9 +348,6 @@ The platform configuration for the element on which to perform the operation. - To be added. - To be added. - To be added. @@ -404,9 +368,6 @@ The platform configuration for the element on which to perform the operation. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WindowSoftInputModeAdjust.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WindowSoftInputModeAdjust.xml index c8efe6005057..1a58122717dd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WindowSoftInputModeAdjust.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific/WindowSoftInputModeAdjust.xml @@ -13,7 +13,6 @@ Enumerates values that control how an on-screen input interface is visually accommodated. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/BoxView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/BoxView.xml index 7b8efef229eb..951722a92249 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/BoxView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/BoxView.xml @@ -14,7 +14,6 @@ Controls the presence of the corner radius of box views on the GTK platform. - To be added. @@ -38,7 +37,6 @@ The box view element on the GTK platform whose corner radius to get. Returns a Boolean value that tells whether the box view has a corner radius set. A Boolean value that tells whether the box view has a corner radius set. - To be added. @@ -62,7 +60,6 @@ The platform configuration for the box view element on the GTK platform whose corner radius to get. Returns a Boolean value that tells whether the box view has a corner radius set. A Boolean value that tells whether the box view has a corner radius set. - To be added. @@ -81,7 +78,6 @@ Backing store for the attached property that controls whether the box view has a corner radius. - To be added. @@ -106,7 +102,6 @@ The box view element on the GTK platform whose corner radius presence to set. The new corner radius presence value. Sets the corner radius presence. - To be added. @@ -132,7 +127,6 @@ The new corner radius presence value Sets the corner radius presence. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/NavigationPage.xml index d39ab335da1b..d67bafc071b4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/NavigationPage.xml @@ -14,7 +14,6 @@ Provides access to the back button icon on navigation pages on the GTK platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that stores the back button icon. - To be added. @@ -57,7 +55,6 @@ The navigation page on the GTK platform whose back button icon to get. Gets the icon for the back button. The path to the back button icon. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the navigation page on the GTK platform whose back button icon to get. Gets the path to the back button icon. The path to the back button icon. - To be added. @@ -106,7 +102,6 @@ The navigation page on the GTK platform whose back button icon to get. The new back button icon path. Sets the path to the back button icon. - To be added. @@ -132,7 +127,6 @@ The new back button icon path. Sets the path to the back button icon. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabPosition.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabPosition.xml index ae04921069a6..3c9561a18e06 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabPosition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabPosition.xml @@ -13,7 +13,6 @@ Enumerates tab positions on a tabbed page on the GTK platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabbedPage.xml index 558b0733ceab..eb071a86c826 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.GTKSpecific/TabbedPage.xml @@ -14,7 +14,6 @@ Controls the tab position on tabbed pages on the GTK platform. - To be added. @@ -38,7 +37,6 @@ The tabbed page on the GTK platform whose tab position to get. Gets the tab position. The tab position. - To be added. @@ -62,7 +60,6 @@ The platform configuration for the tabbed page on the GTK platform whose tab position to get. Gets the tab position. A fluent object on which the developer may make further method calls. - To be added. @@ -87,7 +84,6 @@ The tabbed page on the GTK platform whose tab position to set. The new tab position. Sets the tab position. - To be added. @@ -113,7 +109,6 @@ The new tab position. Sets the tab position. A fluent object on which the developer may make further method calls. - To be added. @@ -132,7 +127,6 @@ Backing store for the attached property that controls the tab position. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Application.xml index 132032703baf..a4e2f612e8a3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Application.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ Microsoft.Maui.Controls.BindablePropertyKey - To be added. - To be added. @@ -52,9 +48,6 @@ To be added. - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ To be added. - To be added. - To be added. - To be added. @@ -98,9 +88,6 @@ To be added. - To be added. - To be added. - To be added. @@ -121,9 +108,6 @@ To be added. - To be added. - To be added. - To be added. @@ -144,9 +128,6 @@ To be added. - To be added. - To be added. - To be added. @@ -167,9 +148,6 @@ To be added. - To be added. - To be added. - To be added. @@ -186,8 +164,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -215,8 +191,6 @@ To be added. To be added. - To be added. - To be added. @@ -244,9 +218,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -269,8 +240,6 @@ To be added. To be added. - To be added. - To be added. @@ -293,9 +262,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -318,8 +284,6 @@ To be added. To be added. - To be added. - To be added. @@ -342,9 +306,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -361,8 +322,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ButtonStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ButtonStyle.xml index d393b48b9178..66c676ab72f1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ButtonStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ButtonStyle.xml @@ -14,7 +14,6 @@ Enumerates button styles - To be added. @@ -33,7 +32,6 @@ Indicates the bottom button style. - To be added. @@ -52,7 +50,6 @@ Indicates the circle button style. - To be added. @@ -71,7 +68,6 @@ Indicates the default button style. - To be added. @@ -90,7 +86,6 @@ Indicates a selection button. - To be added. @@ -109,7 +104,6 @@ Indicates a text button. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Entry.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Entry.xml index 29c4325abcd8..bbd6e7909020 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Entry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Entry.xml @@ -14,7 +14,6 @@ Provides access to the font weight for entry controls on the Tizen platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls the font weight. - To be added. @@ -57,7 +55,6 @@ The entry element on the Tizen platform whose font weight icon to get. Returns the font weight for the entry text. The font weight for the entry text. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the entry element on the Tizen platform whose font weight icon to get. Returns a string representation of the font weight for the entry text. A string representation of the font weight for the entry text. - To be added. @@ -106,7 +102,6 @@ The entry element on the Tizen platform whose font weight icon to set. The new font weight value. Sets the font weight on the entry text. - To be added. @@ -132,7 +127,6 @@ The new font weight value. Sets the font weight on the entry text. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FocusDirection.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FocusDirection.xml index 7768372dc3cb..d8b111b20cab 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FocusDirection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FocusDirection.xml @@ -19,7 +19,6 @@ Contains constants for describing focus directions. - To be added. @@ -38,7 +37,6 @@ The constant for specifying the back focus direction. - To be added. @@ -57,7 +55,6 @@ The constant for specifying the down focus direction. - To be added. @@ -76,7 +73,6 @@ The constant for specifying the forward focus direction. - To be added. @@ -95,7 +91,6 @@ The constant for specifying the left focus direction. - To be added. @@ -114,7 +109,6 @@ The constant for specifying no focus direction. - To be added. @@ -133,7 +127,6 @@ The constant for specifying the right focus direction. - To be added. @@ -152,7 +145,6 @@ The constant for specifying the up focus direction. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FontWeight.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FontWeight.xml index ae6a8f9430e0..87a7038a812b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FontWeight.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/FontWeight.xml @@ -14,7 +14,6 @@ Contains constants for font weights. - To be added. @@ -33,7 +32,6 @@ The constant for specifying the black font weight. - To be added. @@ -52,7 +50,6 @@ The constant for specifying the bold font weight. - To be added. @@ -71,7 +68,6 @@ The constant for specifying the book font weight. - To be added. @@ -90,7 +86,6 @@ The constant for specifying the extra black font weight. - To be added. @@ -109,7 +104,6 @@ The constant for specifying the light font weight. - To be added. @@ -128,7 +122,6 @@ The constant for specifying the medium font weight. - To be added. @@ -147,7 +140,6 @@ The constant for specifying no font weight. - To be added. @@ -166,7 +158,6 @@ The constant for specifying the normal, or default, font weight. - To be added. @@ -185,7 +176,6 @@ The constant for specifying the semibold font weight. - To be added. @@ -204,7 +194,6 @@ The constant for specifying the thin font weight. - To be added. @@ -223,7 +212,6 @@ The constant for specifying the ultrabold font weight. - To be added. @@ -242,7 +230,6 @@ The constant for specifying the ultralight font weight. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Image.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Image.xml index 5151285545f2..21018e103a2c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Image.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Image.xml @@ -14,7 +14,6 @@ Provides access to the blend color for images on the Tizen platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls the blend color. - To be added. @@ -50,8 +48,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -75,7 +71,6 @@ The image on the Tizen platform whose back button icon to get. Returns the blend color for the image. The blend color for the image. - To be added. @@ -99,7 +94,6 @@ The platform configuration for the image on the Tizen platform whose blend color to get. Returns the blend color for the image. The blend color for the image. - To be added. @@ -120,9 +114,6 @@ To be added. - To be added. - To be added. - To be added. @@ -143,9 +134,6 @@ To be added. - To be added. - To be added. - To be added. @@ -170,7 +158,6 @@ To be added. The new blend color value. Sets the blend color. - To be added. @@ -196,7 +183,6 @@ The new blend color value. Sets the blend color. A fluent object on which the developer may make further method calls. - To be added. @@ -219,8 +205,6 @@ To be added. To be added. - To be added. - To be added. @@ -243,9 +227,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Label.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Label.xml index 080b7f67df3d..cfa20fcac72d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Label.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Label.xml @@ -14,7 +14,6 @@ Provides access to the font weight for labels on the Tizen platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls the font weight. - To be added. @@ -57,7 +55,6 @@ The label element on the Tizen platform whose font weight icon to get. Returns the font weight for the label text. The font weight for the label text. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the label element on the Tizen platform whose font weight icon to get. Returns a string representation of the font weight for the label text. A string representation of the font weight for the label text. - To be added. @@ -106,7 +102,6 @@ The label element on the Tizen platform whose font weight icon to set. The new font weight value. Sets the font weight on the label text. - To be added. @@ -132,7 +127,6 @@ The new font weight value. Sets the font weight on the label text. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/NavigationPage.xml index fc147e40e5e1..16338e25e373 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/NavigationPage.xml @@ -14,7 +14,6 @@ Provides access to the bread crumb bar for navigation pages on the Tizen platform. - To be added. @@ -39,7 +38,6 @@ Returns a Boolean value that tells whether the navigation page has a bread crumb bar. if the navigation page has a bread crumb bar. Otherwise, . - To be added. @@ -64,7 +62,6 @@ Returns a Boolean value that tells whether the navigation page has a bread crumb bar. if the navigation page has a bread crumb bar. Otherwise, . - To be added. @@ -83,7 +80,6 @@ Backing store for the attached property that represents whether the navigation page has a bread crumb bar. - To be added. @@ -108,7 +104,6 @@ The navigation page on the Tizen platform whose font weight icon to set. The new bread crumb bar presence value. Sets a Boolean value that tells whether the navigation page has a bread crumb bar. - To be added. @@ -134,7 +129,6 @@ The new bread crumb bar presence value. Sets a Boolean value that tells whether the navigation page has a bread crumb bar. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Page.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Page.xml index 723854bca984..c20be22f4e56 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Page.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Page.xml @@ -14,7 +14,6 @@ Provides access to the bread crumb bar for pages on the Tizen platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that represents bread crumb bar value. - To be added. @@ -57,7 +55,6 @@ The page whose bread crumb representation to get. Returns the breadcrumb representation for a page. The breadcrumb representation for the page. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the page whose bread crumb representation to get. Returns the breadcrumb representation for a page. The breadcrumb representation for the page. - To be added. @@ -106,7 +102,6 @@ The page whose bread crumb value to set. The new bread crumb value. Sets the bread crumb value for the page. - To be added. @@ -132,7 +127,6 @@ The new bread crumb value. Sets the bread crumb value for the page. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBar.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBar.xml index f1b3ccb74fa6..7c2fb64958ff 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBar.xml @@ -14,7 +14,6 @@ Provides access to the pulsing status for progress bars. - To be added. @@ -39,7 +38,6 @@ Returns if the progress bar is pulsing. Otherwise, returns . if the progress bar is pulsing. Otherwise, . - To be added. @@ -64,7 +62,6 @@ Returns if the progress bar is pulsing. Otherwise, returns . if the progress bar is pulsing. Otherwise, . - To be added. @@ -83,7 +80,6 @@ Backing store for the attached property that controls the pulsing status of the progress bar. - To be added. @@ -109,7 +105,6 @@ to cause the progress bar is pulsing. Otherwise, . Turns pulsing on or off. - To be added. @@ -136,7 +131,6 @@ to cause the progress bar is pulsing. Otherwise, . Turns pulsing on or off. A fluent object on which the developer can make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBarStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBarStyle.xml index 0b30482357bf..612c3cffed60 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBarStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/ProgressBarStyle.xml @@ -14,7 +14,6 @@ Enumerates visual styles for progress bars. - To be added. @@ -33,7 +32,6 @@ Indicates the default progress bar style. - To be added. @@ -52,7 +50,6 @@ Indicates the pending style, to communicate that a progress estimate has not yet been made. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Switch.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Switch.xml index a4ada467b47f..e4e96ef288e4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Switch.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/Switch.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -52,9 +48,6 @@ To be added. - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ To be added. - To be added. - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/SwitchStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/SwitchStyle.xml index 5e92527b57bf..350cf76f6bac 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/SwitchStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/SwitchStyle.xml @@ -14,7 +14,6 @@ Enumerates visual styles for switches. - To be added. @@ -33,7 +32,6 @@ Indicates a checkbox UI. - To be added. @@ -52,7 +50,6 @@ Indicates a favorite, or star, UI. - To be added. @@ -69,8 +66,6 @@ System.String - To be added. - To be added. @@ -87,8 +82,6 @@ System.String - To be added. - To be added. @@ -107,7 +100,6 @@ Indicates a toggle UI. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/TabbedPageStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/TabbedPageStyle.xml index d22553f7d3e3..d6c0d99045f4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/TabbedPageStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific/TabbedPageStyle.xml @@ -14,7 +14,6 @@ Enumerates tab bar styles for a tabbed page. - To be added. @@ -33,7 +32,6 @@ Indicates the default tab bar style. - To be added. @@ -52,7 +50,6 @@ Indicates a tab bar with no title. - To be added. @@ -71,7 +68,6 @@ Indicates a tab bar with a title. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml index 7d910fa3f607..bbb49527995c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Application.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -76,8 +68,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/CollapseStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/CollapseStyle.xml index fd7991417229..e55d9de90175 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/CollapseStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/CollapseStyle.xml @@ -13,7 +13,6 @@ Enumerates collapse styles for master-detail pages. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/FlyoutPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/FlyoutPage.xml index 36f8d3afa1a5..92e6657c6afe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/FlyoutPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/FlyoutPage.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -59,9 +54,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -78,8 +70,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -96,8 +86,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -118,9 +106,6 @@ To be added. - To be added. - To be added. - To be added. @@ -141,9 +126,6 @@ To be added. - To be added. - To be added. - To be added. @@ -164,9 +146,6 @@ To be added. - To be added. - To be added. - To be added. @@ -189,8 +168,6 @@ To be added. To be added. - To be added. - To be added. @@ -213,8 +190,6 @@ To be added. To be added. - To be added. - To be added. @@ -237,9 +212,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -260,9 +232,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/InputView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/InputView.xml index e00e274e892e..e8cd12c82339 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/InputView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/InputView.xml @@ -14,7 +14,6 @@ Provides access to reading order detection on the Windows platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls whether the reading order is detected from the input view's content. - To be added. @@ -57,7 +55,6 @@ The input view element whose reading order detection behavior to get. Returns a Boolean value that tells whether the reading order is detected from the input view's content. A Boolean value that tells whether the reading order is detected from the input view's content. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the input view element whose reading order detection behavior to get. Returns a Boolean value that tells whether the reading order is detected from the input view's content. A Boolean value that tells whether the reading order is detected from the input view's content. - To be added. @@ -107,7 +103,6 @@ to detect the reading order from the content. Otherwise, . Sets a Boolean value that controls whether the reading order is detected from the input view's content. - To be added. @@ -134,7 +129,6 @@ to detect the reading order from the content. Otherwise, . Sets a Boolean value that controls whether the reading order is detected from the input view's content. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Label.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Label.xml index ea315e74629b..28d0e1a45b8d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Label.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/Label.xml @@ -14,7 +14,6 @@ Provides access to reading order detection on the Windows platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that controls whether the reading order is detected from the label's content. - To be added. @@ -57,7 +55,6 @@ The label element whose reading order detection behavior to get. Returns a Boolean value that tells whether the reading order is detected from the label's content. A Boolean value that tells whether the reading order is detected from the label's content. - To be added. @@ -81,7 +78,6 @@ The platform configuration for the label element whose reading order detection behavior to get. Returns a Boolean value that tells whether the reading order is detected from the label's content. A Boolean value that tells whether the reading order is detected from the label's content. - To be added. @@ -107,7 +103,6 @@ to detect the reading order from the content. Otherwise, . Sets a Boolean value that controls whether the reading order is detected from the label's content. - To be added. @@ -134,7 +129,6 @@ to detect the reading order from the content. Otherwise, . Sets a Boolean value that controls whether the reading order is detected from the label's content. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListView.xml index a40f74da52a7..a9ab8b0a705f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListView.xml @@ -14,7 +14,6 @@ Platform-specific properties for list view controls on UWP. - To be added. @@ -37,8 +36,6 @@ The element whose selection mode to get. Returns the selection mode for the element. - To be added. - To be added. @@ -61,8 +58,6 @@ The element whose selection mode to get. Returns the selection mode for the element. - To be added. - To be added. @@ -81,7 +76,6 @@ Backing store for the selection mode attached property. - To be added. @@ -106,7 +100,6 @@ The element whose selectio mode to set. The new selection mode value. Sets the selection mode for the element. - To be added. @@ -131,8 +124,6 @@ The element whose selectio mode to set. The new selection mode value. Sets the selection mode for the element. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListViewSelectionMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListViewSelectionMode.xml index f0343cdf130d..cdfbb98a045e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListViewSelectionMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ListViewSelectionMode.xml @@ -13,7 +13,6 @@ Selection modes for list view controls on UWP. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/RefreshView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/RefreshView.xml index 6b697c72a49d..e181af08ef9b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/RefreshView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/RefreshView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -76,8 +68,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/SearchBar.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/SearchBar.xml index e2f24c55f708..801d68dae099 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/SearchBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/SearchBar.xml @@ -14,7 +14,6 @@ Provides control over the spellchecker on search bars. - To be added. @@ -37,7 +36,6 @@ The platform configuration for the search bar element. Disables the spellchecker. - To be added. @@ -60,7 +58,6 @@ The platform configuration for the search bar element. Enables the spellchecker. - To be added. @@ -85,7 +82,6 @@ Returns a Boolean value that tells whether the spellchecker is enabled. if the spellchecker is enabled. Otherwise, . - To be added. @@ -110,7 +106,6 @@ Returns a Boolean value that tells whether the spellchecker is enabled. if the spellchecker is enabled. Otherwise, . - To be added. @@ -135,7 +130,6 @@ Returns a Boolean value that tells whether the spellchecker is enabled. if the spellchecker is enabled. Otherwise, . - To be added. @@ -154,7 +148,6 @@ Backing store for the attached property that turns the spellchecker on and off. - To be added. @@ -180,7 +173,6 @@ to turn the spellchecker on. to turn it off. Turns the spellchecker on and off. - To be added. @@ -207,7 +199,6 @@ to turn the spellchecker on. to turn it off. Turns the spellchecker on and off. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/TabbedPage.xml index 008144a53283..09ff5906effb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/TabbedPage.xml @@ -14,7 +14,6 @@ Provides control over header icons on the Windows platform. - To be added. @@ -37,7 +36,6 @@ The platform configuration for the element on which to perform the operation. Disables header icons. - To be added. @@ -60,7 +58,6 @@ The platform configuration for the element on which to perform the operation. Enables header icons. - To be added. @@ -85,7 +82,6 @@ Returns a Boolean value that tells whether header icons are enabled. if header icons are enabled. Otherwise, . - To be added. @@ -110,7 +106,6 @@ Returns a Boolean value that tells whether header icons are enabled. if header icons are enabled. Otherwise, . - To be added. @@ -134,7 +129,6 @@ The element on which to perform the operation. Returns the size of header icons. The size of header icons. - To be added. @@ -158,7 +152,6 @@ The platform configuration for the element on which to perform the operation. Returns the size of header icons. The size of header icons. - To be added. @@ -177,7 +170,6 @@ Backing store for the attached property that enables and disables header icons. - To be added. @@ -196,7 +188,6 @@ Backing store for the attached property that controls the size of header icons. - To be added. @@ -221,7 +212,6 @@ Returns a Boolean value that tells whether header icons are enabled. if header icons are enabled. Otherwise, . - To be added. @@ -247,7 +237,6 @@ to enable header icons. to disable them. Turns header icons on and off. - To be added. @@ -274,7 +263,6 @@ to enable header icons. to disable them. Turns header icons on and off. A fluent object on which the developer may make further method calls. - To be added. @@ -299,7 +287,6 @@ The element on which to perform the operation. The new header icon size. Specifies the size of header icons. - To be added. @@ -325,7 +312,6 @@ The new header icon size. Specifies the size of header icons. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ToolbarPlacement.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ToolbarPlacement.xml index 374d59eda43c..b020ea3a8340 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ToolbarPlacement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ToolbarPlacement.xml @@ -13,7 +13,6 @@ Enumerates toolbar positions for pages on the Windows platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/VisualElement.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/VisualElement.xml index 576accc4e896..da5417cef0fc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/VisualElement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/VisualElement.xml @@ -14,7 +14,6 @@ Provides access to platform-specific features of visual elements on the Windows platform. - To be added. @@ -33,7 +32,6 @@ Backing store for the attached property that gets and sets the horizontal offset from the nominal position to use for displaying the access key tip. - To be added. @@ -52,7 +50,6 @@ Backing store for the attached property that gets and sets the nominal position to use for displaying the access key tip. - To be added. @@ -71,7 +68,6 @@ Backing store for the attached property that gets and sets the access key. - To be added. @@ -90,7 +86,6 @@ Backing store for the attached property that gets and sets the vertical offset from the nominal position to use for displaying the access key tip. - To be added. @@ -114,7 +109,6 @@ The element for which to get the access key. Returns the access key value. The access key value. - To be added. @@ -138,7 +132,6 @@ The platform configuration for the element for which to get the access key. Returns the access key value. The access key value. - To be added. @@ -162,7 +155,6 @@ The element for which to get the horizontal offset. Gets the horizontal offset from the nominal position to use for displaying the access key tip. The horizontal offset from the nominal position to use for displaying the access key tip. - To be added. @@ -186,7 +178,6 @@ The platform configuration for the element for which to get the horizontal offset. Gets the horizontal offset from the nominal position to use for displaying the access key tip. The horizontal offset from the nominal position to use for displaying the access key tip. - To be added. @@ -210,7 +201,6 @@ The element for which to get the access key placement. Gets the nominal position to use for displaying the access key tip. The nominal position to use for displaying the access key tip. - To be added. @@ -234,7 +224,6 @@ The platform configuration for the element for which to get the access key placement. Gets the nominal position to use for displaying the access key tip. The nominal position to use for displaying the access key tip. - To be added. @@ -258,7 +247,6 @@ The element for which to get the vertical offset. Gets the vertical offset from the nominal position to use for displaying the access key tip. The vertical offset from the nominal position to use for displaying the access key tip. - To be added. @@ -282,7 +270,6 @@ The platform configuration for the element for which to get the vertical offset. Gets the vertical offset from the nominal position to use for displaying the access key tip. The vertical offset from the nominal position to use for displaying the access key tip. - To be added. @@ -307,7 +294,6 @@ Returns a Boolean value that controls whether legacy color mode is enabled. if legacy color mode is enabled. Otherwise, . - To be added. @@ -332,7 +318,6 @@ Returns a Boolean value that controls whether legacy color mode is enabled. if legacy color mode is enabled. Otherwise, . - To be added. @@ -351,7 +336,6 @@ Backing store for the attached property that controls the legacy color mode. - To be added. @@ -376,7 +360,6 @@ The element for which to set the access key string. The new access key value. Sets the value that the access key displays. - To be added. @@ -402,7 +385,6 @@ The new access key value. Sets the value that the access key displays. A fluent object on which the developer may make furter method calls. - To be added. @@ -427,7 +409,6 @@ The element for which to set the horizontal access key offset. The new offset value. Sets the horizontal offset from the nominal position to use for displaying the access key. - To be added. @@ -453,7 +434,6 @@ The new offset value. Sets the horizontal offset from the nominal position to use for displaying the access key. A fluent object on which the developer may make furter method calls. - To be added. @@ -478,7 +458,6 @@ The element for which to set the horizontal access key placement. The new placement value. Sets nominal position to use for displaying the access key. - To be added. @@ -504,7 +483,6 @@ The new placement value. Sets nominal position to use for displaying the access key. A fluent object on which the developer may make furter method calls. - To be added. @@ -529,7 +507,6 @@ The element for which to set the vertical access key offset. The new offset value. Sets the vertical offset from the nominal position to use for displaying the access key. - To be added. @@ -555,7 +532,6 @@ The new offset value. Sets the vertical offset from the nominal position to use for displaying the access key. A fluent object on which the developer may make furter method calls. - To be added. @@ -581,7 +557,6 @@ to enable legacy color mode. Otherwise, . Turns the legacy color mode on and off. - To be added. @@ -608,7 +583,6 @@ to enable legacy color mode. Otherwise, . Turns the legacy color mode on and off. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/WebView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/WebView.xml index 51481fe951d0..b8c253fe4253 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/WebView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/WebView.xml @@ -78,7 +78,6 @@ Backing store for the attached property that controls whether the web view allows JavaScript alerts. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Application.xml index c15e67bdcad1..fac4fed617f7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Application.xml @@ -14,7 +14,6 @@ Provides control over simultaneous recognition for pan gesture recognizers. - To be added. @@ -32,7 +31,6 @@ Backing store for the attached property that controls whether named font sizes should participate in the device's accessibility scaling. - To be added. @@ -56,7 +54,6 @@ Returns a Boolean value that tells whether named font sizes should participate in the device's accessibility scaling. for device's accessibility scaling. Otherwise, . - To be added. @@ -80,7 +77,6 @@ Returns a Boolean value that tells whether named font sizes should participate in the device's accessibility scaling. for device's accessibility scaling. Otherwise, . - To be added. @@ -101,9 +97,6 @@ The element on which to perform the operation. - To be added. - To be added. - To be added. @@ -124,9 +117,6 @@ The platform configuration for the element on which to perform the operation. - To be added. - To be added. - To be added. @@ -151,7 +141,6 @@ Returns a Boolean value that tells whether the pan gesture recognizer should participate in simultaneous recognition of gestures. for simultaneous recognition. Otherwise, . - To be added. @@ -176,7 +165,6 @@ Returns a Boolean value that tells whether the pan gesture recognizer should participate in simultaneous recognition of gestures. for simultaneous recognition. Otherwise, . - To be added. @@ -193,8 +181,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -213,7 +199,6 @@ Backing store for the attached property that controls whether the pan gesture recognizer should participate in simultaneous recognition of gestures. - To be added. @@ -238,7 +223,6 @@ for device's accessibility scaling. Otherwise, . Sets a Boolean value that controls whether named font sizes should participate in the device's accessibility scaling. - To be added. @@ -264,7 +248,6 @@ for device's accessibility scaling. Otherwise, . Sets a Boolean value that controls whether named font sizes should participate in the device's accessibility scaling. A fluent object on which the developer may make further method calls. - To be added. @@ -287,8 +270,6 @@ The element on which to perform the operation. To be added. - To be added. - To be added. @@ -311,9 +292,7 @@ The platform configuration for the element on which to perform the operation. To be added. - To be added. A fluent object on which the developer may make further method calls. - To be added. @@ -339,7 +318,6 @@ for simultaneous recognition. Otherwise, . Sets a Boolean value that controls whether the pan gesture recognizer should participate in simultaneous recognition of gestures. - To be added. @@ -366,7 +344,6 @@ for simultaneous recognition. Otherwise, . Sets a Boolean value that controls whether the pan gesture recognizer should participate in simultaneous recognition of gestures. A fluent object on which the developer may make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/BlurEffectStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/BlurEffectStyle.xml index 175849f375a5..6613f526c443 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/BlurEffectStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/BlurEffectStyle.xml @@ -13,7 +13,6 @@ Enumerates blur effect styles. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Cell.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Cell.xml index 8ef31f5c664c..bbca26d56fd4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Cell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Cell.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -54,7 +49,6 @@ The backing store for the field. - To be added. @@ -75,9 +69,6 @@ To be added. - To be added. - To be added. - To be added. @@ -100,8 +91,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +113,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/DatePicker.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/DatePicker.xml index 27ab8edac97a..f2833ebe6197 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/DatePicker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/DatePicker.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -59,8 +54,6 @@ To be added. To be added. - To be added. - To be added. @@ -83,9 +76,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -106,9 +96,6 @@ To be added. - To be added. - To be added. - To be added. @@ -125,8 +112,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Entry.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Entry.xml index b0d682ef7b18..50874b8676fc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Entry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Entry.xml @@ -40,7 +40,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether the entry control automatically adjusts the font size. A Boolean value that tells whether the entry control automatically adjusts the font size. - To be added. @@ -59,7 +58,6 @@ Backing store for the attached property that controls whether the entry control automatically adjusts the font size. - To be added. @@ -78,7 +76,6 @@ Backing store for the attached property that controls the color of the cursor. - To be added. @@ -102,7 +99,6 @@ The platform specific configuration that contains the element on which to perform the operation. Disables automatic font size adjustment on the platform-specific element. The updated configuration object on which developers can make successive method calls. - To be added. @@ -126,7 +122,6 @@ The platform specific configuration that contains the element on which to perform the operation. Enables automatic font size adjustment on the platform-specific element. The updated configuration object on which developers can make successive method calls. - To be added. @@ -150,7 +145,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether the entry control automatically adjusts the font size of text that the user enters. A Boolean value that tells whether the entry control automatically adjusts the font size of text that the user enters. - To be added. @@ -174,7 +168,6 @@ The element whose cursor color to get. Gets the color of the cursor. The color of the cursor. - To be added. @@ -198,7 +191,6 @@ The platform configuration for the element whose cursor color to get. Gets the color of the cursor. The color of the cursor. - To be added. @@ -223,7 +215,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that tells whether the entry control automatically adjusts the font size of text that the user enters. - To be added. @@ -249,7 +240,6 @@ The new property value to assign. Sets a Boolean value that tells whether automatic font size adjusmtent is enabled on the element. The updated configuration object on which developers can make successive method calls. - To be added. @@ -274,7 +264,6 @@ The element whose cursor color to Set. The new cursor color. Sets the color of the cursor. - To be added. @@ -300,7 +289,6 @@ The new cursor color. Sets the color of the cursor and returns a fluent object. A fluent object on which the developer can make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/FlyoutPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/FlyoutPage.xml index 4f5566be0cf7..f6b986e52b0c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/FlyoutPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/FlyoutPage.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -52,9 +48,6 @@ To be added. - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ To be added. - To be added. - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/GroupHeaderStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/GroupHeaderStyle.xml index 35c81a7a6ae6..753c16f26191 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/GroupHeaderStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/GroupHeaderStyle.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/LargeTitleDisplayMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/LargeTitleDisplayMode.xml index ac54e0464a8a..d3e0b9307c25 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/LargeTitleDisplayMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/LargeTitleDisplayMode.xml @@ -13,7 +13,6 @@ Enumerates preferences for displaying large titles. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ListView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ListView.xml index 9449e30779c6..b0857c77632a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ListView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ListView.xml @@ -14,7 +14,6 @@ Provides access to the separator style for list views on the iOS platform. - To be added. @@ -35,9 +34,6 @@ To be added. - To be added. - To be added. - To be added. @@ -58,9 +54,6 @@ To be added. - To be added. - To be added. - To be added. @@ -81,9 +74,6 @@ To be added. - To be added. - To be added. - To be added. @@ -107,7 +97,6 @@ The list view element whose separator style to get. Returns the separator style for a list view. The separator style for a list view. - To be added. @@ -131,7 +120,6 @@ The platform configuration for the list view element whose separator style to get. Returns the separator style for a list view. The separator style for a list view. - To be added. @@ -148,8 +136,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -170,9 +156,6 @@ To be added. - To be added. - To be added. - To be added. @@ -190,7 +173,6 @@ The backing store for the field. - To be added. @@ -209,7 +191,6 @@ Backing store for the attached property that controls the separator style. - To be added. @@ -232,8 +213,6 @@ To be added. To be added. - To be added. - To be added. @@ -256,9 +235,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -281,8 +257,6 @@ To be added. To be added. - To be added. - To be added. @@ -305,9 +279,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -332,7 +303,6 @@ The list view element whose separator style to set The new separator style value. Sets the separator style for a list view. - To be added. @@ -358,7 +328,6 @@ The new separator style value. Sets the separator style for a list view. A fluent object on which the developer can make further method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/NavigationPage.xml index f167ff61cfca..311b9c1095cf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/NavigationPage.xml @@ -14,7 +14,6 @@ The navigation page instance that Microsoft.Maui.Controls created on the iOS platform. - To be added. @@ -38,7 +37,6 @@ The platform specific configuration that contains the element on which to perform the operation. Makes the navigation bar opaque on the platform-specific element. The updated configuration object on which developers can make successive method calls. - To be added. @@ -62,7 +60,6 @@ The platform specific configuration that contains the element on which to perform the operation. Makes the navigation bar translucent on the platform-specific element. The updated configuration object on which developers can make successive method calls. - To be added. @@ -86,7 +83,6 @@ The element for which to return whether the navigation bar separator is hidden. Returns if the separator is hidden. Otherwise, returns . see langword="true" /> if the separator is hidden. Otherwise, - To be added. @@ -110,7 +106,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether the navigation bar on the platform-specific navigation page is translucent. A Boolean value that tells whether the navigation bar on the platform-specific navigation page is translucent. - To be added. @@ -134,7 +129,6 @@ The element whose large title preference to get. Returns the large title preference of . The large title preference of . - To be added. @@ -158,7 +152,6 @@ The platform specific element on which to perform the operation. Returns a value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. A value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. - To be added. @@ -182,7 +175,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. A value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. - To be added. @@ -207,7 +199,6 @@ Returns if the separator is hidden. Otherwise, returns . if the separator is hidden. Otherwise, - To be added. @@ -226,7 +217,6 @@ Backing store for the attached property that controls whether the navigation bar separator is hidden. - To be added. @@ -250,7 +240,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether the navigation bar on the platform-specific navigation page is translucent. A Boolean value that tells whether the navigation bar on the platform-specific navigation page is translucent. - To be added. @@ -269,7 +258,6 @@ Backing store for the method. - To be added. @@ -293,7 +281,6 @@ The element whose large title preference to get. Returns a value that indicates the element's preference for large titles. A value that indicates the element's preference for large titles. - To be added. @@ -312,7 +299,6 @@ Backing store for the attached property that controls the navigation page's preference for large titles. - To be added. @@ -338,7 +324,6 @@ to hide the separator. Otherwise, . Developers set this to to hide the separator. Otherwise, . - To be added. @@ -365,7 +350,6 @@ to hide the separator. Otherwise, . Developers set this to to hide the separator. Otherwise, . A fluent object on which the developer can make further method calls. - To be added. @@ -390,7 +374,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that controls whether the navigation bar on the platform-specific navigation page is translucent. - To be added. @@ -416,7 +399,6 @@ The new property value to assign. Sets a Boolean value that controls whether the navigation bar on the platform-specific navigation page is translucent. The updated configuration object on which developers can make successive method calls. - To be added. @@ -441,7 +423,6 @@ The element whose preference to set. The new large title preference behavior. Sets the large title preference behavior of to . - To be added. @@ -466,8 +447,6 @@ The element whose preference to set. The new large title preference behavior. Sets the large title preference behavior of to . - To be added. - To be added. @@ -492,7 +471,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. - To be added. @@ -518,7 +496,6 @@ The new property value to assign. Sets a value that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. The updated configuration object on which developers can make successive method calls. - To be added. @@ -537,7 +514,6 @@ Backing store for the attached property that controls whether the status bar text color is adjusted to match the luminosity of the navigation bar for the platform-specific navigation page. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Picker.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Picker.xml index 2f84efba3b08..04156aa25c18 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Picker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Picker.xml @@ -14,7 +14,6 @@ The picker instance that Microsoft.Maui.Controls created on the iOS platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns a value that tells whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. A value that tells whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. - To be added. @@ -63,7 +61,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a value that controls whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. - To be added. @@ -89,7 +86,6 @@ The new property value to assign. Sets a value that controls whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. The updated configuration object on which developers can make successive method calls. - To be added. @@ -113,7 +109,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a value that tells whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. A value that tells whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. - To be added. @@ -132,7 +127,6 @@ Backing store for the attached property that controls whether elements in the picker are continuously updated while scrolling or updated once after scrolling has completed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ScrollView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ScrollView.xml index 102749951254..30ecb793d7b4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ScrollView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/ScrollView.xml @@ -14,7 +14,6 @@ The scroll view instance that Microsoft.Maui.Controls created on the iOS platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. A Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. - To be added. @@ -63,7 +61,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. - To be added. @@ -89,7 +86,6 @@ The new property value to assign. Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. The updated configuration object, on which more methods may be called. - To be added. @@ -113,7 +109,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. A Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. - To be added. @@ -132,7 +127,6 @@ Backing store for the attached property that controls whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SearchBar.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SearchBar.xml index 891b54c5a12b..133d86960de1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SearchBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SearchBar.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -76,8 +68,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -100,8 +90,6 @@ To be added. To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SeparatorStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SeparatorStyle.xml index 7bd0db53e928..3d1a2e1e35ae 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SeparatorStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SeparatorStyle.xml @@ -13,7 +13,6 @@ Enumerates list view separator styles. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Slider.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Slider.xml index e98768c589c1..276849c4b2b9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Slider.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/Slider.xml @@ -14,7 +14,6 @@ Platform-specific functionality for sliders the iOS platform. - To be added. @@ -39,7 +38,6 @@ Returns a Boolean value that tells whether tapping on the slider will update its value. if tapping updates the value. Otherwise, . - To be added. @@ -64,7 +62,6 @@ Returns a Boolean value that tells whether tapping on the slider will update its value. if tapping updates the value. Otherwise, . - To be added. @@ -90,7 +87,6 @@ if tapping will update the value. Otherwise, . Sets a Boolean value that tells whether tapping on the slider will update its value. - To be added. @@ -117,7 +113,6 @@ if tapping will update the value. Otherwise, . Sets a Boolean value that tells whether tapping on the slider will update its value. A fluent object on which the developer may make more method calls. - To be added. @@ -136,7 +131,6 @@ Backing store for the attached property that controls whether tapping on the slider updates its value. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarHiddenMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarHiddenMode.xml index ea21ccf2a6aa..9ab5e5e8c0b1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarHiddenMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarHiddenMode.xml @@ -13,7 +13,6 @@ Enumerates status bar hiding behavior preferences. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarTextColorMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarTextColorMode.xml index 7d3363c6aae5..706a52f89202 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarTextColorMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/StatusBarTextColorMode.xml @@ -13,7 +13,6 @@ Enumerates text color adjustment options for the status bar. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SwipeView.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SwipeView.xml index ef0fd8b33ba9..254d8ad399a6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SwipeView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/SwipeView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -82,8 +74,6 @@ To be added. To be added. - To be added. - To be added. @@ -106,9 +96,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -125,8 +112,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml index 8fec1eea0d7c..2ad4bc8263d7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TabbedPage.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -82,8 +74,6 @@ To be added. To be added. - To be added. - To be added. @@ -106,9 +96,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -125,8 +112,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TimePicker.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TimePicker.xml index 14cdf8c52f5c..77677a1dbc14 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TimePicker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TimePicker.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -59,8 +54,6 @@ To be added. To be added. - To be added. - To be added. @@ -83,9 +76,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -106,9 +96,6 @@ To be added. - To be added. - To be added. - To be added. @@ -125,8 +112,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TranslucencyMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TranslucencyMode.xml index fa05da55d0a5..9cbac087040d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TranslucencyMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/TranslucencyMode.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIModalPresentationStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIModalPresentationStyle.xml index 206e5628494a..403a76fa852d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIModalPresentationStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIModalPresentationStyle.xml @@ -12,7 +12,6 @@ Enumerates valid modal presentation styles. - To be added. @@ -30,7 +29,6 @@ 2 - To be added. @@ -84,7 +82,6 @@ 3 - To be added. @@ -102,7 +99,6 @@ 4 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UISearchBarStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UISearchBarStyle.xml index c642c479c7d8..d2a43b68145d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UISearchBarStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UISearchBarStyle.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIStatusBarAnimation.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIStatusBarAnimation.xml index 4c4b410140a3..3aba58b45b32 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIStatusBarAnimation.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UIStatusBarAnimation.xml @@ -13,7 +13,6 @@ Enumerates animation styles for status bar updates. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UpdateMode.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UpdateMode.xml index b47d94d83331..98fe5b159563 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UpdateMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific/UpdateMode.xml @@ -13,7 +13,6 @@ Enumerates values that control whether elements in a picker are continuously updated while scrolling or updated once after scrolling has completed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationPage.xml index 3f501efdf6a7..aec9fa029402 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationPage.xml @@ -14,7 +14,6 @@ The navigation page instance that Microsoft.Maui.Controls created on the macOS platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns the NavigationTransitionStyle value that tells what transition is used when a page is popped from the navigation stack. The NavigationTransitionStyle value that tells the current transition when a page is popped from the navigation stack. - To be added. @@ -62,7 +60,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns the NavigationTransitionStyle value that tells what transition is used when a page is popped from the navigation stack. The NavigationTransitionStyle value that tells the current transition when a page is popped from the navigation stack. - To be added. @@ -86,7 +83,6 @@ The platform specific element on which to perform the operation. Returns the NavigationTransitionStyle value that tells what transition is used when a page is push on the navigation stack. The NavigationTransitionStyle value that tells the current transition when a page is pushed on the navigation stack. - To be added. @@ -110,7 +106,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns the NavigationTransitionStyle value that tells what transition is used when a page is pushed on the navigation stack. The NavigationTransitionStyle value that tells the current transition when a page is pushed on the navigation stack. - To be added. @@ -129,7 +124,6 @@ Backing store for the attached property that controls the transition style of the platform-specific navigation page when a page is popped from the navigation stack. - To be added. @@ -148,7 +142,6 @@ Backing store for the attached property that controls the transition style of the platform-specific navigation page when a page is pushed on the navigation stack. - To be added. @@ -173,7 +166,6 @@ The platform specific element on which to perform the operation. The new transition style. Sets the transition style which is used, when popping from the navigation stack. - To be added. @@ -198,7 +190,6 @@ The platform specific element on which to perform the operation. The new transition style. Sets the transition style which is used, when pushing pages on the navigation stack. - To be added. @@ -225,7 +216,6 @@ The new transition style when a page is pushed on the navigation stack. The new transition style when a page is popped from the navigation stack. Sets the transition style which is used, when popping and pushing pages on the navigation stack. - To be added. @@ -253,7 +243,6 @@ The new transition style when a page is popped from the navigation stack. Sets the transition style which is used, when popping and pushing pages on the navigation stack. The updated configuration object on which developers can make successive method calls. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationTransitionStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationTransitionStyle.xml index 9698ab10b391..edb754bf2374 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationTransitionStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/NavigationTransitionStyle.xml @@ -13,7 +13,6 @@ Enumerates navigation transition styles. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/Page.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/Page.xml index a868ded06a04..81a8e3ec0efe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/Page.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/Page.xml @@ -14,7 +14,6 @@ The page instance that Microsoft.Maui.Controls created on the macOS platform. - To be added. @@ -38,7 +37,6 @@ The platform specific element on which to perform the operation. Returns the tab order of the visual elements on a page as array. An array of VisualElement. - To be added. @@ -62,7 +60,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns the tab order of the visual elements on a page as array. An array of VisualElement. - To be added. @@ -93,7 +90,6 @@ The platform specific element on which to perform the operation. An array of VisualElement. Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key. - To be added. @@ -125,7 +121,6 @@ An array of VisualElement. Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key. The platform specific configuration that contains the element on which to perform the operation. - To be added. @@ -144,7 +139,6 @@ Backing store for the attached property that holds the tab order of the visual elements. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/TabbedPage.xml index 3cd419758a9f..e94af8a450f6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific/TabbedPage.xml @@ -14,7 +14,6 @@ The tabbed page instance that Microsoft.Maui.Controls created on the macOS platform. - To be added. @@ -37,8 +36,6 @@ The platform specific element on which to perform the operation. Returns a value that describes the way that tabs are displayed. - To be added. - To be added. @@ -61,8 +58,6 @@ The platform specific configuration that contains the element on which to perform the operation. Returns a value that describes the way that tabs are displayed. - To be added. - To be added. @@ -85,8 +80,6 @@ The platform specific configuration that contains the element on which to perform the operation. Hides the tabs on the tabbed page. - To be added. - To be added. @@ -111,8 +104,6 @@ The platform specific configuration that contains the element on which to perform the operation. The new property value to assign. Sets a value that controls the way that tabs are displayed. - To be added. - To be added. @@ -137,7 +128,6 @@ The platform specific element on which to perform the operation. The new property value to assign. Sets a value that controls the way that tabs are displayed. - To be added. @@ -160,8 +150,6 @@ The platform specific configuration that contains the element on which to perform the operation. Sets tab display to the default style. - To be added. - To be added. @@ -184,8 +172,6 @@ The platform specific configuration that contains the element on which to perform the operation. Sets tab display to the respond to user swipes. - To be added. - To be added. @@ -204,7 +190,6 @@ Backing store for the attached property that controls how tabs are displayed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml index 9edae711efa8..cc48984ef898 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml @@ -36,7 +36,6 @@ Creates a new Android marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/GTK.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/GTK.xml index a9dfcfcd58e6..6472f00233e4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/GTK.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/GTK.xml @@ -18,7 +18,6 @@ Marker class that identifies the Linux platform. - To be added. @@ -34,7 +33,6 @@ Creates a new GTK marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Tizen.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Tizen.xml index a392862a5f1a..8cd7945cdf2b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Tizen.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Tizen.xml @@ -36,7 +36,6 @@ Creates a new Tizen marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Windows.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Windows.xml index 0306da6bcb71..e7230e8f582f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Windows.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/Windows.xml @@ -36,7 +36,6 @@ Creates a new Windows marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml index 49c603e4f9f3..e96c7f5ab3e8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml @@ -36,7 +36,6 @@ Creates a new iOS marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/macOS.xml b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/macOS.xml index d991920f9ff1..4f9922c7bc4d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/macOS.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.PlatformConfiguration/macOS.xml @@ -34,7 +34,6 @@ Creates a new macOS marker class. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ArcSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ArcSegment.xml index 54313534b06b..c153564f14c3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ArcSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ArcSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -54,8 +50,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -72,9 +66,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -91,8 +82,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -109,9 +98,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -128,8 +114,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -146,9 +130,6 @@ System.Double - To be added. - To be added. - To be added. @@ -165,8 +146,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -188,9 +167,6 @@ Microsoft.Maui.Graphics.Size - To be added. - To be added. - To be added. @@ -207,8 +183,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -225,9 +199,6 @@ Microsoft.Maui.Controls.SweepDirection - To be added. - To be added. - To be added. @@ -244,8 +215,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/BezierSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/BezierSegment.xml index 768363fc3d6e..286fef18ec51 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/BezierSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/BezierSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -50,8 +46,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -68,9 +62,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -87,8 +78,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -105,9 +94,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -124,8 +110,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -142,9 +126,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -161,8 +142,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/CompositeTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/CompositeTransform.xml index 743fba948fb6..f58b993cdc6a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/CompositeTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/CompositeTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Double - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,9 +73,6 @@ System.Double - To be added. - To be added. - To be added. @@ -101,8 +89,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -119,9 +105,6 @@ System.Double - To be added. - To be added. - To be added. @@ -138,8 +121,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -156,9 +137,6 @@ System.Double - To be added. - To be added. - To be added. @@ -175,8 +153,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -193,9 +169,6 @@ System.Double - To be added. - To be added. - To be added. @@ -212,8 +185,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -230,9 +201,6 @@ System.Double - To be added. - To be added. - To be added. @@ -249,8 +217,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -267,9 +233,6 @@ System.Double - To be added. - To be added. - To be added. @@ -286,8 +249,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -304,9 +265,6 @@ System.Double - To be added. - To be added. - To be added. @@ -323,8 +281,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -341,9 +297,6 @@ System.Double - To be added. - To be added. - To be added. @@ -360,8 +313,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Ellipse.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Ellipse.xml index c4e49dbff3e8..3925f9573eaa 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Ellipse.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Ellipse.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/EllipseGeometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/EllipseGeometry.xml index f30195ecc3b8..90fc74d34003 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/EllipseGeometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/EllipseGeometry.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -50,8 +46,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -68,9 +62,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -87,8 +78,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -105,9 +94,6 @@ System.Double - To be added. - To be added. - To be added. @@ -124,8 +110,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -142,9 +126,6 @@ System.Double - To be added. - To be added. - To be added. @@ -161,8 +142,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/FillRule.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/FillRule.xml index 22aafbfab2cc..9a26b34af1f3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/FillRule.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/FillRule.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Geometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Geometry.xml index 0c6ccbdecd78..09e6037fd1aa 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Geometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Geometry.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryCollection.xml index 1473607ab11e..3be61f26fc4a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryCollection.xml @@ -15,8 +15,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryGroup.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryGroup.xml index acb447daf6cc..d5e7e95bdc99 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryGroup.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryGroup.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.Shapes.GeometryCollection - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,9 +78,6 @@ Microsoft.Maui.Controls.Shapes.FillRule - To be added. - To be added. - To be added. @@ -106,8 +94,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -124,8 +110,6 @@ System.EventHandler - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryHelper.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryHelper.xml index a1b551863b37..2ec2782dff51 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryHelper.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/GeometryHelper.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -50,8 +48,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -82,8 +78,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -106,9 +100,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -135,8 +126,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -165,8 +154,6 @@ To be added. To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Line.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Line.xml index d4854800346c..8737727436fe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Line.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Line.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ System.Double - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,9 +78,6 @@ System.Double - To be added. - To be added. - To be added. @@ -106,8 +94,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -124,9 +110,6 @@ System.Double - To be added. - To be added. - To be added. @@ -143,8 +126,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -161,9 +142,6 @@ System.Double - To be added. - To be added. - To be added. @@ -180,8 +158,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineGeometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineGeometry.xml index ffbe313b5cbc..028411f7cb5c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineGeometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineGeometry.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -66,9 +60,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -85,8 +76,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -103,9 +92,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -122,8 +108,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineSegment.xml index 034198ac84f3..ed641e0b9018 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/LineSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Matrix.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Matrix.xml index 10e51681c597..a2441006f14b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Matrix.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Matrix.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -46,8 +44,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -68,8 +64,6 @@ To be added. - To be added. - To be added. @@ -86,9 +80,6 @@ System.Double - To be added. - To be added. - To be added. @@ -105,9 +96,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -124,9 +112,6 @@ Microsoft.Maui.Controls.Shapes.Matrix - To be added. - To be added. - To be added. @@ -144,8 +129,6 @@ - To be added. - To be added. @@ -162,9 +145,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -181,9 +161,6 @@ System.Double - To be added. - To be added. - To be added. @@ -200,9 +177,6 @@ System.Double - To be added. - To be added. - To be added. @@ -219,9 +193,6 @@ System.Double - To be added. - To be added. - To be added. @@ -238,9 +209,6 @@ System.Double - To be added. - To be added. - To be added. @@ -263,9 +231,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -282,9 +247,6 @@ System.Double - To be added. - To be added. - To be added. @@ -301,9 +263,6 @@ System.Double - To be added. - To be added. - To be added. @@ -326,9 +285,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -349,8 +305,6 @@ To be added. - To be added. - To be added. @@ -371,8 +325,6 @@ To be added. - To be added. - To be added. @@ -397,8 +349,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -423,8 +373,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -445,8 +393,6 @@ To be added. - To be added. - To be added. @@ -469,8 +415,6 @@ To be added. To be added. - To be added. - To be added. @@ -497,8 +441,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -525,8 +467,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -549,8 +489,6 @@ To be added. To be added. - To be added. - To be added. @@ -568,8 +506,6 @@ - To be added. - To be added. @@ -592,8 +528,6 @@ To be added. To be added. - To be added. - To be added. @@ -616,8 +550,6 @@ To be added. To be added. - To be added. - To be added. @@ -638,9 +570,6 @@ To be added. - To be added. - To be added. - To be added. @@ -661,8 +590,6 @@ To be added. - To be added. - To be added. @@ -685,8 +612,6 @@ To be added. To be added. - To be added. - To be added. @@ -709,8 +634,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTransform.xml index 30d07e021830..2b274a77bb11 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ Microsoft.Maui.Controls.Shapes.Matrix - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTypeConverter.xml index c9c859c0d8e0..70b8567d4f30 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/MatrixTypeConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Path.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Path.xml index e42e41cabe18..e12a827c2509 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Path.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Path.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -55,9 +51,6 @@ Microsoft.Maui.Controls.Shapes.Geometry - To be added. - To be added. - To be added. @@ -74,8 +67,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -92,9 +83,6 @@ Microsoft.Maui.Controls.Shapes.Transform - To be added. - To be added. - To be added. @@ -111,8 +99,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigure.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigure.xml index e47d5690d3f3..4319165fb6fc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigure.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigure.xml @@ -21,8 +21,6 @@ - To be added. - To be added. @@ -36,8 +34,6 @@ - To be added. - To be added. @@ -58,8 +54,6 @@ - To be added. - To be added. @@ -80,8 +74,6 @@ - To be added. - To be added. @@ -98,9 +90,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -117,8 +106,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -135,9 +122,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -154,8 +138,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -172,9 +154,6 @@ Microsoft.Maui.Controls.Shapes.PathSegmentCollection - To be added. - To be added. - To be added. @@ -191,8 +170,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -209,9 +186,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -228,8 +202,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollection.xml index c2226f8c65cb..0fd2d2425b41 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollection.xml @@ -15,8 +15,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollectionConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollectionConverter.xml index 4143fe1f05d9..e725d5fc281b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollectionConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathFigureCollectionConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. @@ -74,8 +67,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometry.xml index 27f9d11cb2bc..cfa95573dd43 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometry.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -51,8 +47,6 @@ To be added. - To be added. - To be added. @@ -72,8 +66,6 @@ To be added. To be added. - To be added. - To be added. @@ -95,9 +87,6 @@ Microsoft.Maui.Controls.Shapes.PathFigureCollection - To be added. - To be added. - To be added. @@ -114,8 +103,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -132,9 +119,6 @@ Microsoft.Maui.Controls.Shapes.FillRule - To be added. - To be added. - To be added. @@ -151,8 +135,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometryConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometryConverter.xml index 63d7937efabe..08dc1b2e0fc9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometryConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathGeometryConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegment.xml index 5b4a220bb11f..947bf50f3db9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegment.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ - To be added. - To be added. @@ -53,8 +49,6 @@ - To be added. - To be added. @@ -75,8 +69,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegmentCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegmentCollection.xml index dc28b8ab1e88..96ce2474d2b3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegmentCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PathSegmentCollection.xml @@ -15,8 +15,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineCap.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineCap.xml index 2b29f2acc0d9..d3e3dd9488f0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineCap.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineCap.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineJoin.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineJoin.xml index c4329d51f3f9..25e58772413f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineJoin.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PenLineJoin.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. @@ -66,7 +62,6 @@ 2 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PointCollectionConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PointCollectionConverter.xml index 5ca551a25ea4..8bb8afd23308 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PointCollectionConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PointCollectionConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyBezierSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyBezierSegment.xml index 7f0cc9040eef..b0aa30f66771 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyBezierSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyBezierSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ Microsoft.Maui.Controls.Shapes.PointCollection - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml index cf384bf0a931..a70a2e32e939 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyLineSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ Microsoft.Maui.Controls.Shapes.PointCollection - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyQuadraticBezierSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyQuadraticBezierSegment.xml index 3cdde7bc8a1a..833c60c9be7c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyQuadraticBezierSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/PolyQuadraticBezierSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ Microsoft.Maui.Controls.Shapes.PointCollection - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polygon.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polygon.xml index 9c3fc83db7b3..b7be70891cce 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polygon.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polygon.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.Shapes.FillRule - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,9 +78,6 @@ Microsoft.Maui.Controls.Shapes.PointCollection - To be added. - To be added. - To be added. @@ -106,8 +94,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polyline.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polyline.xml index c1bb5fa62c44..d9e5b29d8a7f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polyline.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Polyline.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.Shapes.FillRule - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,9 +78,6 @@ Microsoft.Maui.Controls.Shapes.PointCollection - To be added. - To be added. - To be added. @@ -106,8 +94,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/QuadraticBezierSegment.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/QuadraticBezierSegment.xml index cea402d748f8..ce8d11cb1e75 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/QuadraticBezierSegment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/QuadraticBezierSegment.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -66,9 +60,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -85,8 +76,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -103,9 +92,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -122,8 +108,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Rectangle.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Rectangle.xml index b9fe4bcbb1f8..1013c1f5547b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Rectangle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Rectangle.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ System.Double - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,9 +78,6 @@ System.Double - To be added. - To be added. - To be added. @@ -106,8 +94,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RectangleGeometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RectangleGeometry.xml index 9cd38002018e..9da381ff67cc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RectangleGeometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RectangleGeometry.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ Microsoft.Maui.Controls.Rect - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RotateTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RotateTransform.xml index ef3457d3ceff..efb9abce7fb3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RotateTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RotateTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -69,8 +63,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -87,9 +79,6 @@ System.Double - To be added. - To be added. - To be added. @@ -106,8 +95,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -124,9 +111,6 @@ System.Double - To be added. - To be added. - To be added. @@ -143,8 +127,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -161,9 +143,6 @@ System.Double - To be added. - To be added. - To be added. @@ -180,8 +159,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RoundRectangleGeometry.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RoundRectangleGeometry.xml index d22023861af2..bd0f441fc1fa 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RoundRectangleGeometry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/RoundRectangleGeometry.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -66,9 +60,6 @@ Microsoft.Maui.Controls.CornerRadius - To be added. - To be added. - To be added. @@ -85,8 +76,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -103,9 +92,6 @@ Microsoft.Maui.Controls.Rect - To be added. - To be added. - To be added. @@ -122,8 +108,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ScaleTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ScaleTransform.xml index 179b52d316dd..7006889e0d5f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ScaleTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/ScaleTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -73,8 +67,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -91,9 +83,6 @@ System.Double - To be added. - To be added. - To be added. @@ -110,8 +99,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -128,9 +115,6 @@ System.Double - To be added. - To be added. - To be added. @@ -147,8 +131,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -165,9 +147,6 @@ System.Double - To be added. - To be added. - To be added. @@ -184,8 +163,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -202,9 +179,6 @@ System.Double - To be added. - To be added. - To be added. @@ -221,8 +195,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Shape.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Shape.xml index e87e9dc45863..323a91927972 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Shape.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Shape.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ Microsoft.Maui.Controls.Stretch - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,9 +73,6 @@ Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -101,8 +89,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -119,9 +105,6 @@ Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -138,9 +121,6 @@ Microsoft.Maui.Controls.DoubleCollection - To be added. - To be added. - To be added. @@ -157,8 +137,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -175,9 +153,6 @@ System.Double - To be added. - To be added. - To be added. @@ -194,8 +169,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -212,9 +185,6 @@ Microsoft.Maui.Controls.Shapes.PenLineCap - To be added. - To be added. - To be added. @@ -231,8 +201,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -249,9 +217,6 @@ Microsoft.Maui.Controls.Shapes.PenLineJoin - To be added. - To be added. - To be added. @@ -268,8 +233,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -286,9 +249,6 @@ System.Double - To be added. - To be added. - To be added. @@ -305,8 +265,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -323,8 +281,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -341,9 +297,6 @@ System.Double - To be added. - To be added. - To be added. @@ -360,8 +313,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/SkewTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/SkewTransform.xml index f59cb354fc07..05c27f04936e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/SkewTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/SkewTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -73,8 +67,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -91,9 +83,6 @@ System.Double - To be added. - To be added. - To be added. @@ -110,8 +99,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -128,9 +115,6 @@ System.Double - To be added. - To be added. - To be added. @@ -147,8 +131,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -165,9 +147,6 @@ System.Double - To be added. - To be added. - To be added. @@ -184,8 +163,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -202,9 +179,6 @@ System.Double - To be added. - To be added. - To be added. @@ -221,8 +195,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Transform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Transform.xml index 1d8c9744d729..c3c4ba4a7ee9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Transform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/Transform.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.Shapes.Matrix - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformCollection.xml index 51403c0b132c..47031d5b91d9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformCollection.xml @@ -15,8 +15,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformGroup.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformGroup.xml index 0179582adf28..66c175c6a9a3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformGroup.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformGroup.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.Shapes.TransformCollection - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformTypeConverter.xml index 4c34b6f0e92f..3b128fa8c56c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TransformTypeConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TranslateTransform.xml b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TranslateTransform.xml index 58c97e0cb585..01895b009edf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TranslateTransform.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Shapes/TranslateTransform.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -66,9 +60,6 @@ System.Double - To be added. - To be added. - To be added. @@ -85,8 +76,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -103,9 +92,6 @@ System.Double - To be added. - To be added. - To be added. @@ -122,8 +108,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.StyleSheets/StyleSheet.xml b/src/Controls/docs/Microsoft.Maui.Controls.StyleSheets/StyleSheet.xml index d0d102968a07..2bf301a62b4c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.StyleSheets/StyleSheet.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.StyleSheets/StyleSheet.xml @@ -14,7 +14,6 @@ Class for loading style sheets from strings, assembly resources, and text readers. - To be added. @@ -50,7 +49,6 @@ The line information for retrieving the style sheet. Returns the specified style sheet. The specified style sheet. - To be added. @@ -74,7 +72,6 @@ The text reader from which to read the style sheet data. Returns a style sheet by reading style data from the . A style sheet created from the data in the reader. - To be added. @@ -106,7 +103,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -135,7 +131,6 @@ The style sheet, as a string. Creates and returns a style sheet from a string that contains a text representation of a style sheet. The style sheet for the data. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingBaseErrorEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingBaseErrorEventArgs.xml index fbec06e3874c..46d86055248a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingBaseErrorEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingBaseErrorEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ Microsoft.Maui.Controls.BindingBase - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ System.String - To be added. - To be added. - To be added. @@ -68,9 +60,6 @@ System.String - To be added. - To be added. - To be added. @@ -87,9 +76,6 @@ System.Object[] - To be added. - To be added. - To be added. @@ -106,9 +92,6 @@ Microsoft.Maui.Controls.Xaml.Diagnostics.XamlSourceInfo - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingDiagnostics.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingDiagnostics.xml index 325c166b817d..8573f75cf8fd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingDiagnostics.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingDiagnostics.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,8 +41,6 @@ System.EventHandler<Microsoft.Maui.Controls.Xaml.Diagnostics.BindingBaseErrorEventArgs> - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingErrorEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingErrorEventArgs.xml index 5d9a8f03a247..2f6b94dd66ae 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingErrorEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml.Diagnostics/BindingErrorEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Object - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ Microsoft.Maui.Controls.BindableObject - To be added. - To be added. - To be added. @@ -68,9 +60,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/AcceptEmptyServiceProviderAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/AcceptEmptyServiceProviderAttribute.xml index 71a0a807a740..ec2f473e2203 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/AcceptEmptyServiceProviderAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/AcceptEmptyServiceProviderAttribute.xml @@ -37,7 +37,6 @@ Creates a new with default values. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XamlParseException.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XamlParseException.xml index c4e2a02870bf..0131064b46fe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XamlParseException.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XamlParseException.xml @@ -22,7 +22,6 @@ Exception that is raised when the XAML parser encounters a XAML error. - To be added. @@ -37,7 +36,6 @@ For internal use by the XAML engine. - To be added. @@ -56,7 +54,6 @@ For internal use by the XAML engine. For internal use by the XAML engine. - To be added. @@ -77,7 +74,6 @@ For internal use by the XAML engine. For internal use by the XAML engine. For internal use by the XAML engine. - To be added. @@ -98,7 +94,6 @@ For internal use by the XAML engine. For internal use by the XAML engine.. For internal use by the XAML engine. - To be added. @@ -122,7 +117,6 @@ For internal use by the XAML engine. For internal use by the XAML engine. For internal use by the XAML engine. - To be added. @@ -145,7 +139,6 @@ Information about the condition that caused the exception to be thrown. For internal use by the XAML engine. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XmlLineInfo.xml b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XmlLineInfo.xml index ee7040320124..8b0ab5f0cc67 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XmlLineInfo.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls.Xaml/XmlLineInfo.xml @@ -19,7 +19,6 @@ For internal use by the XAML infrastructure. - To be added. @@ -36,7 +35,6 @@ For internal use by the XAML engine. - To be added. @@ -59,7 +57,6 @@ For internal use by the XAML engine. For internal use by the XAML engine. For internal use by the XAML engine. - To be added. @@ -83,8 +80,6 @@ For internal use by the XAML infrastructure. - To be added. - To be added. @@ -107,8 +102,6 @@ For internal use by the XAML infrastructure. - To be added. - To be added. @@ -131,8 +124,6 @@ For internal use by the XAML infrastructure. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AbsoluteLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/AbsoluteLayout.xml index 3aef3b252d16..cda0e59b9939 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AbsoluteLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AbsoluteLayout.xml @@ -191,7 +191,6 @@ Initializes a new instance of the AbsoluteLayout class. - To be added. @@ -480,8 +479,6 @@ The platform configuration that selects the platform specific to use. Returns the configuration object that the developer can use to call platform-specific methods for the layout. - To be added. - To be added. @@ -571,8 +568,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Accelerator.xml b/src/Controls/docs/Microsoft.Maui.Controls/Accelerator.xml index abb2228ff3f8..a8a4e055e4bf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Accelerator.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Accelerator.xml @@ -19,7 +19,6 @@ Represents a shortcut key for a . - To be added. @@ -44,7 +43,6 @@ Compares accelerator to and returns if is a of type and is equal to this one. Otherwise, returns . if is a of type and is equal to this one. Otherwise, returns . - To be added. @@ -91,8 +89,6 @@ Returns the hashcode for the lower case string that represents the shortcut key. - To be added. - To be added. @@ -116,8 +112,6 @@ For internal use only. - To be added. - To be added. @@ -165,7 +159,6 @@ Returns a text representation of the accelerator. The text representation of the accelerator. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AccessKeyPlacement.xml b/src/Controls/docs/Microsoft.Maui.Controls/AccessKeyPlacement.xml index 29e704f95ab0..a840741acf37 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AccessKeyPlacement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AccessKeyPlacement.xml @@ -13,7 +13,6 @@ Enumerates access key placement relative to the control that the access key describes. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ActivityIndicator.xml b/src/Controls/docs/Microsoft.Maui.Controls/ActivityIndicator.xml index 8e1517933ea0..10d6ba87e52a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ActivityIndicator.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ActivityIndicator.xml @@ -207,8 +207,6 @@ var indicator = new ActivityIndicator { To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AdaptiveTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/AdaptiveTrigger.xml index d024d0825429..c79ba8a38078 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AdaptiveTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AdaptiveTrigger.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Double - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,9 +73,6 @@ System.Double - To be added. - To be added. - To be added. @@ -101,8 +89,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -120,8 +106,6 @@ - To be added. - To be added. @@ -139,8 +123,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Animation.xml b/src/Controls/docs/Microsoft.Maui.Controls/Animation.xml index 7d746228d487..aaafdf61d6a3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Animation.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Animation.xml @@ -24,7 +24,6 @@ Encapsulates an animation, a collection of functions that modify properties over a user-perceptible time period. - To be added. @@ -46,7 +45,6 @@ Creates a new object with default values. - To be added. @@ -80,7 +78,6 @@ The easing function to use to transision in, out, or in and out of the animation. An action to call when the animation is finished. Creates a new object with the specified parameters. - To be added. @@ -113,7 +110,6 @@ The fraction into this animation at which the added child animation will stop animating. The animation to add. Adds an object to this that begins at and finishes at . - To be added. @@ -154,7 +150,6 @@ An action to call when the animation is finished. A function that returns true if the animation should continue. Runs the animation with the supplied parameters. - To be added. @@ -181,7 +176,6 @@ Returns a callback that recursively runs the eased animation step on this object and those of its children that have begun and not finished. A callback that recursively runs the eased animation step on this object and those of its children that have begun and not finished. - To be added. @@ -210,8 +204,6 @@ Returns an enumerator that can be used to iterate over the child objects of this object. - To be added. - To be added. @@ -244,8 +236,6 @@ The fraction into this animation at which the added child animation will stop animating. The animation to add. Adds an object to this that begins at and finishes at . - To be added. - To be added. @@ -262,9 +252,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -297,8 +284,6 @@ The fraction into this animation at which the added child animation will begin animating. The fraction into this animation at which the added child animation will stop animating. Adds to the children of this object and sets the start and end times of to and , respectively. - To be added. - To be added. @@ -337,8 +322,6 @@ The fraction into this animation at which the added child animation will begin animating. The fraction into this animation at which the added child animation will stop animating. Creates a new object with the specified , and adds it to the children of this object. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AnimationExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/AnimationExtensions.xml index f766563b6301..8fca00aea33a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AnimationExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AnimationExtensions.xml @@ -20,7 +20,6 @@ Extension methods for objects. - To be added. @@ -51,7 +50,6 @@ The object on which this method will be run. An animation key that must be unique among its sibling and parent animations for the duration of the animation. Stops the animation. - To be added. If refers to an animation that belongs to this instance, then its tweener handlers are removed, the tweener is stopped, the animation is removed from this instance, and it is marked as finished. If refers to one of the kinetics that belong to this instance, then it and its ticker are removed. @@ -95,7 +93,6 @@ An action to call when the animation is finished. A function that returns true if the animation should continue. Sets the specified parameters and starts the animation. - To be added. @@ -138,7 +135,6 @@ An action to call when the animation is finished. A function that returns true if the animation should continue. Sets the specified parameters and starts the animation. - To be added. @@ -185,7 +181,6 @@ An action to call when the animation is finished. A function that returns true if the animation should continue. Sets the specified parameters and starts the animation. - To be added. @@ -234,7 +229,6 @@ An action to call when the animation is finished. A function that returns true if the animation should continue. Sets the specified parameters and starts the animation. - To be added. @@ -273,7 +267,6 @@ The amount that the progression speed is reduced per frame. Can be negative. An action to call when the animation is finished. Sets the specified parameters and starts the kinetic animation. - To be added. @@ -304,8 +297,6 @@ The object on which this method will be run. An animation key that must be unique among its sibling and parent animations for the duration of the animation. Returns a Boolean value that indicates whether or not the animation that is specified by is running. - To be added. - To be added. @@ -326,9 +317,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AppLinkEntry.xml b/src/Controls/docs/Microsoft.Maui.Controls/AppLinkEntry.xml index 45817d108268..eb7754ff47f1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AppLinkEntry.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AppLinkEntry.xml @@ -33,7 +33,6 @@ Creates a new with default values. - To be added. @@ -56,7 +55,6 @@ Gets or sets an application-specific URI that uniquely describes content within an app. An application-specific URI that uniquely describes content within an app. - To be added. @@ -75,7 +73,6 @@ Backing store for the property. - To be added. @@ -98,7 +95,6 @@ Gets or sets a description that appears with the item in search results. The description that appears with the item in search results. - To be added. @@ -117,7 +113,6 @@ Backing store for the property. - To be added. @@ -140,8 +135,6 @@ A URI that can be parsed by the target appliction to recreate a specific state. Creates and returns a new for the specified . - To be added. - To be added. @@ -183,7 +176,6 @@ Backing store for the property. - To be added. @@ -229,7 +221,6 @@ Gets or sets a small image that appears with the item in search results. A small image that appears with the item in search results - To be added. @@ -248,7 +239,6 @@ Backing store for the property. - To be added. @@ -271,7 +261,6 @@ Gets or sets the title of the item. The title of the item. - To be added. @@ -290,7 +279,6 @@ Backing store for the property. - To be added. @@ -311,7 +299,6 @@ Returns a string representation of this . A string representation of this . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AppThemeChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/AppThemeChangedEventArgs.xml index 7a7bbf59286b..17dd1daa1f86 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AppThemeChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AppThemeChangedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. @@ -49,9 +45,6 @@ Microsoft.Maui.Controls.OSAppTheme - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Application.xml b/src/Controls/docs/Microsoft.Maui.Controls/Application.xml index cccdbd495708..15b784a27f68 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Application.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Application.xml @@ -47,7 +47,6 @@ Initializes a new instance. - To be added. @@ -85,8 +84,6 @@ - To be added. - To be added. @@ -111,7 +108,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -134,8 +130,6 @@ Gets the current application. - To be added. - To be added. @@ -152,9 +146,6 @@ Microsoft.Maui.Controls.IDispatcher - To be added. - To be added. - To be added. @@ -182,8 +173,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -206,8 +195,6 @@ Gets or sets whether runtime warnings are sent to the application's output. - To be added. - To be added. @@ -253,7 +240,6 @@ Event that is raised after a view has been popped modally. - To be added. @@ -275,7 +261,6 @@ Event that is raised when a view is modally popped. - To be added. @@ -297,7 +282,6 @@ Event that is raised after a view has been pushed modally. - To be added. @@ -319,7 +303,6 @@ Event that is raised when a view is modally pushed. - To be added. @@ -343,8 +326,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -375,8 +356,6 @@ The platform configuration for which to retrieve the application instance. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -399,7 +378,6 @@ The URI for the request. App developers override this method to respond when the user initiates an app link request. - To be added. @@ -423,7 +401,6 @@ Throws . - To be added. @@ -447,7 +424,6 @@ Application developers override this method to perform actions when the application resumes from a sleeping state. - To be added. @@ -471,7 +447,6 @@ Application developers override this method to perform actions when the application enters the sleeping state. - To be added. @@ -495,7 +470,6 @@ Application developers override this method to perform actions when the application starts. - To be added. @@ -514,7 +488,6 @@ Event that is raised when a page is about to appear on the screen. - To be added. @@ -533,7 +506,6 @@ Event that is raised when a page is about to disappear from the screen. - To be added. @@ -557,8 +529,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -604,7 +574,6 @@ Quits the application. - To be added. @@ -621,9 +590,6 @@ Microsoft.Maui.Controls.OSAppTheme - To be added. - To be added. - To be added. @@ -640,8 +606,6 @@ System.EventHandler<Microsoft.Maui.Controls.AppThemeChangedEventArgs> - To be added. - To be added. @@ -664,8 +628,6 @@ Gets or sets the resource dictionary for this object. - To be added. - To be added. @@ -719,7 +681,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -744,7 +705,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -769,7 +729,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -794,8 +753,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -820,7 +777,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -851,7 +807,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -879,7 +834,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -905,8 +859,6 @@ To be added. - To be added. - To be added. @@ -923,9 +875,6 @@ Microsoft.Maui.Controls.OSAppTheme - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/AutomationProperties.xml b/src/Controls/docs/Microsoft.Maui.Controls/AutomationProperties.xml index 142b670e69ba..6d9121947005 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/AutomationProperties.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/AutomationProperties.xml @@ -14,7 +14,6 @@ Contains both abbreviated and detailed UI information that is supplied to accessibility services. - To be added. @@ -30,7 +29,6 @@ Creates a new object with default values. - To be added. @@ -53,8 +51,6 @@ The bindable object whose help text to get. Returns the help text, if any, for the bindable object. - To be added. - To be added. @@ -108,7 +104,6 @@ The object whose label to find. Returns the element that labels , if does not label itself and if another element describes it in the UI. The element that labels , if present. - To be added. @@ -132,7 +127,6 @@ The object whose name to get. Returns the short, developer-specified, introductory name of the element, such as "Progress Indicator" or "Button". The short, introdctory name of the element. - To be added. @@ -151,7 +145,6 @@ Backing store for the attached property that contains the detailed description of the UI element and its behavior. - To be added. @@ -170,7 +163,6 @@ Backing store for the attached property that contains a Boolean value that tells whether the element is available to the accessible app. - To be added. @@ -189,7 +181,6 @@ Backing store for the attached property that holds a reference to the element that labels the element that is being made accessible. - To be added. @@ -208,7 +199,6 @@ Backing store for the attached property that contains the brief description of the UI element - To be added. @@ -233,7 +223,6 @@ The object whose help text to set. The new help text value. Sets the help text for . - To be added. @@ -259,7 +248,6 @@ to make visible to the accessibility system. to remove it from the system. Sets a Boolean value that tells whether the bindable object is available to the accessibility system. - To be added. @@ -284,7 +272,6 @@ The object whose label to set. The visual element that will name , or to make its own label. Sets another element, such as a as the label for . - To be added. @@ -309,7 +296,6 @@ The object whose name to set. The new name. Sets the short, developer-specified, introductory name of the element, such as "Progress Indicator" or "Button". - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BackButtonBehavior.xml b/src/Controls/docs/Microsoft.Maui.Controls/BackButtonBehavior.xml index 957a759c4f6b..191c7a82b7a2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BackButtonBehavior.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BackButtonBehavior.xml @@ -13,7 +13,6 @@ A specifying the behavior associated with the back button in a Shell application. - To be added. @@ -27,8 +26,6 @@ - To be added. - To be added. @@ -45,9 +42,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -64,9 +58,6 @@ System.Object - To be added. - To be added. - To be added. @@ -84,7 +75,6 @@ The backing store for the field. - To be added. @@ -102,7 +92,6 @@ The backing store for the field. - To be added. @@ -119,9 +108,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -139,7 +125,6 @@ The backing store for the field. - To be added. @@ -156,9 +141,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -176,7 +158,6 @@ The backing store for the field. - To be added. @@ -193,9 +174,6 @@ System.String - To be added. - To be added. - To be added. @@ -213,7 +191,6 @@ The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BackButtonPressedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/BackButtonPressedEventArgs.xml index a5b27654a619..b8b11a735c6b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BackButtonPressedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BackButtonPressedEventArgs.xml @@ -17,7 +17,6 @@ Internal use only. Contains arguments for the event that is raised when a back button is pressed. - To be added. @@ -36,7 +35,6 @@ Internal use only. Initializes a new instance. - To be added. @@ -58,8 +56,6 @@ Internal use only. Gets or sets a value that indicates whether the back button event has already been handled. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BaseMenuItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/BaseMenuItem.xml index 8baa2f1fcaa9..b913c37d86da 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BaseMenuItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BaseMenuItem.xml @@ -17,7 +17,6 @@ Base class for menu items. - To be added. @@ -36,7 +35,6 @@ Initializes a new instance. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BaseShellItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/BaseShellItem.xml index 6eb1c7ff420d..0ac8c7d1075c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BaseShellItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BaseShellItem.xml @@ -22,7 +22,6 @@ A that is the base class for and . - To be added. @@ -37,7 +36,6 @@ Creates a new with default values. - To be added. @@ -54,8 +52,6 @@ System.EventHandler - To be added. - To be added. @@ -72,8 +68,6 @@ System.EventHandler - To be added. - To be added. @@ -92,7 +86,6 @@ The icon to use for the item. If this property is unset, it will fallback to using the property value. A that represents an icon. - To be added. @@ -110,7 +103,6 @@ The backing store for the field. - To be added. @@ -129,7 +121,6 @@ Defines the icon to display in parts of the chrome that are not the flyout. A that represents an icon. - To be added. @@ -147,7 +138,6 @@ The backing store for the field. - To be added. @@ -167,7 +157,6 @@ Defines if the item is currently highlighted in the flyout. if the item is currently highlighted. - To be added. @@ -185,7 +174,6 @@ The backing store for the field. - To be added. @@ -205,7 +193,6 @@ Defines if the item is selectable in the chrome. if the item is selectable in the chrome. - To be added. @@ -223,7 +210,6 @@ The backing store for the field. - To be added. @@ -245,7 +231,6 @@ Indicates whether a FlyoutItem is included in tab navigation. Default value is ; when , the FlyoutItem is ignored by the tab-navigation infrastructure, irrespective if a TabIndex is set. - To be added. @@ -263,7 +248,6 @@ The backing store for the field. - To be added. @@ -280,9 +264,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -299,8 +280,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -318,8 +297,6 @@ - To be added. - To be added. @@ -337,8 +314,6 @@ - To be added. - To be added. @@ -366,7 +341,6 @@ The name of the changed property. Called whenever a property changes. - To be added. @@ -390,7 +364,6 @@ Old TabIndex. New TabIndex. Called whenever the TabIndex property changes. - To be added. @@ -414,7 +387,6 @@ Old IsTabStop value. New IsTabStop value. Called whenever the IsTabStop property changes. - To be added. @@ -433,7 +405,6 @@ The string used to address the item. A unique string that identifies the item. - To be added. @@ -455,7 +426,6 @@ Indicates the order in which FlyoutItem objects receive focus when the user navigates through items by pressing the Tab key. Defaults to 0. - To be added. @@ -475,7 +445,6 @@ Called to set the default value of the TabIndex property.. Defaults to 0. - To be added. @@ -493,7 +462,6 @@ The backing store for the field. - To be added. @@ -514,7 +482,6 @@ Called to set the default value of the TabStop property. if TabStop. - To be added. @@ -533,7 +500,6 @@ Title to display in the UI. Title to display in the UI. - To be added. @@ -551,7 +517,6 @@ The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BaseSwipeEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/BaseSwipeEventArgs.xml index 919695e40a0a..00ea1272b1e2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BaseSwipeEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BaseSwipeEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. @@ -49,9 +45,6 @@ Microsoft.Maui.Controls.SwipeDirection - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Behavior.xml b/src/Controls/docs/Microsoft.Maui.Controls/Behavior.xml index b243fdc8c1e7..d9e158cfbb0c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Behavior.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Behavior.xml @@ -33,7 +33,6 @@ Creates a new Behavior with default values. - To be added. @@ -55,8 +54,6 @@ Gets the type of the objects with which this can be associated. - To be added. - To be added. @@ -82,7 +79,6 @@ The bindable object to which the behavior was attached. Application developers override this method to implement the behaviors that will be associated with . - To be added. @@ -108,7 +104,6 @@ The bindable object from which the behavior was detached. Application developers override this method to remove the behaviors from that were implemented in a previous call to the method. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindableLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindableLayout.xml index 5f1c1ecf27c8..32a20e1f3a70 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindableLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindableLayout.xml @@ -13,7 +13,6 @@ Static class specifying the attached properties that allow a work with a data-bound . - To be added. @@ -30,8 +29,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -48,8 +45,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -70,9 +65,6 @@ To be added. - To be added. - To be added. - To be added. @@ -93,9 +85,6 @@ To be added. - To be added. - To be added. - To be added. @@ -116,9 +105,6 @@ To be added. - To be added. - To be added. - To be added. @@ -139,9 +125,6 @@ To be added. - To be added. - To be added. - To be added. @@ -162,9 +145,6 @@ To be added. - To be added. - To be added. - To be added. @@ -181,8 +161,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -199,8 +177,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -217,8 +193,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -241,8 +215,6 @@ To be added. To be added. - To be added. - To be added. @@ -265,8 +237,6 @@ To be added. To be added. - To be added. - To be added. @@ -289,8 +259,6 @@ To be added. To be added. - To be added. - To be added. @@ -313,8 +281,6 @@ To be added. To be added. - To be added. - To be added. @@ -337,8 +303,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindableObject.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindableObject.xml index 6ea03ad2a75d..025ddfb9cd3d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindableObject.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindableObject.xml @@ -157,7 +157,6 @@ public static void OneWayDemo () Apply the bindings to . - To be added. @@ -223,7 +222,6 @@ Debug.WriteLine (label.Text); // prints "John Doe" Raised whenever the property changes. - To be added. @@ -361,8 +359,6 @@ stack.BindingContext = new {Jane = new {Name = "Jane Doe"}, John = new {Name = " To be added. - To be added. - To be added. @@ -383,8 +379,6 @@ stack.BindingContext = new {Jane = new {Name = "Jane Doe"}, John = new {Name = " To be added. - To be added. - To be added. @@ -401,9 +395,6 @@ stack.BindingContext = new {Jane = new {Name = "Jane Doe"}, John = new {Name = " Microsoft.Maui.Controls.IDispatcher - To be added. - To be added. - To be added. @@ -485,7 +476,6 @@ class MyBindable : BindableObject For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -521,7 +511,6 @@ class MyBindable : BindableObject For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -546,7 +535,6 @@ class MyBindable : BindableObject Returns if the target property exists and has been set. if the target property exists and has been set. If the property has not been set, returns . If the is null, an ArgumentNullException is thrown. - To be added. @@ -572,7 +560,6 @@ class MyBindable : BindableObject Override this method to execute an action when the BindingContext changes. - To be added. @@ -672,7 +659,6 @@ class MyBindable : BindableObject Raised when a property has changed. - To be added. @@ -697,7 +683,6 @@ class MyBindable : BindableObject Raised when a property is about to change. - To be added. @@ -809,7 +794,6 @@ Debug.WriteLine (label.Text); // prints "John Doe" The object on which to set the inherited binding context. The inherited context to set. Sets the inherited context to a nested element. - To be added. @@ -939,7 +923,6 @@ class MyBindable : BindableObject For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -997,7 +980,6 @@ class MyBindable : BindableObject For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindableObjectExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindableObjectExtensions.xml index b36415f5fe44..f4515c53bbf6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindableObjectExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindableObjectExtensions.xml @@ -50,9 +50,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -79,8 +76,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -248,8 +243,6 @@ Debug.WriteLine (label.Text); // prints "John Doe" To be added. To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindableProperty.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindableProperty.xml index 41137543c2f2..287c60f85022 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindableProperty.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindableProperty.xml @@ -77,7 +77,6 @@ A Func used to initialize default value for reference types. Creates a new instance of the BindableProperty class. A newly created BindableProperty. - To be added. @@ -137,7 +136,6 @@ A Func used to initialize default value for reference types. Deprecated. Do not use. A newly created BindableProperty. - To be added. @@ -183,7 +181,6 @@ A Func used to initialize default value for reference types. Creates a new instance of the BindableProperty class for an attached property. A newly created attached BindableProperty. - To be added. @@ -345,7 +342,6 @@ A Func used to initialize default value for reference types. Deprecated. Do not use. A newly created BindablePropertyKey. - To be added. @@ -392,7 +388,6 @@ Creates a new instance of the BindablePropertyKey class. - To be added. Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. @@ -511,7 +506,6 @@ Gets the default BindingMode. - To be added. @@ -539,7 +533,6 @@ Gets the default value for the BindableProperty. - To be added. @@ -567,7 +560,6 @@ Gets a value indicating if the BindableProperty is created form a BindablePropertyKey. - To be added. @@ -595,7 +587,6 @@ Gets the property name. - To be added. @@ -623,7 +614,6 @@ Gets the type of the BindableProperty. - To be added. @@ -640,8 +630,6 @@ System.Object - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyConverter.xml index bd2dbbe641ae..df2e5276e6fb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyConverter.xml @@ -24,7 +24,6 @@ A for bindable properties. - To be added. @@ -41,7 +40,6 @@ Creates a new with default values. - To be added. @@ -64,8 +62,6 @@ The value to convert. Returns a bindable property when supplied a string of the form Type.PropertyName. - To be added. - To be added. @@ -96,8 +92,6 @@ For internal use only. For internal use only. For internal use only. - To be added. - To be added. @@ -125,8 +119,6 @@ For internal use only. For internal use only. For internal use only. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyKey.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyKey.xml index d4f305ab0a14..d4c0506fb0ed 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyKey.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindablePropertyKey.xml @@ -64,7 +64,6 @@ class Bindable : BindableObject Gets the BindableProperty. A BindableProperty used for read access. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Binding.xml b/src/Controls/docs/Microsoft.Maui.Controls/Binding.xml index 76facc46d03e..9bc0abe5d17c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Binding.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Binding.xml @@ -42,7 +42,6 @@ Constructs and initializes a new instance of the class. - To be added. @@ -140,7 +139,6 @@ Debug.WriteLine (person.Name); //prints "Foo". ReverseConverter.ConvertBack () i Gets or sets the converter to be used for this binding ? An IValueConverter, or . - To be added. @@ -166,7 +164,6 @@ Debug.WriteLine (person.Name); //prints "Foo". ReverseConverter.ConvertBack () i Gets or sets the parameter passed as argument to the converter. An object, or . - To be added. @@ -250,8 +247,6 @@ Debug.WriteLine (label.Text); //prints "John Doe". System.Object - To be added. - To be added. @@ -277,7 +272,6 @@ Debug.WriteLine (label.Text); //prints "John Doe". Gets or sets the path of the property A string indicating the path to the property. - To be added. @@ -324,8 +318,6 @@ Debug.WriteLine (label.Text); //prints "John Doe". For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindingBase.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindingBase.xml index 3f58c6764f7a..b409e7826204 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindingBase.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindingBase.xml @@ -20,7 +20,6 @@ An abstract class that provides a and a formatting option. - To be added. @@ -105,7 +104,6 @@ Gets or sets the value to use instead of the default value for the property, if no specified value exists. The value to use instead of the default value for the property, if no specified value exists - To be added. @@ -130,8 +128,6 @@ Gets or sets the mode for this binding. - To be added. - To be added. @@ -200,7 +196,6 @@ label.AddBinding (new Binding (Label.TextProperty, "Price") { Gets or sets the value to supply for a bound property when the target of the binding is . The value to supply for a bound property when the target of the binding is . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BindingCondition.xml b/src/Controls/docs/Microsoft.Maui.Controls/BindingCondition.xml index fe4dd90e3ebc..351eea90df4c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BindingCondition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BindingCondition.xml @@ -56,7 +56,6 @@ Initializes a new instance. - To be added. @@ -78,8 +77,6 @@ Gets or sets the binding against which the property will be compared. - To be added. - To be added. @@ -101,8 +98,6 @@ The binding value that satisfies the condition. - To be added. - To be added. @@ -131,8 +126,6 @@ Used by the XAML infrastructure. Used by the XAML infrastructure. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BoundsConstraint.xml b/src/Controls/docs/Microsoft.Maui.Controls/BoundsConstraint.xml index ca04c79bec8f..1cd1b17d5a68 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BoundsConstraint.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BoundsConstraint.xml @@ -20,7 +20,6 @@ A bounds layout constraint used by s. - To be added. @@ -51,8 +50,6 @@ The expression from which to compile the constraint. The parents to consider when compiling the constraint. Returns a object that contains the compiled version of and is relative to either or the views referred to in . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BoundsTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/BoundsTypeConverter.xml index c8c28d11fafd..0b46b533dc01 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BoundsTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BoundsTypeConverter.xml @@ -25,7 +25,6 @@ A that converts strings into s for use with s. - To be added. @@ -47,7 +46,6 @@ Creates a new with default values. - To be added. @@ -70,8 +68,6 @@ The value to convert. Converts into a . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BoxView.xml b/src/Controls/docs/Microsoft.Maui.Controls/BoxView.xml index 2c2260c818aa..f8b064b8c8cc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BoxView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BoxView.xml @@ -124,7 +124,6 @@ Gets or sets the corner radius for the box view. The corner radius for the box view. - To be added. @@ -143,7 +142,6 @@ Backing store for the property. - To be added. @@ -174,8 +172,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -211,8 +207,6 @@ The requested width. The requested height. Method that is called when a size request is made to the box view. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/BrushTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/BrushTypeConverter.xml index aaf4883d76f5..fd0d36d1f426 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/BrushTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/BrushTypeConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. @@ -68,8 +61,6 @@ System.String - To be added. - To be added. @@ -86,8 +77,6 @@ System.String - To be added. - To be added. @@ -104,8 +93,6 @@ System.String - To be added. - To be added. @@ -122,8 +109,6 @@ System.String - To be added. - To be added. @@ -140,8 +125,6 @@ System.String - To be added. - To be added. @@ -158,8 +141,6 @@ System.String - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Button.xml b/src/Controls/docs/Microsoft.Maui.Controls/Button.xml index eee303842d59..485849945ca5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Button.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Button.xml @@ -146,7 +146,6 @@ void IncrementLabel() Initializes a new instance of the Button class. - To be added. @@ -197,7 +196,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -248,7 +246,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -267,7 +264,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -284,9 +280,6 @@ void IncrementLabel() System.Double - To be added. - To be added. - To be added. @@ -304,7 +297,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -381,7 +373,6 @@ void IncrementLabel() Gets or sets the parameter to pass to the Command property. This is a bindable property. A object to pass to the command property. The default value is . - To be added. @@ -406,7 +397,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -431,7 +421,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -450,8 +439,6 @@ void IncrementLabel() Gets or sets an object that controls the position of the button image and the spacing between the button's image and the button's text. - To be added. - To be added. @@ -470,7 +457,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -490,7 +476,6 @@ void IncrementLabel() Gets or sets the corner radius for the button, in device-independent units. The corner radius for the button, in device-independent units. - To be added. @@ -509,7 +494,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -535,7 +519,6 @@ void IncrementLabel() Gets or sets the Font for the Label text. This is a bindable property. The value for the button. The default is , which represents the default font on the platform. - To be added. @@ -557,8 +540,6 @@ void IncrementLabel() Gets a value that indicates whether the font for the button text is bold, italic, or neither. - To be added. - To be added. @@ -580,7 +561,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -602,8 +582,6 @@ void IncrementLabel() Gets the font family to which the font for the button text belongs. - To be added. - To be added. @@ -625,7 +603,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -650,7 +627,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -677,8 +653,6 @@ void IncrementLabel() Gets or sets the size of the font of the button text. - To be added. - To be added. @@ -700,7 +674,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -718,8 +691,6 @@ void IncrementLabel() Allows you to display a bitmap image on the Button. - To be added. - To be added. @@ -737,7 +708,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -755,8 +725,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -774,7 +742,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -805,8 +772,6 @@ void IncrementLabel() To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -852,7 +817,6 @@ void IncrementLabel() Gets or sets the padding for the button. The padding for the button. - To be added. @@ -871,7 +835,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -890,7 +853,6 @@ void IncrementLabel() Occurs when the Button is pressed. - To be added. @@ -937,7 +899,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -965,7 +926,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -993,7 +953,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1045,7 +1004,6 @@ void IncrementLabel() Gets or sets the for the text of the button. This is a bindable property. The value. - To be added. @@ -1070,7 +1028,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -1095,7 +1052,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -1112,9 +1068,6 @@ void IncrementLabel() Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -1132,7 +1085,6 @@ void IncrementLabel() The backing store for the bindable property. - To be added. @@ -1155,9 +1107,6 @@ void IncrementLabel() To be added. To be added. - To be added. - To be added. - To be added. @@ -1178,8 +1127,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1200,8 +1147,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1222,8 +1167,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1245,8 +1188,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1267,9 +1208,6 @@ void IncrementLabel() - To be added. - To be added. - To be added. @@ -1291,8 +1229,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1314,8 +1250,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform.. - To be added. - To be added. @@ -1337,8 +1271,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1365,7 +1297,6 @@ void IncrementLabel() To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1386,9 +1317,6 @@ void IncrementLabel() - To be added. - To be added. - To be added. @@ -1413,7 +1341,6 @@ void IncrementLabel() To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1434,8 +1361,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1455,9 +1380,6 @@ void IncrementLabel() System.Boolean - To be added. - To be added. - To be added. @@ -1477,9 +1399,6 @@ void IncrementLabel() System.Boolean - To be added. - To be added. - To be added. @@ -1500,8 +1419,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1527,8 +1444,6 @@ void IncrementLabel() To be added. To be added. - To be added. - To be added. @@ -1550,7 +1465,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1571,8 +1485,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1595,8 +1507,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1624,7 +1534,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1652,7 +1561,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1680,7 +1588,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1708,7 +1615,6 @@ void IncrementLabel() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ButtonsMask.xml b/src/Controls/docs/Microsoft.Maui.Controls/ButtonsMask.xml index 888c98b817a0..cb1275b20133 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ButtonsMask.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ButtonsMask.xml @@ -18,7 +18,6 @@ Flag values that represent mouse buttons. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CarouselLayoutTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/CarouselLayoutTypeConverter.xml index 6fc1f977e756..df11ec061bbb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CarouselLayoutTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CarouselLayoutTypeConverter.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -54,9 +50,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CarouselPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/CarouselPage.xml index 5f78f426c82b..eaa071f1ceee 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CarouselPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CarouselPage.xml @@ -172,8 +172,6 @@ MainPage = new CarouselPage { To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CarouselView.xml b/src/Controls/docs/Microsoft.Maui.Controls/CarouselView.xml index 476ea750cbb2..e36113761114 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CarouselView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CarouselView.xml @@ -18,7 +18,6 @@ A whose scrollable child views 'snap' into place. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -55,9 +52,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -79,9 +73,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -98,9 +89,6 @@ System.Object - To be added. - To be added. - To be added. @@ -117,8 +105,6 @@ System.EventHandler<Microsoft.Maui.Controls.CurrentItemChangedEventArgs> - To be added. - To be added. @@ -135,9 +121,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -154,9 +137,6 @@ System.Object - To be added. - To be added. - To be added. @@ -173,8 +153,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -191,8 +169,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -209,8 +185,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -227,8 +201,6 @@ System.String - To be added. - To be added. @@ -245,8 +217,6 @@ System.String - To be added. - To be added. @@ -268,9 +238,6 @@ Microsoft.Maui.Controls.IndicatorView - To be added. - To be added. - To be added. @@ -287,9 +254,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -306,8 +270,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -324,9 +286,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -343,8 +302,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -361,9 +318,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -380,8 +334,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -403,9 +355,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -422,9 +371,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -441,8 +387,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -464,9 +408,6 @@ Microsoft.Maui.Controls.LinearItemsLayout - To be added. - To be added. - To be added. @@ -483,8 +424,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -501,9 +440,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -520,8 +456,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -538,8 +472,6 @@ System.String - To be added. - To be added. @@ -560,8 +492,6 @@ To be added. - To be added. - To be added. @@ -582,8 +512,6 @@ To be added. - To be added. - To be added. @@ -600,9 +528,6 @@ Microsoft.Maui.Thickness - To be added. - To be added. - To be added. @@ -619,8 +544,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -637,9 +560,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -656,8 +576,6 @@ System.EventHandler<Microsoft.Maui.Controls.PositionChangedEventArgs> - To be added. - To be added. @@ -674,9 +592,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -693,9 +608,6 @@ System.Object - To be added. - To be added. - To be added. @@ -712,8 +624,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -730,8 +640,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -748,8 +656,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -766,8 +672,6 @@ System.String - To be added. - To be added. @@ -793,8 +697,6 @@ To be added. - To be added. - To be added. @@ -811,9 +713,6 @@ System.Collections.ObjectModel.ObservableCollection<Microsoft.Maui.Controls.View> - To be added. - To be added. - To be added. @@ -830,8 +729,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Cell.xml b/src/Controls/docs/Microsoft.Maui.Controls/Cell.xml index 29a803c88b0d..90cfaa5c2778 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Cell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Cell.xml @@ -206,7 +206,6 @@ Content = new TableView 40 The default height of cells. - To be added. @@ -280,7 +279,6 @@ Content = new TableView For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -302,8 +300,6 @@ Content = new TableView Gets a value that indicates whether the cell has at least one menu item in its list property. - To be added. - To be added. @@ -346,9 +342,6 @@ Content = new TableView System.Boolean - To be added. - To be added. - To be added. @@ -427,9 +420,6 @@ Content = new TableView To be added. - To be added. - To be added. - To be added. @@ -479,7 +469,6 @@ Content = new TableView Event that is raised when the binding context is changed. - To be added. @@ -527,7 +516,6 @@ Content = new TableView Application developers can override this method to do actions when the cell's parent is set. - To be added. @@ -551,7 +539,6 @@ Content = new TableView The name of the property on which to monitor value changes. TApplication developers can override this method to do actions when the property named by is set. - To be added. @@ -634,7 +621,6 @@ Content = new TableView For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -662,7 +648,6 @@ Content = new TableView For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CheckBox.xml b/src/Controls/docs/Microsoft.Maui.Controls/CheckBox.xml index abecd9cc0162..c4f3b35a2558 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CheckBox.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CheckBox.xml @@ -24,8 +24,6 @@ - To be added. - To be added. @@ -39,8 +37,6 @@ - To be added. - To be added. @@ -58,8 +54,6 @@ - To be added. - To be added. @@ -76,8 +70,6 @@ System.EventHandler<Microsoft.Maui.Controls.CheckedChangedEventArgs> - To be added. - To be added. @@ -94,9 +86,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -113,8 +102,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -131,9 +118,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -150,8 +134,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -168,8 +150,6 @@ System.String - To be added. - To be added. @@ -198,9 +178,6 @@ To be added. - To be added. - To be added. - To be added. @@ -220,9 +197,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -242,9 +216,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -264,9 +235,6 @@ System.Double - To be added. - To be added. - To be added. @@ -286,9 +254,6 @@ System.Double - To be added. - To be added. - To be added. @@ -308,9 +273,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -330,9 +292,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -353,9 +312,6 @@ - To be added. - To be added. - To be added. @@ -376,9 +332,6 @@ - To be added. - To be added. - To be added. @@ -399,9 +352,6 @@ - To be added. - To be added. - To be added. @@ -422,9 +372,6 @@ - To be added. - To be added. - To be added. @@ -445,9 +392,6 @@ - To be added. - To be added. - To be added. @@ -473,8 +417,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CheckedChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/CheckedChangedEventArgs.xml index db7c280d9954..bf9b8dbf2839 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CheckedChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CheckedChangedEventArgs.xml @@ -13,7 +13,6 @@ Event Args for 's event. - To be added. @@ -32,7 +31,6 @@ Boolean value indicating whether the is checked. Creates a new specifying whether the is checked. - To be added. @@ -52,7 +50,6 @@ Boolean value indicating whether the is checked. if checked. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ChildGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/ChildGestureRecognizer.xml index 79343fbc1b8d..e48f755c5cfb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ChildGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ChildGestureRecognizer.xml @@ -21,7 +21,6 @@ A gesture recognizer for use as a child of another. - To be added. @@ -37,7 +36,6 @@ Creates a new with default values. - To be added. @@ -57,7 +55,6 @@ Gets or sets the recognizer. The recognizer. - To be added. @@ -86,7 +83,6 @@ The property that changed. Method that is called when the recognizer is changed. - To be added. @@ -108,7 +104,6 @@ Event handler for changed properties. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ClickGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/ClickGestureRecognizer.xml index 60f6b7963823..84341cac4b6e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ClickGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ClickGestureRecognizer.xml @@ -14,7 +14,6 @@ Recognizer for click gestures. - To be added. @@ -30,7 +29,6 @@ Creates a new with default values. - To be added. @@ -71,7 +69,6 @@ Backing store for the property. - To be added. @@ -90,7 +87,6 @@ The event handler for the click gesture, if present. - To be added. @@ -153,7 +149,6 @@ Backing store for the property. - To be added. @@ -172,7 +167,6 @@ Backing store for the property. - To be added. @@ -191,8 +185,6 @@ The number of clicks required to activate the recognizer. - To be added. - To be added. @@ -211,7 +203,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ClickedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ClickedEventArgs.xml index 6a001ecd5ac3..3700fb190dd3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ClickedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ClickedEventArgs.xml @@ -14,7 +14,6 @@ Event arguments for a click event. - To be added. @@ -36,7 +35,6 @@ The button or buttons that were pressed. The command parameter. Creates a new with the specified values. - To be added. @@ -56,7 +54,6 @@ Gets the button or buttons that were pressed. The button or buttons that were pressed. - To be added. @@ -76,7 +73,6 @@ Gets the command parameter. The command parameter. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CollectionView.xml b/src/Controls/docs/Microsoft.Maui.Controls/CollectionView.xml index f667cf213bcd..8b35083318c3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CollectionView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CollectionView.xml @@ -18,7 +18,6 @@ A that presents a collection of items. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinition.xml b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinition.xml index 4310b7ab2fb3..1675fb2833c8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinition.xml @@ -57,7 +57,6 @@ Creates a new object with default values. - To be added. @@ -85,7 +84,6 @@ Event that is raised when the size of the column is changed. - To be added. @@ -110,8 +108,6 @@ Gets or sets the width of the column. - To be added. - To be added. @@ -136,7 +132,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollection.xml index 036752c38d55..894871d12548 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollection.xml @@ -56,7 +56,6 @@ Creates a new empty collection. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollectionTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollectionTypeConverter.xml index 754d90254dcd..2a13043a9f0b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollectionTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ColumnDefinitionCollectionTypeConverter.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -54,9 +50,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Command.xml b/src/Controls/docs/Microsoft.Maui.Controls/Command.xml index b059b06402f0..1b1395a1c6ff 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Command.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Command.xml @@ -76,7 +76,6 @@ var button = new Button { An Action to execute when the Command is executed. Initializes a new instance of the Command class. - To be added. @@ -223,7 +222,6 @@ var button = new Button { Occurs when the target of the Command should reevaluate whether or not the Command can be executed. - To be added. @@ -249,7 +247,6 @@ var button = new Button { Send a - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CompareStateTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/CompareStateTrigger.xml index f4c815eb204a..b33fcaa5acc2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CompareStateTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CompareStateTrigger.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ - To be added. - To be added. @@ -64,9 +58,6 @@ System.Object - To be added. - To be added. - To be added. @@ -83,8 +74,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -101,9 +90,6 @@ System.Object - To be added. - To be added. - To be added. @@ -120,8 +106,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CompressedLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/CompressedLayout.xml index fea4d98519ce..5580986d9076 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CompressedLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CompressedLayout.xml @@ -14,7 +14,6 @@ Contains attached properties for omitting redundant renderers. - To be added. @@ -42,8 +41,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -68,7 +65,6 @@ Gets a Boolean value that tells whether layout compression is enabled for . if layout compression is enabled for . Otherwise, returns . - To be added. @@ -92,7 +88,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -111,7 +106,6 @@ Backing store for the attached property that controls whether compressed layout is enabled. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Condition.xml b/src/Controls/docs/Microsoft.Maui.Controls/Condition.xml index e3fc45ec335c..1b18fa085635 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Condition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Condition.xml @@ -17,7 +17,6 @@ Base class for conditions. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ConstraintType.xml b/src/Controls/docs/Microsoft.Maui.Controls/ConstraintType.xml index 7e353315c4fc..83cea8b6b197 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ConstraintType.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ConstraintType.xml @@ -19,7 +19,6 @@ Enumeration specifying whether a constraint is constant, relative to a view, or relative to its parent. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ContentPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/ContentPage.xml index 28b9089f2b2d..69df06888682 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ContentPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ContentPage.xml @@ -78,7 +78,6 @@ namespace ContentPageExample Initializes a new ContentPage instance. - To be added. @@ -104,7 +103,6 @@ namespace ContentPageExample Gets or sets the view that contains the content of the Page. A subclass, or . - To be added. @@ -123,7 +121,6 @@ namespace ContentPageExample Backing store for the property. - To be added. @@ -143,7 +140,6 @@ namespace ContentPageExample Method that is called when the binding context changes. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ContentPresenter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ContentPresenter.xml index 2a227d3ee6af..74d1ddc7ce07 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ContentPresenter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ContentPresenter.xml @@ -14,7 +14,6 @@ Layout manager for templated views. - To be added. @@ -30,7 +29,6 @@ Creates a new empty with default values - To be added. @@ -49,8 +47,6 @@ Gets or sets the view whose layout is managed by this . - To be added. - To be added. @@ -69,7 +65,6 @@ Backing store for the property. - To be added. @@ -98,7 +93,6 @@ The width of the layout rectangle. The height of the layout rectangle. Lays out the children of the property within the rectangle that is defined by , , , and . - To be added. @@ -131,8 +125,6 @@ The width constraint of the size request. The width constraint of the size request. Method that is raised when a size request is made. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ContentPropertyAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/ContentPropertyAttribute.xml index 81d11302747f..9c253d0e264d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ContentPropertyAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ContentPropertyAttribute.xml @@ -70,7 +70,6 @@ This is equivalent to the following, more explicit XAML The name of the property. Initializes a new instance of the ContentPropertyAttribute class. - To be added. @@ -96,7 +95,6 @@ This is equivalent to the following, more explicit XAML Gets the name of the content property A string representing the name of the content property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ContentView.xml b/src/Controls/docs/Microsoft.Maui.Controls/ContentView.xml index 625ff4eb6324..4325adbae4b4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ContentView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ContentView.xml @@ -112,7 +112,6 @@ MainPage = new ContentPage () { Backing store for the property. - To be added. @@ -132,7 +131,6 @@ MainPage = new ContentPage () { Method that is called when the binding context changes. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ControlTemplate.xml b/src/Controls/docs/Microsoft.Maui.Controls/ControlTemplate.xml index 6402df7cec1d..d5ceec76cacf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ControlTemplate.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ControlTemplate.xml @@ -14,7 +14,6 @@ Template that specifies a group of styles and effects for controls. - To be added. @@ -30,7 +29,6 @@ For internal use only. - To be added. @@ -48,8 +46,6 @@ To be added. - To be added. - To be added. @@ -69,7 +65,6 @@ The type of control for which to create a template. Creates a new control template for the specified control type. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/CurrentItemChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/CurrentItemChangedEventArgs.xml index d2c3af44498a..5f1ca3acf318 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/CurrentItemChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/CurrentItemChangedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Object - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ System.Object - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataPackage.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataPackage.xml index 499a57776f38..d8870c28ae2d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataPackage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataPackage.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -64,9 +57,6 @@ Microsoft.Maui.Controls.DataPackagePropertySet - To be added. - To be added. - To be added. @@ -83,9 +73,6 @@ System.String - To be added. - To be added. - To be added. @@ -102,9 +89,6 @@ Microsoft.Maui.Controls.DataPackageView - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataPackageOperation.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataPackageOperation.xml index ab16212de303..8f8941bbb2d5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataPackageOperation.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataPackageOperation.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -35,7 +33,6 @@ 1 - To be added. @@ -53,7 +50,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySet.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySet.xml index f24fada00c37..27300330b9f5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySet.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySet.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ - To be added. - To be added. @@ -55,8 +51,6 @@ To be added. To be added. - To be added. - To be added. @@ -77,9 +71,6 @@ To be added. - To be added. - To be added. - To be added. @@ -96,9 +87,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -116,9 +104,6 @@ - To be added. - To be added. - To be added. @@ -139,9 +124,6 @@ To be added. - To be added. - To be added. - To be added. @@ -158,9 +140,6 @@ System.Collections.Generic.IEnumerable<System.String> - To be added. - To be added. - To be added. @@ -181,9 +160,6 @@ - To be added. - To be added. - To be added. @@ -206,9 +182,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -225,9 +198,6 @@ System.Collections.Generic.IEnumerable<System.Object> - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySetView.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySetView.xml index a41f326cfb74..88a09e33e9bc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySetView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataPackagePropertySetView.xml @@ -34,8 +34,6 @@ - To be added. - To be added. @@ -53,8 +51,6 @@ To be added. - To be added. - To be added. @@ -71,8 +67,6 @@ Microsoft.Maui.Controls.DataPackagePropertySet - To be added. - To be added. @@ -96,9 +90,6 @@ To be added. - To be added. - To be added. - To be added. @@ -118,9 +109,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -141,9 +129,6 @@ - To be added. - To be added. - To be added. @@ -167,9 +152,6 @@ To be added. - To be added. - To be added. - To be added. @@ -189,9 +171,6 @@ System.Collections.Generic.IEnumerable<System.String> - To be added. - To be added. - To be added. @@ -212,9 +191,6 @@ - To be added. - To be added. - To be added. @@ -237,9 +213,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -259,9 +232,6 @@ System.Collections.Generic.IEnumerable<System.Object> - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataPackageView.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataPackageView.xml index b92c6e4f9e3c..e50726fd8ee7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataPackageView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataPackageView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,9 +29,6 @@ - To be added. - To be added. - To be added. @@ -51,9 +46,6 @@ - To be added. - To be added. - To be added. @@ -70,9 +62,6 @@ Microsoft.Maui.Controls.DataPackagePropertySetView - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataTemplate.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataTemplate.xml index 60ff461527a0..f822bcd81cd9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataTemplate.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataTemplate.xml @@ -41,7 +41,6 @@ For internal use only. - To be added. @@ -68,7 +67,6 @@ A custom content generator to be called Creates and initializes a new instance of the class. - To be added. @@ -95,7 +93,6 @@ The type of control for which to create a template. Creates a new for type . - To be added. @@ -121,8 +118,6 @@ Gets a dictionary of bindings, indexed by the bound properties. - To be added. - To be added. @@ -154,7 +149,6 @@ The property to which to bind. The binding to use. Sets the binding for . - To be added. @@ -186,7 +180,6 @@ The property to set. The new value. Sets the value of . - To be added. @@ -212,8 +205,6 @@ Returns a dictionary of property values for this , indexed by property. - To be added. - To be added. @@ -233,9 +224,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -255,9 +243,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DataTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/DataTrigger.xml index 8077191177d5..0ccedc6e1f4d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DataTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DataTrigger.xml @@ -92,7 +92,6 @@ The type of the object on which the data trigger will be added. Initializes a new instance. - To be added. @@ -114,8 +113,6 @@ Gets or sets the binding whose value will be compared to to determine when to invoke the setters. - To be added. - To be added. @@ -137,8 +134,6 @@ Gets the list of objects that will be applied when the binding that is named by the property becomes equal to . - To be added. - To be added. @@ -160,8 +155,6 @@ Gets or sets the value of the binding, named by the property, that will cause the setters to be applied. - To be added. - To be added. @@ -190,8 +183,6 @@ For internal use by the XAML infrastructure. For internal use by the XAML infrastructure. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DateChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/DateChangedEventArgs.xml index b9f77119765b..43d07adf02c0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DateChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DateChangedEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for event. - To be added. @@ -48,7 +47,6 @@ The old date. The new date. Creates a new object that represents a change from to . - To be added. @@ -73,8 +71,6 @@ The date that the user entered. - To be added. - To be added. @@ -99,8 +95,6 @@ The date that was on the element at the time that the user selected it. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DatePicker.xml b/src/Controls/docs/Microsoft.Maui.Controls/DatePicker.xml index 072c16d0f51c..b4bb612873f7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DatePicker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DatePicker.xml @@ -99,9 +99,6 @@ System.Double - To be added. - To be added. - To be added. @@ -118,8 +115,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -217,8 +212,6 @@ Gets a value that indicates whether the font for the date picker text is bold, italic, or neither. - To be added. - To be added. @@ -237,7 +230,6 @@ Backing store for the property. - To be added. @@ -256,8 +248,6 @@ Gets or sets the font family for the picker text. - To be added. - To be added. @@ -276,7 +266,6 @@ Backing store for the property. - To be added. @@ -301,7 +290,6 @@ Gets or sets the size of the font for the text in the picker. A that indicates the size of the font. - To be added. @@ -320,7 +308,6 @@ Backing store for the property. - To be added. @@ -509,8 +496,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -529,8 +514,6 @@ Gets or sets the text color for the date picker. - To be added. - To be added. @@ -549,7 +532,6 @@ Backing store for the property. - To be added. @@ -566,9 +548,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -585,8 +564,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -609,9 +586,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -634,8 +608,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -663,7 +635,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -691,7 +662,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -719,7 +689,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -747,7 +716,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DependencyAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/DependencyAttribute.xml index 71a65974d557..1ff6fe1507a8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DependencyAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DependencyAttribute.xml @@ -25,7 +25,6 @@ An attribute that indicates that the specified type provides a concrete implementation of a needed interface. - To be added. @@ -51,7 +50,6 @@ The type of the implementor of the dependency. Creates a new with default values. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DependencyService.xml b/src/Controls/docs/Microsoft.Maui.Controls/DependencyService.xml index 2ad65d0e9f64..c0cdf0f85e70 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DependencyService.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DependencyService.xml @@ -20,7 +20,6 @@ Static class that provides the factory method for retrieving platform-specific implementations of the specified type T. - To be added. @@ -57,8 +56,6 @@ The type of object to fetch. The dependency fetch target. Returns the platform-specific implementation of type . - To be added. - To be added. @@ -89,7 +86,6 @@ The type of object to register. Registers the platform-specific implementation of type T. - To be added. @@ -127,7 +123,6 @@ The type of object to register. The implementation to register. Registers the platform-specific implementation of type T. - To be added. @@ -156,8 +151,6 @@ To be added. To be added. - To be added. - To be added. @@ -189,7 +182,6 @@ The fetch target to use if fetching initially fails. The method to use to resolve dependencies by type. The resolved dependency instance. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DesignMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/DesignMode.xml index ded4cbad6bab..475e4f3a4ef5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DesignMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DesignMode.xml @@ -35,7 +35,6 @@ Indicates whether the application is being run in a previewer. if the application is being run in a previewer. if the application is being run on a device or emulator. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Device.xml b/src/Controls/docs/Microsoft.Maui.Controls/Device.xml index 536cb802fec3..8d4c440481b7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Device.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Device.xml @@ -40,7 +40,6 @@ The string "Android", representing the Android operating system. - To be added. @@ -123,7 +122,6 @@ Device.BeginInvokeOnMainThread (() => { Returns the current from the main thread. The current from the main thread. - To be added. @@ -152,7 +150,6 @@ Device.BeginInvokeOnMainThread (() => { The element type for which to calculate the numeric size. Returns a double that represents the named size for the font that is used on the element on the native platform. The named size for the font that is used on the element on the native platform. - To be added. @@ -181,7 +178,6 @@ Device.BeginInvokeOnMainThread (() => { The element for which to calculate the numeric size. Returns a double that represents a font size that corresponds to on . A double that represents a font size that corresponds to on . - To be added. @@ -214,7 +210,6 @@ Device.BeginInvokeOnMainThread (() => { For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -233,7 +228,6 @@ Device.BeginInvokeOnMainThread (() => { The string "GTK", representing the Linux operating system. - To be added. @@ -259,7 +253,6 @@ Device.BeginInvokeOnMainThread (() => { Gets the kind of device that Microsoft.Maui.Controls is currently working on. A that represents the device type. - To be added. @@ -283,7 +276,6 @@ Device.BeginInvokeOnMainThread (() => { For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -307,8 +299,6 @@ Device.BeginInvokeOnMainThread (() => { For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -330,8 +320,6 @@ Device.BeginInvokeOnMainThread (() => { The Action to invoke Invokes an Action on the device main (UI) thread. - To be added. - To be added. @@ -353,8 +341,6 @@ Device.BeginInvokeOnMainThread (() => { The Func to invoke. Invokes a Func on the device main (UI) thread. - To be added. - To be added. @@ -380,8 +366,6 @@ Device.BeginInvokeOnMainThread (() => { The return type of the Func. The Func to invoke. Invokes a Func on the device main (UI) thread. - To be added. - To be added. @@ -407,8 +391,6 @@ Device.BeginInvokeOnMainThread (() => { The return type of the Func. The Func to invoke. Invokes a Func on the device main (UI) thread. - To be added. - To be added. @@ -427,7 +409,6 @@ Device.BeginInvokeOnMainThread (() => { The string "iOS", representing the iOS operating system. - To be added. @@ -451,8 +432,6 @@ Device.BeginInvokeOnMainThread (() => { For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -471,7 +450,6 @@ Device.BeginInvokeOnMainThread (() => { The string "macOS", representing the macOS operating system. - To be added. @@ -644,7 +622,6 @@ button.HeightRequest = Device.OnPlatform (20,30,30); Gets the indicating the OS Microsoft.Maui.Controls is working on. A that indicates the current OS. - To be added. @@ -668,8 +645,6 @@ button.HeightRequest = Device.OnPlatform (20,30,30); For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -688,8 +663,6 @@ button.HeightRequest = Device.OnPlatform (20,30,30); Gets the kind of device that Microsoft.Maui.Controls is currently working on. - To be added. - To be added. @@ -755,7 +728,6 @@ Device.StartTimer (new TimeSpan (0, 0, 60), () => The string "Tizen", representing the Tizen operating system. - To be added. @@ -774,7 +746,6 @@ Device.StartTimer (new TimeSpan (0, 0, 60), () => The string "UWP", representing the UWP operating system. - To be added. @@ -793,7 +764,6 @@ Device.StartTimer (new TimeSpan (0, 0, 60), () => The string "WPF", representing the Windows Presentation Foundation framework. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DeviceStateTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/DeviceStateTrigger.xml index 228d30a23cbf..9f62a6aaf78b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DeviceStateTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DeviceStateTrigger.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.String - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollection.xml index 69ea7f93b090..ea2a0074fd38 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollection.xml @@ -20,8 +20,6 @@ - To be added. - To be added. @@ -35,8 +33,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollectionConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollectionConverter.xml index 8a116b72a465..85c381250ccd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollectionConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DoubleCollectionConverter.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DropCompletedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/DropCompletedEventArgs.xml index 3ee637c2cc81..94416cd33ca7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DropCompletedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DropCompletedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/DropGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/DropGestureRecognizer.xml index bb32c720763a..819184c71176 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/DropGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/DropGestureRecognizer.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,8 +73,6 @@ System.EventHandler<Microsoft.Maui.Controls.DragEventArgs> - To be added. - To be added. @@ -100,9 +89,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -119,9 +105,6 @@ System.Object - To be added. - To be added. - To be added. @@ -138,8 +121,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -156,8 +137,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -174,8 +153,6 @@ System.EventHandler<Microsoft.Maui.Controls.DragEventArgs> - To be added. - To be added. @@ -192,9 +169,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -211,9 +185,6 @@ System.Object - To be added. - To be added. - To be added. @@ -230,8 +201,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -248,8 +217,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -266,8 +233,6 @@ System.EventHandler<Microsoft.Maui.Controls.DropEventArgs> - To be added. - To be added. @@ -284,9 +249,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -303,9 +265,6 @@ System.Object - To be added. - To be added. - To be added. @@ -322,8 +281,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -340,8 +297,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -367,8 +322,6 @@ To be added. - To be added. - To be added. @@ -394,8 +347,6 @@ To be added. - To be added. - To be added. @@ -421,9 +372,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EasingTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/EasingTypeConverter.xml index a5fc9b9b76b6..1176e885804d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EasingTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EasingTypeConverter.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -54,9 +50,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Editor.xml b/src/Controls/docs/Microsoft.Maui.Controls/Editor.xml index 4e8c864e3e20..9c5337e77fb0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Editor.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Editor.xml @@ -122,7 +122,6 @@ var editor = new Editor { Backing store for the property that controls whether the editor will change size to accommodate input as the user enters it. - To be added. @@ -139,8 +138,6 @@ var editor = new Editor { Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -183,8 +180,6 @@ var editor = new Editor { Gets a value that indicates whether the font for the editor is bold, italic, or neither. - To be added. - To be added. @@ -204,7 +199,6 @@ var editor = new Editor { Backing store for the FontAttributes property. - To be added. @@ -224,8 +218,6 @@ var editor = new Editor { Gets the font family to which the font for the editor belongs. - To be added. - To be added. @@ -245,7 +237,6 @@ var editor = new Editor { Backing store for the FontFamily property. - To be added. @@ -270,8 +261,6 @@ var editor = new Editor { Gets the size of the font for the editor. - To be added. - To be added. @@ -291,7 +280,6 @@ var editor = new Editor { Backing store for the FontSize property. - To be added. @@ -308,9 +296,6 @@ var editor = new Editor { System.Boolean - To be added. - To be added. - To be added. @@ -328,7 +313,6 @@ var editor = new Editor { The backing store for the field. - To be added. @@ -359,8 +343,6 @@ var editor = new Editor { To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -383,8 +365,6 @@ var editor = new Editor { To be added. To be added. - To be added. - To be added. @@ -403,7 +383,6 @@ var editor = new Editor { Backing store for the property. - To be added. @@ -422,7 +401,6 @@ var editor = new Editor { Backing store for the property. - To be added. @@ -450,7 +428,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -470,7 +447,6 @@ var editor = new Editor { Backing store for the property. - To be added. @@ -516,7 +492,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -539,8 +514,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -568,7 +541,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -596,7 +568,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -624,7 +595,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -652,7 +622,6 @@ var editor = new Editor { For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EditorAutoSizeOption.xml b/src/Controls/docs/Microsoft.Maui.Controls/EditorAutoSizeOption.xml index 76fdecc2f5dd..6e6ad679e801 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EditorAutoSizeOption.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EditorAutoSizeOption.xml @@ -13,7 +13,6 @@ Enumerates values that control whether an editor will change size to accommodate input as the user enters it. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Effect.xml b/src/Controls/docs/Microsoft.Maui.Controls/Effect.xml index 1dc414aaa9c9..0f8ab1b4eb89 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Effect.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Effect.xml @@ -36,7 +36,6 @@ Gets the element to which the style is attached. The to which the property is attached, if the property is attached. Otherwise, . - To be added. @@ -55,8 +54,6 @@ Gets a value that tells whether the effect is attached to an element. - To be added. - To be added. @@ -76,7 +73,6 @@ Method that is called after the effect is attached and made valid. - To be added. @@ -96,7 +92,6 @@ Method that is called after the effect is detached and invalidated. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EffectiveFlowDirectionExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/EffectiveFlowDirectionExtensions.xml index 2db32a848756..7786a199c992 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EffectiveFlowDirectionExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EffectiveFlowDirectionExtensions.xml @@ -19,7 +19,6 @@ Extension methods for finding out the flow direction and whether it was explicitly set. - To be added. @@ -44,7 +43,6 @@ Returns if the developer set the flow direction on the current object. Returns if the flow direction is inherited or was not set by the developer. if the developer set the flow direction on the current object, or if the flow direction is inherited or was not set by the developer. - To be added. @@ -69,7 +67,6 @@ Returns if the developer set the flow direction on the current object. Returns if the flow direction is inherited or was not set by the developer. if the developer set the flow direction on the current object, or if the flow direction is inherited or was not set by the developer. - To be added. @@ -94,7 +91,6 @@ Returns if the flow direction is left-to-right. Otherwise, returns . if the flow direction is left-to-right. Otherwise, . - To be added. @@ -119,7 +115,6 @@ Returns if the flow direction is right-to-left. Otherwise, returns . if the flow direction is right-to-left. Otherwise, . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EffectiveVisualExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/EffectiveVisualExtensions.xml index 883ff8307087..fcb56d7d860e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EffectiveVisualExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EffectiveVisualExtensions.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -39,9 +37,6 @@ To be added. - To be added. - To be added. - To be added. @@ -62,9 +57,6 @@ To be added. - To be added. - To be added. - To be added. @@ -85,9 +77,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ElementEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ElementEventArgs.xml index fe6b6902c537..5c3387f1e86a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ElementEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ElementEventArgs.xml @@ -51,7 +51,6 @@ The element relevant to the event. Constructs and initializes a new instance of the class. - To be added. @@ -77,7 +76,6 @@ Gets the element relevant to the event. The element relevant to the event. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ElementTemplate.xml b/src/Controls/docs/Microsoft.Maui.Controls/ElementTemplate.xml index e1bfe1f21eb7..ff81956fc5fb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ElementTemplate.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ElementTemplate.xml @@ -18,7 +18,6 @@ Base class for and classes. - To be added. @@ -38,8 +37,6 @@ Used by the XAML infrastructure to load data templates and set up the content of the resulting UI. - To be added. - To be added. @@ -61,8 +58,6 @@ For internal use only. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EntryCell.xml b/src/Controls/docs/Microsoft.Maui.Controls/EntryCell.xml index 4631abb14b49..dbd2230d8cee 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EntryCell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EntryCell.xml @@ -146,8 +146,6 @@ namespace FormsGallery Gets or sets the horizontal alignement of the Text property. This is a bindable property. - To be added. - To be added. @@ -167,7 +165,6 @@ namespace FormsGallery Identifies the HorizontalTextAlignment bindable property. - To be added. @@ -408,7 +405,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -479,9 +475,6 @@ namespace FormsGallery Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -498,8 +491,6 @@ namespace FormsGallery Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/EventTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/EventTrigger.xml index 972fe70e9524..47465c5651ce 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/EventTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/EventTrigger.xml @@ -86,7 +86,6 @@ Creates a new instance. - To be added. @@ -110,7 +109,6 @@ Gets the list of objects that will be invoked when the event that is identified by the property is raised. - To be added. @@ -134,7 +132,6 @@ Gets or sets the name of the event that will cause the actions that are contained in the to be invoked. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ExportFontAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/ExportFontAttribute.xml index cb1c0f432295..98ef61063081 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ExportFontAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ExportFontAttribute.xml @@ -20,8 +20,6 @@ - To be added. - To be added. @@ -39,8 +37,6 @@ To be added. - To be added. - To be added. @@ -57,9 +53,6 @@ System.String - To be added. - To be added. - To be added. @@ -76,9 +69,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FileImageSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/FileImageSource.xml index b8be5e286ab6..201ebf59f572 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FileImageSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FileImageSource.xml @@ -25,7 +25,6 @@ An that reads an image from a file. - To be added. @@ -47,7 +46,6 @@ Creates a new object with default values. - To be added. @@ -99,8 +97,6 @@ Gets or sets the file from which this will load an image. - To be added. - To be added. @@ -125,7 +121,6 @@ Backing store for the property. - To be added. @@ -145,7 +140,6 @@ Indicates whether the property is null or empty. if null or empty. - To be added. @@ -174,7 +168,6 @@ To be added. Method that is called when the property that is specified by is changed. - To be added. @@ -201,8 +194,6 @@ To be added. Allows implicit casting from a string. - To be added. - To be added. @@ -229,8 +220,6 @@ To be added. Allows implicit casting to a string. - To be added. - To be added. @@ -250,8 +239,6 @@ Returns the path to the file for the image, prefixed with the string, "File: ". - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FileImageSourceConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/FileImageSourceConverter.xml index 26935932e253..5187177a054f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FileImageSourceConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FileImageSourceConverter.xml @@ -20,7 +20,6 @@ A that converts to . - To be added. @@ -37,7 +36,6 @@ Creates a new with default values. - To be added. @@ -60,8 +58,6 @@ The value to convert. Creates a file image source given a path to an image. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlexLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlexLayout.xml index b577fca80b01..3cd6cc97d312 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlexLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlexLayout.xml @@ -38,7 +38,6 @@ Creates a new with default values. - To be added. @@ -57,7 +56,6 @@ Gets or sets a value that controls how multiple rows or columns of child elements are aligned. - To be added. This property behaves similarly to , but applies to how entire rows or columns are aligned, not individual elements. The below image illustrates three different values working on wrapped rows. The iOS screenshot shows , the Android screenshot shows , and the UWP screenshot shows . @@ -82,7 +80,6 @@ Backing store for the property. - To be added. @@ -126,7 +123,6 @@ Backing store for the property. - To be added. @@ -145,7 +141,6 @@ Backing store for the attached property that optionally overrides the item alignment for this child within its row or column in the parent. - To be added. @@ -164,7 +159,6 @@ Backing store for the attached property that contains information about this element's relative or absolute basis. - To be added. @@ -208,7 +202,6 @@ Backing store for the property. - To be added. @@ -232,7 +225,6 @@ The object for which to retrieve the property value. Returns the value that optionally overrides the item alignment for this child within its row or column in the parent. The value that optionally overrides the item alignment for this child within its row or column in the parent. - To be added. @@ -256,7 +248,6 @@ The object for which to retrieve the property value. Returns the value that describes this element's relative or absolute basis length. The value that describes this element's relative or absolute basis length. - To be added. @@ -280,7 +271,6 @@ The object for which to retrieve the property value. Returns the value that determines the proportional growth that this element will accept to acccommodate the layout in the row or column. The value that determines the proportional growth that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -304,7 +294,6 @@ The object for which to retrieve the property value. Returns the visual order of the element among its siblings. The visual order of the element among its siblings. - To be added. @@ -328,7 +317,6 @@ The object for which to retrieve the property value. Returns the value that determines the proportional reduction in size that this element will accept to acccommodate the layout in the row or column. The proportional reduction in size that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -347,7 +335,6 @@ Backing store for the attached property that determines the proportional growth that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -391,7 +378,6 @@ Backing store for the property. - To be added. @@ -420,7 +406,6 @@ The width of the rectangle. The height of the rectangle. Lays out the in the specified rectangle. - To be added. @@ -443,7 +428,6 @@ The view to which the layout was added. Method that is called when the flex layout is added to a view. - To be added. @@ -468,8 +452,6 @@ The width constraint. The height constraint. Method that is called to request that the layout measure its child elements. - To be added. - To be added. @@ -489,7 +471,6 @@ Method that is called when the layout's parent is set. - To be added. @@ -512,7 +493,6 @@ The view from which the layout was removed. Method that is called when the layout is removed from a view. - To be added. @@ -531,7 +511,6 @@ Backing store for the attached property that determines this element's visual order among its siblings. - To be added. @@ -551,7 +530,6 @@ Gets or sets a value that controls whether the coordinates of child elements are specified in absolute or relative terms. A value that controls whether the coordinates of child elements are specified in absolute or relative terms. - To be added. @@ -570,7 +548,6 @@ Backing store for the property. - To be added. @@ -625,7 +602,6 @@ The object for which to retrieve the property value. The new flex basis value. Sets the value that describes this element's relative or absolute basis length. - To be added. @@ -650,7 +626,6 @@ The object for which to retrieve the property value. The new flex growth value. Sets the value that determines the proportional growth that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -706,7 +681,6 @@ The object for which to retrieve the property value. The new flex shrink value. Sets the value that determines the proportional reduction in size that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -725,7 +699,6 @@ Backing store for the attached property that determines the proportional reduction in size that this element will accept to acccommodate the layout in the row or column. - To be added. @@ -745,7 +718,6 @@ Gets or sets a value that controls whether and how child elements within this layout wrap. A value that controls whether and how child elements within this layout wrap. - To be added. @@ -764,7 +736,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutDisplayOptions.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutDisplayOptions.xml index e509499521e4..669dba21da4c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutDisplayOptions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutDisplayOptions.xml @@ -12,7 +12,6 @@ Enumerates display modes for the flyout in a Shell appication. - To be added. @@ -30,7 +29,6 @@ 1 - To be added. @@ -48,7 +46,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutHeaderBehavior.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutHeaderBehavior.xml index f43e8a2e78ee..bfc44af5d5b0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutHeaderBehavior.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutHeaderBehavior.xml @@ -12,7 +12,6 @@ Enumeration of modes followed by the . - To be added. @@ -66,7 +65,6 @@ 1 - To be added. @@ -84,7 +82,6 @@ 2 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutItem.xml index 77c4ce7b1a7a..9b3d6783fbc9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutItem.xml @@ -18,7 +18,6 @@ A that has a collection of objects. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -54,9 +51,6 @@ To be added. - To be added. - To be added. - To be added. @@ -74,7 +68,6 @@ StyleClass set on the Image of each Flyout Item. This const is set to "FlyoutItemImageStyle". - To be added. @@ -91,8 +84,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -110,7 +101,6 @@ StyleClass set on the Label of each Flyout Item. This const is set to "FlyoutItemLabelStyle". - To be added. @@ -128,7 +118,6 @@ StyleClass set on the Label of every Flyout Item. This const is set to "FlyoutItemLayoutStyle". - To be added. @@ -151,8 +140,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutLayoutBehavior.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutLayoutBehavior.xml index c9353466a171..c7726c83e071 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutLayoutBehavior.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutLayoutBehavior.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 3 - To be added. @@ -66,7 +62,6 @@ 2 - To be added. @@ -84,7 +79,6 @@ 1 - To be added. @@ -102,7 +96,6 @@ 4 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutPage.xml index 0a9ee2abe504..b2a3a4896b3b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FlyoutPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FlyoutPage.xml @@ -24,8 +24,6 @@ - To be added. - To be added. @@ -39,8 +37,6 @@ - To be added. - To be added. @@ -65,8 +61,6 @@ System.EventHandler<Microsoft.Maui.Controls.BackButtonPressedEventArgs> - To be added. - To be added. @@ -91,9 +85,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -110,9 +101,6 @@ Microsoft.Maui.Controls.Page - To be added. - To be added. - To be added. @@ -137,9 +125,6 @@ Microsoft.Maui.Controls.Shapes.Rectangle - To be added. - To be added. - To be added. @@ -156,9 +141,6 @@ Microsoft.Maui.Controls.Page - To be added. - To be added. - To be added. @@ -183,9 +165,6 @@ Microsoft.Maui.Controls.Shapes.Rectangle - To be added. - To be added. - To be added. @@ -202,9 +181,6 @@ Microsoft.Maui.Controls.FlyoutLayoutBehavior - To be added. - To be added. - To be added. @@ -221,8 +197,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -239,9 +213,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -258,8 +229,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -276,9 +245,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -295,8 +261,6 @@ System.EventHandler - To be added. - To be added. @@ -313,8 +277,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -341,8 +303,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -371,9 +331,6 @@ To be added. - To be added. - To be added. - To be added. @@ -391,8 +348,6 @@ - To be added. - To be added. @@ -410,9 +365,6 @@ - To be added. - To be added. - To be added. @@ -430,8 +382,6 @@ - To be added. - To be added. @@ -456,9 +406,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -476,9 +423,6 @@ - To be added. - To be added. - To be added. @@ -504,8 +448,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FocusEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/FocusEventArgs.xml index cc8b0021f66c..da1414e7c377 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FocusEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FocusEventArgs.xml @@ -49,7 +49,6 @@ The whose focused was changed. Whether or not the was focused. Constructs and initializes a new instance of the class. - To be added. @@ -76,7 +75,6 @@ Gets whether or not the was focused. if the view was focused, otherwise. - To be added. @@ -102,7 +100,6 @@ Gets the who's focused was changed. The who's focused was changed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FontAttributes.xml b/src/Controls/docs/Microsoft.Maui.Controls/FontAttributes.xml index 3ae071ed624a..59263de78cbd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FontAttributes.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FontAttributes.xml @@ -25,7 +25,6 @@ Enumerates values that describe font styles. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FontAttributesConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/FontAttributesConverter.xml index ff6e0dfbba1b..34b50ff06ece 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FontAttributesConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FontAttributesConverter.xml @@ -18,7 +18,6 @@ Converts a string into a object. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -54,9 +51,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FontImageSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/FontImageSource.xml index 4ba87c6bbdfb..d6a4a1a9e098 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FontImageSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FontImageSource.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -65,7 +58,6 @@ The backing store for the field. - To be added. @@ -82,9 +74,6 @@ System.String - To be added. - To be added. - To be added. @@ -102,7 +91,6 @@ The backing store for the field. - To be added. @@ -119,9 +107,6 @@ System.String - To be added. - To be added. - To be added. @@ -139,7 +124,6 @@ The backing store for the field. - To be added. @@ -157,8 +141,6 @@ Indicates whether the property is null or empty. - To be added. - To be added. @@ -180,9 +162,6 @@ System.Double - To be added. - To be added. - To be added. @@ -200,7 +179,6 @@ The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FontSizeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/FontSizeConverter.xml index 81fbec891484..98a3afa45f24 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FontSizeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FontSizeConverter.xml @@ -26,7 +26,6 @@ Converts a string into a font size. - To be added. @@ -45,7 +44,6 @@ Initializes a new object. - To be added. @@ -68,8 +66,6 @@ The value to convert. Converts a string representation of a font size into a font size. - To be added. - To be added. @@ -109,8 +105,6 @@ For internal use only. For internal use only. For internal use only. - To be added. - To be added. @@ -138,8 +132,6 @@ For internal use only. For internal use only. For internal use only. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FontTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/FontTypeConverter.xml index 868068a65d02..381c25c224cd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FontTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FontTypeConverter.xml @@ -47,7 +47,6 @@ Creates a new with default values. - To be added. @@ -70,8 +69,6 @@ The value to convert. Converts into a . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/FormattedString.xml b/src/Controls/docs/Microsoft.Maui.Controls/FormattedString.xml index 58ad04c04197..a28b0ea66681 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/FormattedString.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/FormattedString.xml @@ -45,7 +45,6 @@ Initializes a new instance of the FormattedString class. - To be added. @@ -65,7 +64,6 @@ Method that is called when the binding context is changed. - To be added. @@ -92,8 +90,6 @@ The formatted string to cast. Cast the FormattedString to a string, stripping all the attributes. - To be added. - To be added. @@ -120,8 +116,6 @@ The text to cast. Cast a string to a FormattedString that contains a single span with no attribute set. - To be added. - To be added. @@ -144,8 +138,6 @@ Gets the collection of spans. - To be added. - To be added. @@ -169,8 +161,6 @@ Returns the text of the formatted string as an unformatted string. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Frame.xml b/src/Controls/docs/Microsoft.Maui.Controls/Frame.xml index d370ce3106b3..17bcd3d4b853 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Frame.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Frame.xml @@ -97,7 +97,6 @@ Gets or sets the border color for the frame. The border color for the frame. - To be added. @@ -116,7 +115,6 @@ Backing store for the property. - To be added. @@ -135,8 +133,6 @@ Gets or sets the corner radius of the frame. - To be added. - To be added. @@ -155,7 +151,6 @@ Backing store for the property. - To be added. @@ -239,8 +234,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -329,9 +322,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -351,9 +341,6 @@ System.Double - To be added. - To be added. - To be added. @@ -373,9 +360,6 @@ System.Double - To be added. - To be added. - To be added. @@ -395,9 +379,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -417,9 +398,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -440,9 +418,6 @@ - To be added. - To be added. - To be added. @@ -463,9 +438,6 @@ - To be added. - To be added. - To be added. @@ -486,9 +458,6 @@ - To be added. - To be added. - To be added. @@ -509,9 +478,6 @@ - To be added. - To be added. - To be added. @@ -532,9 +498,6 @@ - To be added. - To be added. - To be added. @@ -560,8 +523,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GestureElement.xml b/src/Controls/docs/Microsoft.Maui.Controls/GestureElement.xml index 6f768d3bec24..51a18ecde7bb 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GestureElement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GestureElement.xml @@ -21,7 +21,6 @@ An element that can respond to gestures. - To be added. @@ -37,7 +36,6 @@ Creates a new object with default values. - To be added. @@ -60,7 +58,6 @@ Gets the list of recognizers that belong to the element. The list of recognizers that belong to the element. - To be added. @@ -83,7 +80,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GestureState.xml b/src/Controls/docs/Microsoft.Maui.Controls/GestureState.xml index edda6b148ea5..4913f46abd13 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GestureState.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GestureState.xml @@ -19,7 +19,6 @@ Enumeration specifying the various states of a gesture. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GradientBrush.xml b/src/Controls/docs/Microsoft.Maui.Controls/GradientBrush.xml index c3dddb887fd9..b12fc8842f42 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GradientBrush.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GradientBrush.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ Microsoft.Maui.Controls.GradientStopCollection - To be added. - To be added. - To be added. @@ -69,8 +62,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -87,8 +78,6 @@ System.EventHandler - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GradientStop.xml b/src/Controls/docs/Microsoft.Maui.Controls/GradientStop.xml index 2c58b5881634..21c0242e516b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GradientStop.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GradientStop.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -48,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -66,9 +60,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -85,8 +76,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -107,9 +96,6 @@ To be added. - To be added. - To be added. - To be added. @@ -127,9 +113,6 @@ - To be added. - To be added. - To be added. @@ -146,9 +129,6 @@ System.Single - To be added. - To be added. - To be added. @@ -165,8 +145,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GradientStopCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/GradientStopCollection.xml index 056abe3de94e..1e331babfb43 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GradientStopCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GradientStopCollection.xml @@ -15,8 +15,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Grid.xml b/src/Controls/docs/Microsoft.Maui.Controls/Grid.xml index 53b4519c2173..39789ea2ebee 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Grid.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Grid.xml @@ -454,7 +454,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -491,7 +490,6 @@ Lays out the child elements when the layout is invalidated. - To be added. @@ -522,8 +520,6 @@ The platform configuration that selects the platform specific to use. Returns the configuration object that the developer can use to call platform-specific methods for the grid control. - To be added. - To be added. @@ -575,7 +571,6 @@ Application developers override this to respond when the binding context changes. - To be added. @@ -604,7 +599,6 @@ The element that was removed. Method that is called when a child is removed from this element. - To be added. @@ -646,7 +640,6 @@ The new requested size. - To be added. @@ -704,7 +697,6 @@ Implements the property, and allows the class to bind it to properties on other objects at run time. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GridItemsLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/GridItemsLayout.xml index e8ff4a527ec4..f43c0f50fddf 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GridItemsLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GridItemsLayout.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. @@ -52,8 +48,6 @@ To be added. To be added. - To be added. - To be added. @@ -70,9 +64,6 @@ System.Double - To be added. - To be added. - To be added. @@ -89,8 +80,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -107,9 +96,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -127,7 +113,6 @@ The backing store for the field. - To be added. @@ -144,9 +129,6 @@ System.Double - To be added. - To be added. - To be added. @@ -163,8 +145,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GridLengthTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/GridLengthTypeConverter.xml index 9ab1f7c82556..522551749b6a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GridLengthTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GridLengthTypeConverter.xml @@ -61,7 +61,6 @@ Creates a new object with default values. - To be added. @@ -84,8 +83,6 @@ The value to convert. Converts a valid grid length descriptor in to a . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/GroupableItemsView.xml b/src/Controls/docs/Microsoft.Maui.Controls/GroupableItemsView.xml index a162cc610b25..7d7ff62718cd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/GroupableItemsView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/GroupableItemsView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,9 +73,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -101,8 +89,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -119,9 +105,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -138,8 +121,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/HandlerAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/HandlerAttribute.xml index 4575658cb5d0..150b0aba19d2 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/HandlerAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/HandlerAttribute.xml @@ -25,7 +25,6 @@ An abstract attribute whose subclasses specify the platform-specific renderers for Microsoft.Maui.Controls abstract controls. - To be added. @@ -45,8 +44,6 @@ To be added. To be added. - To be added. - To be added. @@ -68,8 +65,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -91,9 +86,6 @@ System.Int16 - To be added. - To be added. - To be added. @@ -119,8 +111,6 @@ Returns a Boolean value that indicates whether the runtime should automatically register the handler for the target. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/HtmlWebViewSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/HtmlWebViewSource.xml index 24d257dc23dd..f81d9dbda22e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/HtmlWebViewSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/HtmlWebViewSource.xml @@ -20,7 +20,6 @@ A WebViewSource bound to an HTML-formatted string. - To be added. @@ -42,7 +41,6 @@ Creates a new empty object with default values. - To be added. @@ -67,8 +65,6 @@ The base URL for the source HTML document. - To be added. - To be added. @@ -93,7 +89,6 @@ Backing store for the property. - To be added. @@ -118,8 +113,6 @@ The HTML content. - To be added. - To be added. @@ -144,7 +137,6 @@ Backing store for the property. - To be added. @@ -172,7 +164,6 @@ The renderer into which to load html content. Loads the specified with the current base URL and HTML. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Image.xml b/src/Controls/docs/Microsoft.Maui.Controls/Image.xml index df100b290b21..8c93efaa5a0c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Image.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Image.xml @@ -109,7 +109,6 @@ var image = new Image { Source = "picture.png" };]]> Gets or sets the scaling mode for the image. This is a bindable property. A representing the scaling mode of the image. Default is . - To be added. @@ -134,7 +133,6 @@ var image = new Image { Source = "picture.png" };]]> Identifies the Aspect bindable property. - To be added. @@ -151,9 +149,6 @@ var image = new Image { Source = "picture.png" };]]> System.Boolean - To be added. - To be added. - To be added. @@ -170,8 +165,6 @@ var image = new Image { Source = "picture.png" };]]> Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -297,7 +290,6 @@ indicator.BindingContext = image;]]> Backing store for the IsOpaque bindable property. - To be added. @@ -328,8 +320,6 @@ indicator.BindingContext = image;]]> To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -427,7 +417,6 @@ indicator.BindingContext = image;]]> Whether the image is loading. Sets a value that indicates whether the image is currently loading. - To be added. @@ -458,7 +447,6 @@ indicator.BindingContext = image;]]> Gets or sets the source of the image. This is a bindable property. An representing the image source. Default is null. - To be added. @@ -483,7 +471,6 @@ indicator.BindingContext = image;]]> Identifies the Source bindable property. - To be added. @@ -504,9 +491,6 @@ indicator.BindingContext = image;]]> - To be added. - To be added. - To be added. @@ -532,8 +516,6 @@ indicator.BindingContext = image;]]> To be added. To be added. - To be added. - To be added. @@ -554,8 +536,6 @@ indicator.BindingContext = image;]]> - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ImageButton.xml b/src/Controls/docs/Microsoft.Maui.Controls/ImageButton.xml index 45ac510f37bd..347713a30e35 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ImageButton.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ImageButton.xml @@ -42,8 +42,6 @@ - To be added. - To be added. @@ -57,8 +55,6 @@ - To be added. - To be added. @@ -75,9 +71,6 @@ Microsoft.Maui.Aspect - To be added. - To be added. - To be added. @@ -95,7 +88,6 @@ The backing store for the field. - To be added. @@ -112,9 +104,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -132,7 +121,6 @@ The backing store for the field. - To be added. @@ -149,9 +137,6 @@ System.Double - To be added. - To be added. - To be added. @@ -169,7 +154,6 @@ The backing store for the field. - To be added. @@ -187,8 +171,6 @@ - To be added. - To be added. @@ -205,8 +187,6 @@ System.EventHandler - To be added. - To be added. @@ -223,9 +203,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -242,9 +219,6 @@ System.Object - To be added. - To be added. - To be added. @@ -262,7 +236,6 @@ The backing store for the field. - To be added. @@ -280,7 +253,6 @@ The backing store for the field. - To be added. @@ -297,9 +269,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -317,7 +286,6 @@ The backing store for the field. - To be added. @@ -337,9 +305,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -357,7 +322,6 @@ The backing store for the field. - To be added. @@ -374,9 +338,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -394,7 +355,6 @@ The backing store for the field. - To be added. @@ -411,9 +371,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -431,7 +388,6 @@ The backing store for the field. - To be added. @@ -460,9 +416,6 @@ To be added. - To be added. - To be added. - To be added. @@ -480,8 +433,6 @@ - To be added. - To be added. @@ -504,9 +455,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -523,9 +471,6 @@ Microsoft.Maui.Thickness - To be added. - To be added. - To be added. @@ -543,7 +488,6 @@ The backing store for the field. - To be added. @@ -560,8 +504,6 @@ System.EventHandler - To be added. - To be added. @@ -579,8 +521,6 @@ - To be added. - To be added. @@ -598,8 +538,6 @@ - To be added. - To be added. @@ -617,8 +555,6 @@ - To be added. - To be added. @@ -639,8 +575,6 @@ - To be added. - To be added. @@ -657,8 +591,6 @@ System.EventHandler - To be added. - To be added. @@ -684,8 +616,6 @@ - To be added. - To be added. @@ -711,8 +641,6 @@ - To be added. - To be added. @@ -738,8 +666,6 @@ - To be added. - To be added. @@ -768,8 +694,6 @@ To be added. - To be added. - To be added. @@ -795,8 +719,6 @@ To be added. - To be added. - To be added. @@ -818,9 +740,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -838,7 +757,6 @@ The backing store for the field. - To be added. @@ -858,9 +776,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -880,9 +795,6 @@ System.Double - To be added. - To be added. - To be added. @@ -902,9 +814,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -925,9 +834,6 @@ - To be added. - To be added. - To be added. @@ -948,9 +854,6 @@ - To be added. - To be added. - To be added. @@ -971,9 +874,6 @@ - To be added. - To be added. - To be added. @@ -994,9 +894,6 @@ - To be added. - To be added. - To be added. @@ -1017,9 +914,6 @@ - To be added. - To be added. - To be added. @@ -1045,8 +939,6 @@ To be added. To be added. - To be added. - To be added. @@ -1067,9 +959,6 @@ - To be added. - To be added. - To be added. @@ -1089,9 +978,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -1117,8 +1003,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ImageSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/ImageSource.xml index c92ccf7d1cf2..84a6e5a117e6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ImageSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ImageSource.xml @@ -26,7 +26,6 @@ Abstract class whose implementors load images from files or the Web. - To be added. @@ -42,7 +41,6 @@ Creates a new with default values. - To be added. @@ -125,8 +123,6 @@ The name of a file that contains a valid image. Returns a new that reads from . - To be added. - To be added. @@ -152,8 +148,6 @@ The name of a valid image resource in . The source assembly in which to search for the image. Creates a from the specified resource in the specified source assembly. - To be added. - To be added. @@ -179,8 +173,6 @@ The name of a valid image resource in the assembly to which belongs. A type from the assembly in which to look up the image resource with . Creates a from the specified resource in the specified source assembly. - To be added. - To be added. @@ -262,8 +254,6 @@ A URI that identifies a valid image. Returns a new that reads from . - To be added. - To be added. @@ -280,9 +270,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -363,7 +350,6 @@ Called by inheritors to indicate that the source changed. - To be added. @@ -392,8 +378,6 @@ A string that represents an image location. Allows implicit casting from a string that represents an absolute URI. - To be added. - To be added. @@ -422,8 +406,6 @@ A absolute URI that specifies an image location. Allows implicit casting from objects that were created with an absolute URI. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ImageSourceConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ImageSourceConverter.xml index 4365a823f92b..ebd24f8db0ce 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ImageSourceConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ImageSourceConverter.xml @@ -20,7 +20,6 @@ Class that takes a string representation of an image file location and returns a from the specified resource. - To be added. @@ -37,7 +36,6 @@ Creates a new with default values. - To be added. @@ -60,8 +58,6 @@ The value to convert. Returns an image source created from a URI that is contained in . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/IndicatorShape.xml b/src/Controls/docs/Microsoft.Maui.Controls/IndicatorShape.xml index 51382b743c76..c5be58bdd204 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/IndicatorShape.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/IndicatorShape.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/IndicatorView.xml b/src/Controls/docs/Microsoft.Maui.Controls/IndicatorView.xml index b47938892af0..5341ee64e1c1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/IndicatorView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/IndicatorView.xml @@ -20,8 +20,6 @@ - To be added. - To be added. @@ -35,8 +33,6 @@ - To be added. - To be added. @@ -53,9 +49,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -72,8 +65,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -90,9 +81,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -109,8 +97,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -127,9 +113,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -146,8 +129,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -164,9 +145,6 @@ Microsoft.Maui.Controls.Layout<Microsoft.Maui.Controls.View> - To be added. - To be added. - To be added. @@ -183,9 +161,6 @@ System.Double - To be added. - To be added. - To be added. @@ -202,8 +177,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -220,9 +193,6 @@ Microsoft.Maui.Controls.IndicatorShape - To be added. - To be added. - To be added. @@ -239,8 +209,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -257,9 +225,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -276,8 +241,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -294,9 +257,6 @@ System.Collections.IEnumerable - To be added. - To be added. - To be added. @@ -313,8 +273,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -331,9 +289,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -350,8 +305,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -374,9 +327,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -393,9 +343,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -412,8 +359,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -430,9 +375,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -449,8 +391,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/InitializationFlags.xml b/src/Controls/docs/Microsoft.Maui.Controls/InitializationFlags.xml index b5d29f0bffc1..f15106364412 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/InitializationFlags.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/InitializationFlags.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -35,7 +33,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/InputView.xml b/src/Controls/docs/Microsoft.Maui.Controls/InputView.xml index 393586bfebfd..957c3e26ffd5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/InputView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/InputView.xml @@ -39,7 +39,6 @@ Gets or sets a value that indicates the number of device-independent units that should be in between characters in the text displayed by the Entry. Applies to Text and Placeholder. The number of device-independent units that should be in between characters in the text. - To be added. @@ -57,7 +56,6 @@ Backing store for the property. - To be added. @@ -94,7 +92,6 @@ Backing store for the property. - To be added. @@ -120,7 +117,6 @@ Gets or sets the Keyboard for the InputView. This is a bindable property. The to use for the InputView. - To be added. @@ -145,7 +141,6 @@ Backing store for the property. - To be added. @@ -165,7 +160,6 @@ Gets or sets the maximum allowed length of input. An integer in the interval [0,int.MaxValue]. The default value is Int.MaxValue. - To be added. @@ -184,7 +178,6 @@ Backing store for the property. - To be added. @@ -207,8 +200,6 @@ To be added. To be added. - To be added. - To be added. @@ -231,8 +222,6 @@ To be added. To be added. - To be added. - To be added. @@ -251,7 +240,6 @@ Gets or sets the text that is displayed when the control is empty. The text that is displayed when the control is empty. - To be added. @@ -270,7 +258,6 @@ Gets or sets the color of the placeholder text. The color of the placeholder text. - To be added. @@ -288,7 +275,6 @@ Backing store for the property. - To be added. @@ -306,7 +292,6 @@ Backing store for the property. - To be added. @@ -343,7 +328,6 @@ Event that is raised when the text of the Editor changes. - To be added. @@ -361,8 +345,6 @@ Gets or sets the text color. - To be added. - To be added. @@ -380,7 +362,6 @@ Backing store for the property. - To be added. @@ -398,7 +379,6 @@ Backing store for the property. - To be added. @@ -415,9 +395,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -434,8 +411,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -458,9 +433,6 @@ To be added. To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/InvalidNavigationException.xml b/src/Controls/docs/Microsoft.Maui.Controls/InvalidNavigationException.xml index 78d30fb7bdd2..57750673d762 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/InvalidNavigationException.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/InvalidNavigationException.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -51,8 +47,6 @@ To be added. - To be added. - To be added. @@ -72,8 +66,6 @@ To be added. To be added. - To be added. - To be added. @@ -93,8 +85,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemSizingStrategy.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemSizingStrategy.xml index 39af7e792250..4fd024dd9dd0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemSizingStrategy.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemSizingStrategy.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemTappedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemTappedEventArgs.xml index 335d08ca312d..3a54cd0c46f0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemTappedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemTappedEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for the event. - To be added. @@ -53,7 +52,6 @@ The item group. The item that was tapped. Creates a new object for the specified that was tapped and the to which it belongs. - To be added. @@ -75,8 +73,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -101,8 +97,6 @@ The collection of elements to which the tapped item belongs. - To be added. - To be added. @@ -127,8 +121,6 @@ The visual element that the user tapped. - To be added. - To be added. @@ -145,9 +137,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemVisibilityEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemVisibilityEventArgs.xml index 6f6a308c7dc6..67386b8c97d9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemVisibilityEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemVisibilityEventArgs.xml @@ -52,7 +52,6 @@ The modified item. Initializes a new instance of the ItemVisibilityEventArgs class with the item whose visibility has changed. - To be added. @@ -72,8 +71,6 @@ To be added. To be added. - To be added. - To be added. @@ -99,7 +96,6 @@ The item from the whose visibility has changed. An object. - To be added. @@ -116,9 +112,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayout.xml index b7a62469dd50..e5e611437174 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayout.xml @@ -19,8 +19,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. - To be added. - To be added. @@ -56,9 +52,6 @@ Microsoft.Maui.Controls.ItemsLayoutOrientation - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ Microsoft.Maui.Controls.SnapPointsAlignment - To be added. - To be added. - To be added. @@ -95,7 +85,6 @@ The backing store for the field. - To be added. @@ -112,9 +101,6 @@ Microsoft.Maui.Controls.SnapPointsType - To be added. - To be added. - To be added. @@ -132,7 +118,6 @@ The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutOrientation.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutOrientation.xml index 503104db3668..c015b3491c4f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutOrientation.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutOrientation.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutTypeConverter.xml index 13c0a8506a96..f24df246efc4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsLayoutTypeConverter.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -54,9 +50,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsUpdatingScrollMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsUpdatingScrollMode.xml index 459423b284ad..f4ce860ddd68 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsUpdatingScrollMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsUpdatingScrollMode.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 0 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsView.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsView.xml index ca97036c131f..d46f3b0987e5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsView.xml @@ -13,7 +13,6 @@ A that serves as a base class for views that contain a templated list of items. - To be added. @@ -27,8 +26,6 @@ - To be added. - To be added. @@ -45,9 +42,6 @@ System.Object - To be added. - To be added. - To be added. @@ -65,7 +59,6 @@ The backing store for the field. - To be added. @@ -82,9 +75,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -102,7 +92,6 @@ The backing store for the field. - To be added. @@ -119,9 +108,6 @@ Microsoft.Maui.Controls.ScrollBarVisibility - To be added. - To be added. - To be added. @@ -138,8 +124,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -156,9 +140,6 @@ Microsoft.Maui.Controls.IItemsLayout - To be added. - To be added. - To be added. @@ -175,9 +156,6 @@ System.Collections.IEnumerable - To be added. - To be added. - To be added. @@ -195,7 +173,6 @@ The backing store for the field. - To be added. @@ -212,9 +189,6 @@ Microsoft.Maui.Controls.ItemsUpdatingScrollMode - To be added. - To be added. - To be added. @@ -231,8 +205,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -249,9 +221,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -269,7 +238,6 @@ The backing store for the field. - To be added. @@ -287,8 +255,6 @@ - To be added. - To be added. @@ -311,9 +277,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -331,8 +294,6 @@ - To be added. - To be added. @@ -353,8 +314,6 @@ To be added. - To be added. - To be added. @@ -375,8 +334,6 @@ To be added. - To be added. - To be added. @@ -393,9 +350,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -412,8 +366,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -430,8 +382,6 @@ System.EventHandler - To be added. - To be added. @@ -448,9 +398,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -467,9 +414,6 @@ System.Object - To be added. - To be added. - To be added. @@ -486,8 +430,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -504,8 +446,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -522,8 +462,6 @@ System.EventHandler<Microsoft.Maui.Controls.ItemsViewScrolledEventArgs> - To be added. - To be added. @@ -550,8 +488,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -578,8 +514,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -596,8 +530,6 @@ System.EventHandler<Microsoft.Maui.Controls.ScrollToRequestEventArgs> - To be added. - To be added. @@ -615,8 +547,6 @@ - To be added. - To be added. @@ -637,8 +567,6 @@ To be added. - To be added. - To be added. @@ -655,9 +583,6 @@ Microsoft.Maui.Controls.ScrollBarVisibility - To be added. - To be added. - To be added. @@ -674,8 +599,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ItemsViewScrolledEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ItemsViewScrolledEventArgs.xml index c09980593ec0..73196c8ed1b8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ItemsViewScrolledEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ItemsViewScrolledEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -64,9 +57,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -83,9 +73,6 @@ System.Double - To be added. - To be added. - To be added. @@ -102,9 +89,6 @@ System.Double - To be added. - To be added. - To be added. @@ -121,9 +105,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -140,9 +121,6 @@ System.Double - To be added. - To be added. - To be added. @@ -159,9 +137,6 @@ System.Double - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Label.xml b/src/Controls/docs/Microsoft.Maui.Controls/Label.xml index 3df11eade612..4c1cfd0b0a2d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Label.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Label.xml @@ -101,9 +101,6 @@ public class App : Application System.Double - To be added. - To be added. - To be added. @@ -120,8 +117,6 @@ public class App : Application Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -178,8 +173,6 @@ public class App : Application Gets a value that indicates whether the font for the label is bold, italic, or neither. - To be added. - To be added. @@ -201,7 +194,6 @@ public class App : Application Backing store for the FontAttributes property. - To be added. @@ -246,7 +238,6 @@ public class App : Application Backing store for the FontFamily property. - To be added. @@ -299,8 +290,6 @@ public class App : Application Gets the size of the font for the label. - To be added. - To be added. @@ -322,7 +311,6 @@ public class App : Application Backing store for the FontSize property. - To be added. @@ -370,7 +358,6 @@ public class App : Application Backing store for the FormattedText property. - To be added. @@ -394,7 +381,6 @@ public class App : Application The point under which to look for child elements. Returns the child elements that are under the specified point. The child elements that are under the specified point. - To be added. @@ -414,8 +400,6 @@ public class App : Application Gets or sets the horizontal alignment of the Text property. This is a bindable property. - To be added. - To be added. @@ -435,7 +419,6 @@ public class App : Application Identifies the HorizontalTextAlignment bindable property - To be added. @@ -508,7 +491,6 @@ public class App : Application Gets or sets the multiplier to apply to the default line height when displaying text. The multiplier to apply to the default line height when displaying text. - To be added. @@ -527,7 +509,6 @@ public class App : Application Backing store for the bindable property. - To be added. @@ -545,8 +526,6 @@ public class App : Application Gets or sets the maximum number of lines allowed in the . - To be added. - To be added. @@ -564,7 +543,6 @@ public class App : Application Static method providing the for . - To be added. @@ -595,8 +573,6 @@ public class App : Application To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -616,7 +592,6 @@ public class App : Application Method that is called when the binding context is changed. - To be added. @@ -633,9 +608,6 @@ public class App : Application Microsoft.Maui.Thickness - To be added. - To be added. - To be added. @@ -652,8 +624,6 @@ public class App : Application Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -754,8 +724,6 @@ public class App : Application Gets or sets the applied to . - To be added. - To be added. @@ -773,7 +741,6 @@ public class App : Application Static method providing the associated with . - To be added. @@ -816,9 +783,6 @@ public class App : Application Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -835,8 +799,6 @@ public class App : Application Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -854,8 +816,6 @@ public class App : Application Determines whether the Label should display plain text or HTML text. - To be added. - To be added. @@ -873,7 +833,6 @@ public class App : Application Backing store for the TextType bindable property. - To be added. @@ -896,9 +855,6 @@ public class App : Application To be added. To be added. - To be added. - To be added. - To be added. @@ -918,8 +874,6 @@ public class App : Application Gets or sets the vertical alignement of the Text property. This is a bindable property. - To be added. - To be added. @@ -939,7 +893,6 @@ public class App : Application Identifies the VerticalTextAlignment bindable property. - To be added. @@ -1031,8 +984,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1060,7 +1011,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1088,7 +1038,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1116,7 +1065,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1144,7 +1092,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Layout.xml b/src/Controls/docs/Microsoft.Maui.Controls/Layout.xml index f14e6d3f8ccb..a6f210619921 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Layout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Layout.xml @@ -55,7 +55,6 @@ Intitializes a new instance. - To be added. @@ -76,7 +75,6 @@ Gets or sets a value that controls whether child elements inherit the input transparency of layout when the tranparency is . to cause child elements to inherit the input transparency of layout, when layout's is true. to cause child elements to ignore the input tranparency of layout. - To be added. @@ -95,7 +93,6 @@ Backing store for the property. - To be added. @@ -122,8 +119,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -246,7 +241,6 @@ Gets or sets a value which determines if the Layout should clip its children to its bounds. if the Layout is clipped; otherwise, . The default value is . - To be added. @@ -271,7 +265,6 @@ Identifies the bindable property. - To be added. @@ -419,7 +412,6 @@ Invoked whenever a child of the layout has emitted . Implement this method to add class handling for this event. - To be added. @@ -550,7 +542,6 @@ Identifies the Padding bindable property. - To be added. @@ -597,8 +588,6 @@ - To be added. - To be added. @@ -624,8 +613,6 @@ The child for which to specify whether or not to track invalidation. When implemented, should return if should call , and to return if it should not. - To be added. - To be added. @@ -651,8 +638,6 @@ The child for which to specify whether or not to track invalidation. When implemented, should return if should call when it is removed, and to return if it should not. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/LayoutAlignment.xml b/src/Controls/docs/Microsoft.Maui.Controls/LayoutAlignment.xml index 2341ba238251..21412294b265 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/LayoutAlignment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/LayoutAlignment.xml @@ -24,7 +24,6 @@ Values that represent LayoutAlignment. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptions.xml b/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptions.xml index 86518794e0e1..e2852d311db1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptions.xml @@ -25,7 +25,6 @@ A struct whose static members define various alignment and expansion options. - To be added. @@ -53,7 +52,6 @@ An alignment value. Whether or not an element will expand to fill available space in its parent. Creates a new object with and . - To be added. @@ -79,7 +77,6 @@ Gets or sets a value that indicates how an element will be aligned. The flags that describe the behavior of an element. - To be added. @@ -104,7 +101,6 @@ A structure that describes an element that is centered and does not expand. - To be added. @@ -129,7 +125,6 @@ A structure that describes an element that is centered and expands. - To be added. @@ -154,7 +149,6 @@ A structure that describes an element that appears at the end of its parent and does not expand. - To be added. @@ -179,7 +173,6 @@ A object that describes an element that appears at the end of its parent and expands. - To be added. @@ -205,7 +198,6 @@ Gets or sets a value that indicates whether or not the element that is described by this structure will occupy the largest space that its parent will give to it. Whether or not the element that is described by this structure will occupy the largest space that its parent will give it. if the element will occupy the largest space the parent will give to it. if the element will be as compact as it can be. - To be added. @@ -230,7 +222,6 @@ A stucture that describes an element that has no padding around itself and does not expand. - To be added. @@ -255,7 +246,6 @@ A structure that describes an element that has no padding around itself and expands. - To be added. @@ -280,7 +270,6 @@ A structure that describes an element that appears at the start of its parent and does not expand. - To be added. @@ -305,7 +294,6 @@ A structure that describes an element that appears at the start of its parent and expands. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptionsConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptionsConverter.xml index 4fab2ca5c0c9..4229a0389e4d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptionsConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/LayoutOptionsConverter.xml @@ -20,7 +20,6 @@ Class that takes a string representation of a and returns a corresponding . - To be added. @@ -37,7 +36,6 @@ Creates a new with default values. - To be added. @@ -60,8 +58,6 @@ The value to convert. Returns a for a valid layout options string. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/LinearGradientBrush.xml b/src/Controls/docs/Microsoft.Maui.Controls/LinearGradientBrush.xml index 4c0a2bb78fcf..b5ac7a43a562 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/LinearGradientBrush.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/LinearGradientBrush.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -69,8 +63,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -87,9 +79,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -106,8 +95,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -124,9 +111,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -143,9 +127,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -162,8 +143,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/LinearItemsLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/LinearItemsLayout.xml index 36cc573f02ab..e3cf91057f85 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/LinearItemsLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/LinearItemsLayout.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. @@ -49,8 +45,6 @@ Microsoft.Maui.Controls.IItemsLayout - To be added. - To be added. @@ -67,8 +61,6 @@ Microsoft.Maui.Controls.IItemsLayout - To be added. - To be added. @@ -85,9 +77,6 @@ System.Double - To be added. - To be added. - To be added. @@ -104,8 +93,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -122,8 +109,6 @@ Microsoft.Maui.Controls.IItemsLayout - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ListProxyChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ListProxyChangedEventArgs.xml index 318805ab77b1..b7e8122cc3a9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ListProxyChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ListProxyChangedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -33,8 +31,6 @@ To be added. To be added. - To be added. - To be added. @@ -51,9 +47,6 @@ System.Collections.Generic.IReadOnlyCollection<System.Object> - To be added. - To be added. - To be added. @@ -70,9 +63,6 @@ System.Collections.Generic.IReadOnlyCollection<System.Object> - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ListStringTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ListStringTypeConverter.xml index 520b425ba76f..2f43d82346dc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ListStringTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ListStringTypeConverter.xml @@ -19,7 +19,6 @@ Type converter for converting properly formatted string lists to lists. - To be added. @@ -35,7 +34,6 @@ Creates a new object. - To be added. @@ -58,8 +56,6 @@ The value to convert. Converts to a list. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ListView.xml b/src/Controls/docs/Microsoft.Maui.Controls/ListView.xml index 94bda5934125..1c27eb34bfa9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ListView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ListView.xml @@ -67,7 +67,6 @@ Creates and initializes a new instance of the class. - To be added. @@ -116,7 +115,6 @@ Enters the refreshing state by setting the property to . - To be added. @@ -135,8 +133,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -208,8 +204,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -232,7 +226,6 @@ Exits the refreshing state by setting the property to . - To be added. @@ -254,8 +247,6 @@ Gets or sets the string, binding, or view that will be displayed at the bottom of the list view. - To be added. - To be added. @@ -282,8 +273,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -305,7 +294,6 @@ Backing store for the property. - To be added. @@ -327,8 +315,6 @@ Gets or sets a data template to use to format a data object for display at the bottom of the list view. - To be added. - To be added. @@ -350,7 +336,6 @@ Backing store for the property. - To be added. @@ -381,8 +366,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -545,7 +528,6 @@ Identifies the property. - To be added. @@ -703,7 +685,6 @@ ListView CreateListView() Identifies the property. - To be added. @@ -725,8 +706,6 @@ ListView CreateListView() Gets or sets the string, binding, or view that will be displayed at the top of the list view. - To be added. - To be added. @@ -753,8 +732,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -776,7 +753,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -798,8 +774,6 @@ ListView CreateListView() Gets or sets a data template to use to format a data object for display at the top of the list view. - To be added. - To be added. @@ -821,7 +795,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -838,9 +811,6 @@ ListView CreateListView() Microsoft.Maui.Controls.ScrollBarVisibility - To be added. - To be added. - To be added. @@ -858,7 +828,6 @@ ListView CreateListView() The backing store for the field. - To be added. @@ -887,7 +856,6 @@ ListView CreateListView() if grouping is enabled, otherwise and by default. - To be added. @@ -915,7 +883,6 @@ ListView CreateListView() Identifies the property. - To be added. @@ -937,8 +904,6 @@ ListView CreateListView() Gets or sets a value that tells whether the user can swipe down to cause the application to refresh. - To be added. - To be added. @@ -960,7 +925,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -982,8 +946,6 @@ ListView CreateListView() Gets or sets a value that tells whether the list view is currently refreshing. - To be added. - To be added. @@ -1005,7 +967,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -1083,7 +1044,6 @@ ListView CreateListView() Event that is raised when a new item is selected. - To be added. @@ -1109,7 +1069,6 @@ ListView CreateListView() Event that is raised when an item is tapped. - To be added. @@ -1142,7 +1101,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1177,7 +1135,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1210,8 +1167,6 @@ ListView CreateListView() To be added. To be added. To be added. - To be added. - To be added. @@ -1246,8 +1201,6 @@ ListView CreateListView() To be added. To be added. To be added. - To be added. - To be added. @@ -1278,8 +1231,6 @@ ListView CreateListView() To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -1299,7 +1250,6 @@ ListView CreateListView() Method that is called when the binding context changes. - To be added. @@ -1336,8 +1286,6 @@ ListView CreateListView() The width constraint. The height constraint. Method that is called when a size request is made. - To be added. - To be added. @@ -1361,8 +1309,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1384,8 +1330,6 @@ ListView CreateListView() Gets or sets the command that is run when the list view enters the refreshing state. - To be added. - To be added. @@ -1407,7 +1351,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -1424,9 +1367,6 @@ ListView CreateListView() Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -1444,7 +1384,6 @@ ListView CreateListView() The backing store for the field. - To be added. @@ -1466,7 +1405,6 @@ ListView CreateListView() Event that is raised when the list view refreshes. - To be added. @@ -1492,8 +1430,6 @@ ListView CreateListView() Gets or sets a value that represents the height of a row. - To be added. - To be added. @@ -1519,7 +1455,6 @@ ListView CreateListView() The backing store for the property. - To be added. @@ -1536,8 +1471,6 @@ ListView CreateListView() System.EventHandler<Microsoft.Maui.Controls.ScrolledEventArgs> - To be added. - To be added. @@ -1639,7 +1572,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1666,7 +1598,6 @@ ListView CreateListView() Gets or sets the currently selected item from the . The selected item or if no item is selected. - To be added. @@ -1692,7 +1623,6 @@ ListView CreateListView() Identifies the property. - To be added. @@ -1732,7 +1662,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -1763,7 +1692,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1794,7 +1722,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1822,7 +1749,6 @@ ListView CreateListView() For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1848,8 +1774,6 @@ ListView CreateListView() To be added. - To be added. - To be added. @@ -1871,7 +1795,6 @@ ListView CreateListView() Gets or sets the color of the bar that separates list items. - To be added. The default value is Color.Default. This property has no effect if is . @@ -1894,7 +1817,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -1916,8 +1838,6 @@ ListView CreateListView() Gets or sets a value that tells whether separators are visible between items. - To be added. - To be added. @@ -1939,7 +1859,6 @@ ListView CreateListView() Backing store for the property. - To be added. @@ -2027,7 +1946,6 @@ ListView CreateListView() Returns if is a template selector and elements are being retained. Otherwise, returns . if is a template selector and elements are being retained. Otherwise, . - To be added. @@ -2044,9 +1962,6 @@ ListView CreateListView() Microsoft.Maui.Controls.ScrollBarVisibility - To be added. - To be added. - To be added. @@ -2064,7 +1979,6 @@ ListView CreateListView() The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ListViewSelectionMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/ListViewSelectionMode.xml index 55a6c6a19777..477e82add5de 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ListViewSelectionMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ListViewSelectionMode.xml @@ -13,7 +13,6 @@ Enumerates values that control whether items in a list view can or cannot be selected. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MarshalingObservableCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/MarshalingObservableCollection.xml index 70683a1b9faa..872ff6c599d5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MarshalingObservableCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MarshalingObservableCollection.xml @@ -19,8 +19,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. - To be added. - To be added. @@ -59,8 +55,6 @@ System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MeasureFlags.xml b/src/Controls/docs/Microsoft.Maui.Controls/MeasureFlags.xml index 6db4e5e45f98..6ae8b61e72f6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MeasureFlags.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MeasureFlags.xml @@ -18,7 +18,6 @@ Enumerates values that tell whether margins are included when laying out windows. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Menu.xml b/src/Controls/docs/Microsoft.Maui.Controls/Menu.xml index 13ffc192bb78..500adfce47d0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Menu.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Menu.xml @@ -33,7 +33,6 @@ Represents an application menu on platforms that support them. - To be added. @@ -49,7 +48,6 @@ Creates a new menu with default values. - To be added. @@ -75,7 +73,6 @@ The menu to add to this menu. Add to the end of the collection of menus in this menu. - To be added. @@ -98,7 +95,6 @@ Clears all the menus from this menu. - To be added. @@ -126,7 +122,6 @@ Returns if is contained in the top-level collection of menus that belong to this menu. Otherwise, returns . if is contained in the top-level collection of menus that belong to this menu. Otherwise, . - To be added. @@ -154,7 +149,6 @@ The menu items to copy into this menu. The index at which to begin inserting menus. Copies into this menu's collection of menus, beginning at . - To be added. @@ -176,8 +170,6 @@ Gets the number of menus that are contained in this menu. - To be added. - To be added. @@ -200,8 +192,6 @@ Returns an enumerator for the menus that are contained in this menu. - To be added. - To be added. @@ -227,8 +217,6 @@ The menu whose index to get. Returns the index of . - To be added. - To be added. @@ -256,7 +244,6 @@ The index at which to insert . The menu to insert. Inserts into this menu's collection of items at . - To be added. @@ -276,7 +263,6 @@ Visually displays the menu as invalid. - To be added. @@ -300,7 +286,6 @@ Returns . . - To be added. @@ -327,7 +312,6 @@ The index of the item to get or set. Gets or sets the menu at . The menu at . - To be added. @@ -346,8 +330,6 @@ Gets the collection of menus that belong to this menu. - To be added. - To be added. @@ -373,8 +355,6 @@ The menu to remove. Removes . - To be added. - To be added. @@ -400,7 +380,6 @@ The index for the menu to remove. Removes the menu at . - To be added. @@ -423,8 +402,6 @@ For internal use only. - To be added. - To be added. @@ -444,7 +421,6 @@ Gets or sets the text of the menu. The menu text. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MenuItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/MenuItem.xml index ebbb2c22b95d..263bfd38f7b0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MenuItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MenuItem.xml @@ -21,7 +21,6 @@ Class that presents a menu item and associates it with a command. - To be added. @@ -40,7 +39,6 @@ Intitializes a new instance. - To be added. @@ -59,7 +57,6 @@ Backing store for the accelerator attached property. - To be added. @@ -81,9 +78,6 @@ System.Collections.Generic.IList<System.String> - To be added. - To be added. - To be added. @@ -105,7 +99,6 @@ Event that is raised when the menu item is clicked. - To be added. @@ -127,8 +120,6 @@ Gets or sets the command that is run when the menu is clicked. - To be added. - To be added. @@ -150,8 +141,6 @@ Gets or sets the parameter that is passed to the command. - To be added. - To be added. @@ -173,7 +162,6 @@ Identifies the command parameter bound property. - To be added. @@ -195,7 +183,6 @@ Identifies the command bound property. - To be added. @@ -218,8 +205,6 @@ The bindable object for which to retrieve the accelerator keys. Gets the accelerator for the specified bindable object. - To be added. - To be added. @@ -249,8 +234,6 @@ Gets or sets the icon for the menu item. - To be added. - To be added. @@ -267,9 +250,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -286,8 +266,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -317,7 +295,6 @@ Identfies the icon bound property. - To be added. @@ -371,7 +348,6 @@ Identifies the IsDestructive bound property. - To be added. @@ -398,8 +374,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -418,7 +392,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -443,9 +416,6 @@ System.String - To be added. - To be added. - To be added. @@ -468,7 +438,6 @@ When overridden by an app dev, implements behavior when the menu item is clicked. - To be added. @@ -493,7 +462,6 @@ The bindable object for which to set the accelerator keys. The new accelerator for the object. Sets the accelerator for the specified bindable object. - To be added. @@ -516,8 +484,6 @@ Sets the StyleClass of the generated when used with - To be added. - To be added. @@ -539,8 +505,6 @@ The text of the menu item. - To be added. - To be added. @@ -562,7 +526,6 @@ Identifies the text bound property. - To be added. @@ -588,8 +551,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MenuItemCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/MenuItemCollection.xml index f63a7cc0f19e..2c10a2a149a5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MenuItemCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MenuItemCollection.xml @@ -35,7 +35,6 @@ A group of related objects. - To be added. @@ -49,8 +48,6 @@ - To be added. - To be added. @@ -74,8 +71,6 @@ To be added. - To be added. - To be added. @@ -96,8 +91,6 @@ - To be added. - To be added. @@ -121,9 +114,6 @@ To be added. - To be added. - To be added. - To be added. @@ -149,8 +139,6 @@ To be added. To be added. - To be added. - To be added. @@ -170,9 +158,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -193,9 +178,6 @@ - To be added. - To be added. - To be added. @@ -219,9 +201,6 @@ To be added. - To be added. - To be added. - To be added. @@ -247,8 +226,6 @@ To be added. To be added. - To be added. - To be added. @@ -268,9 +245,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -294,9 +268,6 @@ To be added. - To be added. - To be added. - To be added. @@ -320,9 +291,6 @@ To be added. - To be added. - To be added. - To be added. @@ -346,8 +314,6 @@ To be added. - To be added. - To be added. @@ -368,9 +334,6 @@ - To be added. - To be added. - To be added. @@ -390,8 +353,6 @@ System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MessagingCenter.xml b/src/Controls/docs/Microsoft.Maui.Controls/MessagingCenter.xml index 533a200f17d0..4d35877cd880 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MessagingCenter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MessagingCenter.xml @@ -60,7 +60,6 @@ Assert.AreEqual(2, subscriber.IntProperty); Creates a new with default values. - To be added. @@ -80,7 +79,6 @@ Assert.AreEqual(2, subscriber.IntProperty); Gets the singleton instance of the . The singleton instance of the . - To be added. @@ -122,7 +120,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The instance that is sending the message. Typically, this is specified with the keyword used within the sending object. The message that will be sent to objects that are listening for the message from instances of type . Sends a named message that has no arguments. - To be added. @@ -168,7 +165,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The message that will be sent to objects that are listening for the message from instances of type . The arguments that will be passed to the listener's callback. Sends a named message with the specified arguments. - To be added. @@ -214,7 +210,6 @@ Assert.AreEqual(2, subscriber.IntProperty); A callback, which takes the sender and arguments as parameters, that is run when the message is received by the subscriber. The object that will send the messages. Run the on in response to messages that are named and that are created by . - To be added. @@ -262,7 +257,6 @@ Assert.AreEqual(2, subscriber.IntProperty); A callback, which takes the sender and arguments as parameters, that is run when the message is received by the subscriber. The object that will send the messages. Run the on in response to parameterized messages that are named and that are created by . - To be added. @@ -300,7 +294,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The object that is subscribing to the messages. Typically, this is specified with the keyword used within the subscribing object. The message that will be sent to objects that are listening for the message from instances of type . Unsubscribes a subscriber from the specified messages that come from the specified sender. - To be added. @@ -341,7 +334,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The object that is subscribing to the messages. Typically, this is specified with the keyword used within the subscribing object. The message that will be sent to objects that are listening for the message from instances of type . Unsubscribes from the specified parameterless subscriber messages. - To be added. @@ -377,7 +369,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The instance that is sending the message. Typically, this is specified with the keyword used within the sending object. The message that will be sent to objects that are listening for the message from instances of type . Sends the named parameterless message to objects that are listening for it on the type that is specified by . - To be added. @@ -417,7 +408,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The message that will be sent to objects that are listening for the message from instances of type . The arguments that will be passed to the listener's callback. Sends a message and arguments to objects that are listening for them on the type that is specified by . - To be added. @@ -457,7 +447,6 @@ Assert.AreEqual(2, subscriber.IntProperty); A callback, which takes the sender and arguments as parameters, that is run when the message is received by the subscriber. The object that will send the messages. Subscribes to the specified from the specified . - To be added. @@ -499,7 +488,6 @@ Assert.AreEqual(2, subscriber.IntProperty); A callback, which takes the sender and arguments as parameters, that is run when the message is received by the subscriber. The object that will send the messages. Subscribes to the specified from the specified . - To be added. @@ -535,7 +523,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The object that is unsubscribing to the messages. Typically, this is specified with the keyword used within the subscribing object. The message that will be sent to objects that are listening for the message from instances of type . Unsubscribes the specified from the specified . - To be added. @@ -573,7 +560,6 @@ Assert.AreEqual(2, subscriber.IntProperty); The object that is subscribing to the messages. Typically, this is specified with the keyword used within the subscribing object. The message that will be sent to objects that are listening for the message from instances of type . Unsubscribes the specified from the specified . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ModalEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ModalEventArgs.xml index 8d5c536d4029..d8aea8aa27f6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ModalEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ModalEventArgs.xml @@ -17,7 +17,6 @@ Base class for , , , and . - To be added. @@ -40,7 +39,6 @@ The modal page. Creates a new object for a navigation event that happened to the page. - To be added. @@ -62,8 +60,6 @@ Gets or sets the page whose navigation triggered the event. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppedEventArgs.xml index 7a22bea70f31..556f3a943ad7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppedEventArgs.xml @@ -17,7 +17,6 @@ Arguments for the event that is raised when a modal window is popped from the navigation stack. - To be added. @@ -40,7 +39,6 @@ The modal page. Constructs a new object for the page that was just popped. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppingEventArgs.xml index b7b7060c9b3c..28753e22775e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ModalPoppingEventArgs.xml @@ -17,7 +17,6 @@ Arguments for the event that is raised when a modal window is popping from the navigation stack. - To be added. @@ -40,7 +39,6 @@ The modal page. Constructs a new object for the page that is being popped. - To be added. @@ -62,8 +60,6 @@ Gets or sets a value that tells whether the modal navigation was canceled. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ModalPushedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ModalPushedEventArgs.xml index 73131723ae20..e86cfd89599e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ModalPushedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ModalPushedEventArgs.xml @@ -17,7 +17,6 @@ Arguments for the event that is raised when a modal window is pushed onto the navigation stack. - To be added. @@ -40,7 +39,6 @@ The modal page. Constructs a new object for the page that was just popped. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ModalPushingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ModalPushingEventArgs.xml index 3574224698a1..82f94f151c56 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ModalPushingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ModalPushingEventArgs.xml @@ -17,7 +17,6 @@ Arguments for the event that is raised when a modal window is being pushed onto the navigation stack. - To be added. @@ -40,7 +39,6 @@ The modal page. Constructs a new object for the page that is being pushed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MultiBinding.xml b/src/Controls/docs/Microsoft.Maui.Controls/MultiBinding.xml index 66c1d0b182f7..c2289ec7f333 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MultiBinding.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MultiBinding.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -50,9 +46,6 @@ System.Collections.Generic.IList<Microsoft.Maui.Controls.BindingBase> - To be added. - To be added. - To be added. @@ -69,9 +62,6 @@ Microsoft.Maui.Controls.IMultiValueConverter - To be added. - To be added. - To be added. @@ -88,9 +78,6 @@ System.Object - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/MultiTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/MultiTrigger.xml index d375935b4d18..d70f68814f35 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/MultiTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/MultiTrigger.xml @@ -91,7 +91,6 @@ The type of the trigger target. Initializes a new instance. - To be added. @@ -113,8 +112,6 @@ Gets the list of conditions that must be satisfied in ordeer for the setters in the list to be invoked. - To be added. - To be added. @@ -136,8 +133,6 @@ Gets the list of objects that will be applied when the list of conditions in the property are all met. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/NameScopeExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/NameScopeExtensions.xml index 858766f4d225..6aad10a021d3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/NameScopeExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/NameScopeExtensions.xml @@ -20,7 +20,6 @@ Extension methods for that adds a strongly-typed FindByName method. - To be added. @@ -55,8 +54,6 @@ An element in the scope to search. The name of the element to find. Returns the instance of type that has name in the scope that includes . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/NamedPlatformColor.xml b/src/Controls/docs/Microsoft.Maui.Controls/NamedPlatformColor.xml index d682f8469c13..91212ec04117 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/NamedPlatformColor.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/NamedPlatformColor.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,8 +28,6 @@ System.String - To be added. - To be added. @@ -48,8 +44,6 @@ System.String - To be added. - To be added. @@ -66,8 +60,6 @@ System.String - To be added. - To be added. @@ -84,8 +76,6 @@ System.String - To be added. - To be added. @@ -102,8 +92,6 @@ System.String - To be added. - To be added. @@ -120,8 +108,6 @@ System.String - To be added. - To be added. @@ -138,8 +124,6 @@ System.String - To be added. - To be added. @@ -156,8 +140,6 @@ System.String - To be added. - To be added. @@ -174,8 +156,6 @@ System.String - To be added. - To be added. @@ -192,8 +172,6 @@ System.String - To be added. - To be added. @@ -210,8 +188,6 @@ System.String - To be added. - To be added. @@ -228,8 +204,6 @@ System.String - To be added. - To be added. @@ -246,8 +220,6 @@ System.String - To be added. - To be added. @@ -264,8 +236,6 @@ System.String - To be added. - To be added. @@ -282,8 +252,6 @@ System.String - To be added. - To be added. @@ -300,8 +268,6 @@ System.String - To be added. - To be added. @@ -318,8 +284,6 @@ System.String - To be added. - To be added. @@ -336,8 +300,6 @@ System.String - To be added. - To be added. @@ -354,8 +316,6 @@ System.String - To be added. - To be added. @@ -372,8 +332,6 @@ System.String - To be added. - To be added. @@ -390,8 +348,6 @@ System.String - To be added. - To be added. @@ -408,8 +364,6 @@ System.String - To be added. - To be added. @@ -426,8 +380,6 @@ System.String - To be added. - To be added. @@ -444,8 +396,6 @@ System.String - To be added. - To be added. @@ -462,8 +412,6 @@ System.String - To be added. - To be added. @@ -480,8 +428,6 @@ System.String - To be added. - To be added. @@ -498,8 +444,6 @@ System.String - To be added. - To be added. @@ -516,8 +460,6 @@ System.String - To be added. - To be added. @@ -534,8 +476,6 @@ System.String - To be added. - To be added. @@ -552,8 +492,6 @@ System.String - To be added. - To be added. @@ -570,8 +508,6 @@ System.String - To be added. - To be added. @@ -588,8 +524,6 @@ System.String - To be added. - To be added. @@ -606,8 +540,6 @@ System.String - To be added. - To be added. @@ -624,8 +556,6 @@ System.String - To be added. - To be added. @@ -642,8 +572,6 @@ System.String - To be added. - To be added. @@ -660,8 +588,6 @@ System.String - To be added. - To be added. @@ -678,8 +604,6 @@ System.String - To be added. - To be added. @@ -696,8 +620,6 @@ System.String - To be added. - To be added. @@ -714,8 +636,6 @@ System.String - To be added. - To be added. @@ -732,8 +652,6 @@ System.String - To be added. - To be added. @@ -750,8 +668,6 @@ System.String - To be added. - To be added. @@ -768,8 +684,6 @@ System.String - To be added. - To be added. @@ -786,8 +700,6 @@ System.String - To be added. - To be added. @@ -804,8 +716,6 @@ System.String - To be added. - To be added. @@ -822,8 +732,6 @@ System.String - To be added. - To be added. @@ -840,8 +748,6 @@ System.String - To be added. - To be added. @@ -858,8 +764,6 @@ System.String - To be added. - To be added. @@ -876,8 +780,6 @@ System.String - To be added. - To be added. @@ -894,8 +796,6 @@ System.String - To be added. - To be added. @@ -912,8 +812,6 @@ System.String - To be added. - To be added. @@ -930,8 +828,6 @@ System.String - To be added. - To be added. @@ -948,8 +844,6 @@ System.String - To be added. - To be added. @@ -966,8 +860,6 @@ System.String - To be added. - To be added. @@ -984,8 +876,6 @@ System.String - To be added. - To be added. @@ -1002,8 +892,6 @@ System.String - To be added. - To be added. @@ -1020,8 +908,6 @@ System.String - To be added. - To be added. @@ -1038,8 +924,6 @@ System.String - To be added. - To be added. @@ -1056,8 +940,6 @@ System.String - To be added. - To be added. @@ -1074,8 +956,6 @@ System.String - To be added. - To be added. @@ -1092,8 +972,6 @@ System.String - To be added. - To be added. @@ -1110,8 +988,6 @@ System.String - To be added. - To be added. @@ -1128,8 +1004,6 @@ System.String - To be added. - To be added. @@ -1146,8 +1020,6 @@ System.String - To be added. - To be added. @@ -1164,8 +1036,6 @@ System.String - To be added. - To be added. @@ -1182,8 +1052,6 @@ System.String - To be added. - To be added. @@ -1200,8 +1068,6 @@ System.String - To be added. - To be added. @@ -1218,8 +1084,6 @@ System.String - To be added. - To be added. @@ -1236,8 +1100,6 @@ System.String - To be added. - To be added. @@ -1254,8 +1116,6 @@ System.String - To be added. - To be added. @@ -1272,8 +1132,6 @@ System.String - To be added. - To be added. @@ -1290,8 +1148,6 @@ System.String - To be added. - To be added. @@ -1308,8 +1164,6 @@ System.String - To be added. - To be added. @@ -1326,8 +1180,6 @@ System.String - To be added. - To be added. @@ -1344,8 +1196,6 @@ System.String - To be added. - To be added. @@ -1362,8 +1212,6 @@ System.String - To be added. - To be added. @@ -1380,8 +1228,6 @@ System.String - To be added. - To be added. @@ -1398,8 +1244,6 @@ System.String - To be added. - To be added. @@ -1416,8 +1260,6 @@ System.String - To be added. - To be added. @@ -1434,8 +1276,6 @@ System.String - To be added. - To be added. @@ -1452,8 +1292,6 @@ System.String - To be added. - To be added. @@ -1470,8 +1308,6 @@ System.String - To be added. - To be added. @@ -1488,8 +1324,6 @@ System.String - To be added. - To be added. @@ -1506,8 +1340,6 @@ System.String - To be added. - To be added. @@ -1524,8 +1356,6 @@ System.String - To be added. - To be added. @@ -1542,8 +1372,6 @@ System.String - To be added. - To be added. @@ -1560,8 +1388,6 @@ System.String - To be added. - To be added. @@ -1578,8 +1404,6 @@ System.String - To be added. - To be added. @@ -1596,8 +1420,6 @@ System.String - To be added. - To be added. @@ -1614,8 +1436,6 @@ System.String - To be added. - To be added. @@ -1632,8 +1452,6 @@ System.String - To be added. - To be added. @@ -1650,8 +1468,6 @@ System.String - To be added. - To be added. @@ -1668,8 +1484,6 @@ System.String - To be added. - To be added. @@ -1686,8 +1500,6 @@ System.String - To be added. - To be added. @@ -1704,8 +1516,6 @@ System.String - To be added. - To be added. @@ -1722,8 +1532,6 @@ System.String - To be added. - To be added. @@ -1740,8 +1548,6 @@ System.String - To be added. - To be added. @@ -1758,8 +1564,6 @@ System.String - To be added. - To be added. @@ -1776,8 +1580,6 @@ System.String - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/NavigationEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/NavigationEventArgs.xml index 805d1aeea102..f58a6ea28689 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/NavigationEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/NavigationEventArgs.xml @@ -51,7 +51,6 @@ The page that was popped or is newly visible. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/NavigationPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/NavigationPage.xml index 2cc60e442197..ed1d116a63b1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/NavigationPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/NavigationPage.xml @@ -60,7 +60,6 @@ Initializes a new object. - To be added. @@ -86,7 +85,6 @@ To be added. Creates a new element with as its root element. - To be added. @@ -111,7 +109,6 @@ Identifies the property associated with the title of the back button. - To be added. @@ -128,9 +125,6 @@ Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -179,7 +173,6 @@ Identifies the property associated with the color of the NavigationPage's bar background color. - To be added. @@ -196,8 +189,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -246,7 +237,6 @@ Identifies the property associated with the color of the NavigationPage's bar text color. - To be added. @@ -271,8 +261,6 @@ The that is currently top-most on the navigation stack. - To be added. - To be added. @@ -328,7 +316,6 @@ The whose back-button's title is being requested. The title of the back button for the specified . The title of the back button that would be shown if the specified were the . - To be added. @@ -354,8 +341,6 @@ To be added. Returns a value that indicates whether has a back button. - To be added. - To be added. @@ -386,7 +371,6 @@ Returns a value that indicates whether the has a navigation bar. if would display a navigation bar were it the . - To be added. @@ -407,9 +391,6 @@ To be added. - To be added. - To be added. - To be added. @@ -438,9 +419,6 @@ To be added. - To be added. - To be added. - To be added. @@ -461,9 +439,6 @@ To be added. - To be added. - To be added. - To be added. @@ -487,7 +462,6 @@ The bindable object whose title view to get. Returns the view to use as a title for the navigation page. The view to use as a title for the navigation page. - To be added. @@ -509,7 +483,6 @@ Backing store for the HasBackButton property. - To be added. @@ -534,7 +507,6 @@ Backing store for the HasNavigationBar property. - To be added. @@ -551,8 +523,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -579,7 +549,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -610,8 +579,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -634,8 +601,6 @@ Event that is raised when the hardware back button is pressed. This event is not raised on iOS. - To be added. - To be added. @@ -662,8 +627,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -694,8 +657,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -722,7 +683,6 @@ Asynchronously removes the top from the navigation stack. The that had been at the top of the navigation stack. - To be added. @@ -748,8 +708,6 @@ To be added. Asynchronously removes the top from the navigation stack, with optional animation. - To be added. - To be added. @@ -782,8 +740,6 @@ To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -808,7 +764,6 @@ Event that is raised after a page is popped from this element. - To be added. @@ -862,7 +817,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -889,7 +843,6 @@ Pops all but the root off the navigation stack. A task that represents the asynchronous dismiss operation. - To be added. @@ -915,8 +868,6 @@ To be added. A task for asynchronously popping all pages off of the navigation stack. - To be added. - To be added. @@ -943,7 +894,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -973,7 +923,6 @@ The to present. Presents a by asynchronously pushing it onto the navigation stack. An awaitable Task, indicating the Push completion. - To be added. @@ -1001,8 +950,6 @@ To be added. To be added. A task for asynchronously pushing a page onto the navigation stack, with optional animation. - To be added. - To be added. @@ -1027,7 +974,6 @@ Event that is raised when a page is pushed onto this element. - To be added. @@ -1054,7 +1000,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1081,7 +1026,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1102,8 +1046,6 @@ The that is the root of the navigation stack. - To be added. - To be added. @@ -1156,7 +1098,6 @@ To be added. To be added. Sets the title that appears on the back button for . - To be added. @@ -1184,7 +1125,6 @@ To be added. To be added. Adds or removes a back button to , with optional animation. - To be added. @@ -1215,7 +1155,6 @@ To be added. To be added. Sets a value that indicates whether or not this element has a navigation bar. - To be added. @@ -1238,8 +1177,6 @@ To be added. To be added. - To be added. - To be added. @@ -1270,8 +1207,6 @@ To be added. To be added. - To be added. - To be added. @@ -1294,8 +1229,6 @@ To be added. To be added. - To be added. - To be added. @@ -1320,7 +1253,6 @@ The bindable object whose title to set. The view to use. Sets the view to use as the title for the navigation page. - To be added. @@ -1347,8 +1279,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1381,7 +1311,6 @@ The color to be used as the Tint of the . - To be added. Tint is especially important in iOS 7 and later, where the Tint is primary way to specify which controls on screen are active or have an action associated with them. @@ -1417,7 +1346,6 @@ Identifies the bindable property. - To be added. @@ -1434,8 +1362,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1467,8 +1393,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1524,8 +1448,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/OSAppTheme.xml b/src/Controls/docs/Microsoft.Maui.Controls/OSAppTheme.xml index e530c0abe453..d91fa42d71ee 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/OSAppTheme.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/OSAppTheme.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 2 - To be added. @@ -48,7 +45,6 @@ 1 - To be added. @@ -66,7 +62,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/On.xml b/src/Controls/docs/Microsoft.Maui.Controls/On.xml index 297a2adc5dee..8c253ed598fc 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/On.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/On.xml @@ -19,7 +19,6 @@ Class that is used within OnPlatform tags in XAML when specifying values on platforms. - To be added. @@ -35,7 +34,6 @@ Creates a new with default values. - To be added. @@ -59,8 +57,6 @@ Gets or sets the list of specified platforms. - To be added. - To be added. @@ -79,8 +75,6 @@ Gets or sets the value on the current platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/OrientationStateTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/OrientationStateTrigger.xml index fad3d703f04b..bb1fe22e9e7b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/OrientationStateTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/OrientationStateTrigger.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ - To be added. - To be added. @@ -65,8 +59,6 @@ - To be added. - To be added. @@ -83,9 +75,6 @@ Microsoft.Maui.Controls.Internals.DeviceOrientation - To be added. - To be added. - To be added. @@ -102,8 +91,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Page.xml b/src/Controls/docs/Microsoft.Maui.Controls/Page.xml index 337c886771ff..e1614cb78b1f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Page.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Page.xml @@ -66,7 +66,6 @@ Creates a new element with default values. - To be added. @@ -85,7 +84,6 @@ This method is for internal use. - To be added. @@ -104,7 +102,6 @@ This method is for internal use. - To be added. @@ -129,7 +126,6 @@ Indicates that the is about to appear. - To be added. @@ -162,8 +158,6 @@ Identifies the image used as a background for the . - To be added. - To be added. @@ -196,7 +190,6 @@ Identifies the property. - To be added. @@ -213,9 +206,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -232,8 +222,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -252,7 +240,6 @@ This method is for internal use. - To be added. @@ -279,8 +266,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -380,8 +365,6 @@ The body text of the alert dialog. Text to be displayed on the 'Cancel' button. Presents an alert dialog to the application user with a single cancel button. - To be added. - To be added. @@ -417,7 +400,6 @@ Text to be displayed on the 'Cancel' button. Presents an alert dialog to the application user with an accept and a cancel button. A task that contains the user's choice as a Boolean value. indicates that the user accepted the alert. indicates that the user cancelled the alert. - To be added. @@ -458,9 +440,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -495,9 +474,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -523,7 +499,6 @@ Forces the to perform a layout pass. - To be added. @@ -556,8 +531,6 @@ Resource identifier for the 's associated icon. - To be added. - To be added. @@ -574,9 +547,6 @@ Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -593,8 +563,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -627,7 +595,6 @@ Identifies the property. - To be added. @@ -654,8 +621,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -682,8 +647,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -734,7 +697,6 @@ Identifies the property. - To be added. @@ -762,7 +724,6 @@ Raised when the layout of the has changed. - To be added. @@ -797,7 +758,6 @@ Width of layout area. Height of layout area. Lays out children s into the specified area. - To be added. @@ -828,8 +788,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -855,7 +813,6 @@ When overridden, allows application developers to customize behavior immediately prior to the becoming visible. - To be added. @@ -943,7 +900,6 @@ The object that raised the event. The event arguments. Indicates that the preferred size of a child has changed. - To be added. @@ -995,7 +951,6 @@ Called when the 's property has changed. - To be added. @@ -1026,7 +981,6 @@ The width allocated to the . The height allocated to the . Indicates that the has been assigned a size. - To be added. @@ -1051,8 +1005,6 @@ The space between the content of the and it's border. - To be added. - To be added. @@ -1077,7 +1029,6 @@ Identifies the property. - To be added. @@ -1094,8 +1045,6 @@ System.String - To be added. - To be added. @@ -1123,7 +1072,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1146,8 +1094,6 @@ Calls . - To be added. - To be added. @@ -1175,7 +1121,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1200,8 +1145,6 @@ The 's title. - To be added. - To be added. @@ -1226,7 +1169,6 @@ Identifies the property. - To be added. @@ -1251,8 +1193,6 @@ A set of s, implemented in a platform-specific manner. - To be added. - To be added. @@ -1278,7 +1218,6 @@ Requests that the children s of the update their layouts. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PanGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/PanGestureRecognizer.xml index 4216f13cc0fa..5574aef35f7a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PanGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PanGestureRecognizer.xml @@ -19,7 +19,6 @@ A gesture recognizer for panning content that is larger than its parent view. - To be added. @@ -36,7 +35,6 @@ Creates a new with default values. - To be added. @@ -56,7 +54,6 @@ Event that is raised when the pan gesture changes. - To be added. @@ -93,7 +90,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -126,7 +122,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -159,7 +154,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -192,7 +186,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -212,8 +205,6 @@ Gets or sets the number of touch points in the gesture. - To be added. - To be added. @@ -233,7 +224,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PanUpdatedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/PanUpdatedEventArgs.xml index 2fcb1509407d..19fd4b5d1d4a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PanUpdatedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PanUpdatedEventArgs.xml @@ -15,7 +15,6 @@ Event that is raised when a pan gesture updates. - To be added. @@ -38,7 +37,6 @@ Whether the gesture just began, is continuing, was completed, or is canceled. An identifier for the gesture. Creates a new with the specified values. - To be added. @@ -65,7 +63,6 @@ The total change in the X direction since the beginning of the gesture. The total change in the Y direction since the beginning of the gesture. Creates a new with the specified values. - To be added. @@ -85,8 +82,6 @@ Gets the identifier for the gesture that raised the event. - To be added. - To be added. @@ -106,8 +101,6 @@ Gets a value that tells if this event is for a newly started gesture, a running gesture, a completed gesture, or a canceled gesture. - To be added. - To be added. @@ -127,8 +120,6 @@ Gets the total change in the X direction since the beginning of the gesture. - To be added. - To be added. @@ -148,8 +139,6 @@ Gets the total change in the Y direction since the beginning of the gesture. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Picker.xml b/src/Controls/docs/Microsoft.Maui.Controls/Picker.xml index 99e01aeece0e..5d416fc2aaa9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Picker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Picker.xml @@ -77,9 +77,6 @@ System.Double - To be added. - To be added. - To be added. @@ -96,8 +93,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -116,8 +111,6 @@ Gets a value that indicates whether the font for the searchbar text is bold, italic, or neither. - To be added. - To be added. @@ -136,7 +129,6 @@ Backing store for the property. - To be added. @@ -155,8 +147,6 @@ Gets or sets the font family for the picker text. - To be added. - To be added. @@ -175,7 +165,6 @@ Backing store for the property. - To be added. @@ -200,7 +189,6 @@ Gets or sets the size of the font for the text in the picker. A that indicates the size of the font. - To be added. @@ -219,7 +207,6 @@ Backing store for the property. - To be added. @@ -236,9 +223,6 @@ Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -255,8 +239,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -275,8 +257,6 @@ Gets or sets a binding that selects the property that will be displayed for each object in the list of items. - To be added. - To be added. @@ -321,8 +301,6 @@ Gets or sets the source list of items to template and display. - To be added. - To be added. @@ -341,7 +319,6 @@ Backing store for the property. - To be added. @@ -372,8 +349,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -424,7 +399,6 @@ Raised when the value of the SelectIndex property has changed. - To be added. @@ -469,8 +443,6 @@ Gets or sets the selected item. - To be added. - To be added. @@ -489,7 +461,6 @@ Backing store for the property. - To be added. @@ -508,8 +479,6 @@ Gets or sets the text color. - To be added. - To be added. @@ -528,7 +497,6 @@ Backing store for the property. - To be added. @@ -545,9 +513,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -564,8 +529,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -608,9 +571,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -628,7 +588,6 @@ The backing store for the field. - To be added. @@ -677,9 +636,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -696,9 +652,6 @@ Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -715,8 +668,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -739,8 +690,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -768,7 +717,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -796,7 +744,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -824,7 +771,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -852,7 +798,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureRecognizer.xml index 33907a8bb478..c90c9a87df99 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureRecognizer.xml @@ -19,7 +19,6 @@ Recognizer for pinch gestures. - To be added. @@ -36,7 +35,6 @@ Constructs a new pinch gesture recognizer. - To be added. @@ -63,8 +61,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -84,7 +80,6 @@ Event that is raised when a pinch gesture updates. - To be added. @@ -119,7 +114,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -150,7 +144,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -181,7 +174,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -214,7 +206,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureUpdatedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureUpdatedEventArgs.xml index 75bb78693463..3fd15de8f99d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureUpdatedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PinchGestureUpdatedEventArgs.xml @@ -15,7 +15,6 @@ Event arguments for the event. - To be added. @@ -36,7 +35,6 @@ The new gesture status. Constructs a new object with default values. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PoppedToRootEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/PoppedToRootEventArgs.xml index ffbada236142..2debbbbf417d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PoppedToRootEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PoppedToRootEventArgs.xml @@ -41,7 +41,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by platform renderers. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PositionChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/PositionChangedEventArgs.xml index 28fe919728c8..06a6a837b780 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PositionChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PositionChangedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PresentationMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/PresentationMode.xml index fa6665125e83..73c23b4669f9 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PresentationMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PresentationMode.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -35,7 +33,6 @@ 2 - To be added. @@ -53,7 +50,6 @@ 4 - To be added. @@ -71,7 +67,6 @@ 6 - To be added. @@ -89,7 +84,6 @@ 5 - To be added. @@ -107,7 +101,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ProgressBar.xml b/src/Controls/docs/Microsoft.Maui.Controls/ProgressBar.xml index f79eb00a6979..6a725ed7e0b8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ProgressBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ProgressBar.xml @@ -102,8 +102,6 @@ Debug.WriteLine ("Animation completed"); To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -149,7 +147,6 @@ Debug.WriteLine ("Animation completed"); Get or sets the color of the progress bar. The color of the progress bar. - To be added. @@ -168,7 +165,6 @@ Debug.WriteLine ("Animation completed"); Backing store for the property. - To be added. @@ -247,9 +243,6 @@ Debug.WriteLine ("Animation completed"); - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PropertyChangingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/PropertyChangingEventArgs.xml index d4b3126edf94..f85a0064623a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PropertyChangingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PropertyChangingEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for the delegate. - To be added. @@ -46,7 +45,6 @@ To be added. Creates a new object that indicates that is changing. - To be added. @@ -72,7 +70,6 @@ Gets the name of the property that is changing. The name of the property that is changing. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/PropertyCondition.xml b/src/Controls/docs/Microsoft.Maui.Controls/PropertyCondition.xml index 53761d420cb2..4e73a7abc664 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/PropertyCondition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/PropertyCondition.xml @@ -67,7 +67,6 @@ Initializes a new instance. - To be added. @@ -89,8 +88,6 @@ Gets or sets the property against which the property will be compared. - To be added. - To be added. @@ -112,8 +109,6 @@ The binding value that satisfies the condition. - To be added. - To be added. @@ -142,8 +137,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/QueryPropertyAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/QueryPropertyAttribute.xml index ba638c624212..ebcc7a7582a1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/QueryPropertyAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/QueryPropertyAttribute.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. To be added. - To be added. - To be added. @@ -56,9 +52,6 @@ System.String - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RadialGradientBrush.xml b/src/Controls/docs/Microsoft.Maui.Controls/RadialGradientBrush.xml index 878f0041a73a..40464f6911b1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RadialGradientBrush.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RadialGradientBrush.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,8 +42,6 @@ To be added. - To be added. - To be added. @@ -67,8 +61,6 @@ To be added. To be added. - To be added. - To be added. @@ -90,8 +82,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -108,9 +98,6 @@ Microsoft.Maui.Controls.Point - To be added. - To be added. - To be added. @@ -127,8 +114,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -145,9 +130,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -164,9 +146,6 @@ System.Double - To be added. - To be added. - To be added. @@ -183,8 +162,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RadioButton.xml b/src/Controls/docs/Microsoft.Maui.Controls/RadioButton.xml index b361289cb743..c9bc2d7e7255 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RadioButton.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RadioButton.xml @@ -22,8 +22,6 @@ - To be added. - To be added. @@ -37,8 +35,6 @@ - To be added. - To be added. @@ -55,9 +51,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -74,8 +67,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -92,9 +83,6 @@ System.Double - To be added. - To be added. - To be added. @@ -111,8 +99,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -130,8 +116,6 @@ - To be added. - To be added. @@ -148,9 +132,6 @@ System.Double - To be added. - To be added. - To be added. @@ -167,8 +148,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -185,8 +164,6 @@ System.EventHandler<Microsoft.Maui.Controls.CheckedChangedEventArgs> - To be added. - To be added. @@ -203,8 +180,6 @@ System.String - To be added. - To be added. @@ -221,8 +196,6 @@ System.String - To be added. - To be added. @@ -239,9 +212,6 @@ System.Object - To be added. - To be added. - To be added. @@ -259,9 +229,6 @@ - To be added. - To be added. - To be added. @@ -278,8 +245,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -296,9 +261,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -315,8 +277,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -333,9 +293,6 @@ Microsoft.Maui.Controls.ControlTemplate - To be added. - To be added. - To be added. @@ -352,9 +309,6 @@ Microsoft.Maui.Controls.FontAttributes - To be added. - To be added. - To be added. @@ -371,8 +325,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -389,9 +341,6 @@ System.String - To be added. - To be added. - To be added. @@ -408,8 +357,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -431,9 +378,6 @@ System.Double - To be added. - To be added. - To be added. @@ -450,8 +394,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -468,9 +410,6 @@ System.String - To be added. - To be added. - To be added. @@ -487,8 +426,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -505,9 +442,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -524,8 +458,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -554,9 +486,6 @@ To be added. - To be added. - To be added. - To be added. @@ -574,8 +503,6 @@ - To be added. - To be added. @@ -598,9 +525,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -618,9 +542,6 @@ - To be added. - To be added. - To be added. @@ -637,8 +558,6 @@ System.String - To be added. - To be added. @@ -655,9 +574,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -674,8 +590,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -692,9 +606,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -711,8 +622,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -729,8 +638,6 @@ System.String - To be added. - To be added. @@ -747,8 +654,6 @@ System.String - To be added. - To be added. @@ -771,9 +676,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -790,9 +692,6 @@ System.Object - To be added. - To be added. - To be added. @@ -809,8 +708,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -830,9 +727,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -852,9 +746,6 @@ System.Double - To be added. - To be added. - To be added. @@ -874,9 +765,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -897,9 +785,6 @@ - To be added. - To be added. - To be added. @@ -920,9 +805,6 @@ - To be added. - To be added. - To be added. @@ -943,9 +825,6 @@ - To be added. - To be added. - To be added. @@ -966,9 +845,6 @@ - To be added. - To be added. - To be added. @@ -989,9 +865,6 @@ - To be added. - To be added. - To be added. @@ -1017,8 +890,6 @@ To be added. To be added. - To be added. - To be added. @@ -1039,9 +910,6 @@ - To be added. - To be added. - To be added. @@ -1067,8 +935,6 @@ To be added. To be added. - To be added. - To be added. @@ -1094,8 +960,6 @@ To be added. To be added. - To be added. - To be added. @@ -1121,8 +985,6 @@ To be added. To be added. - To be added. - To be added. @@ -1148,8 +1010,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RadioButtonGroup.xml b/src/Controls/docs/Microsoft.Maui.Controls/RadioButtonGroup.xml index abae4e228006..66f95a9aa393 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RadioButtonGroup.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RadioButtonGroup.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -76,8 +68,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -94,8 +84,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ReferenceTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/ReferenceTypeConverter.xml index 0a2db6ebf9e8..baa9b8fa216a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ReferenceTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ReferenceTypeConverter.xml @@ -18,7 +18,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -34,7 +33,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -57,8 +55,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -88,8 +84,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -117,8 +111,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RefreshView.xml b/src/Controls/docs/Microsoft.Maui.Controls/RefreshView.xml index b18589cc2cff..61dae7d79c5c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RefreshView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RefreshView.xml @@ -24,8 +24,6 @@ - To be added. - To be added. @@ -39,8 +37,6 @@ - To be added. - To be added. @@ -57,9 +53,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -76,9 +69,6 @@ System.Object - To be added. - To be added. - To be added. @@ -95,8 +85,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -113,8 +101,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -131,9 +117,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -150,8 +133,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -180,9 +161,6 @@ To be added. - To be added. - To be added. - To be added. @@ -205,9 +183,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -234,8 +209,6 @@ To be added. - To be added. - To be added. @@ -252,9 +225,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -271,8 +241,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -289,8 +257,6 @@ System.EventHandler - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Region.xml b/src/Controls/docs/Microsoft.Maui.Controls/Region.xml index 6771c1fa691a..b04589d10369 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Region.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Region.xml @@ -41,7 +41,6 @@ Returns if the specified point is inside the region. Otherwise, returns . if the specified point is inside the region. Otherwise, . - To be added. @@ -68,7 +67,6 @@ Returns if the point that is represented by the specified coordinates is inside the region. Otherwise, returns . if the specified point that is represented by the specified coordinates is inside the region. Otherwise, . - To be added. @@ -89,7 +87,6 @@ Returns a region shrunk by the values in the most recent inflation, or does nothing if there has not been a previous inflation. A region shrunk by the values in the most recent inflation, or does nothing if there has not been a previous inflation. - To be added. @@ -121,7 +118,6 @@ The top of the region. Creates and returns a region that detects points inside a collection of rectangles created from the lines that are specified by the provided data. A region that detects points inside a collection of rectangles created from the lines that are specified by the provided data. - To be added. @@ -145,7 +141,6 @@ The amount by which to move each side of the region or its subregions. Returns a region that is expanded by or has all of its subregions expanded by the specified . A region that is expanded by or has all of its subregions expanded by the specified . - To be added. @@ -175,7 +170,6 @@ The amount to move the bottom down. Returns a region that is expanded by or has all of its subregions expanded by the specified values. A region that is expanded by or has all of its subregions expanded by the specified values. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSource.xml index 117f56e10749..71b189b42b27 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSource.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -35,8 +33,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -53,9 +49,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -72,9 +65,6 @@ System.Type - To be added. - To be added. - To be added. @@ -91,9 +81,6 @@ Microsoft.Maui.Controls.RelativeBindingSourceMode - To be added. - To be added. - To be added. @@ -110,9 +97,6 @@ Microsoft.Maui.Controls.RelativeBindingSource - To be added. - To be added. - To be added. @@ -129,9 +113,6 @@ Microsoft.Maui.Controls.RelativeBindingSource - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSourceMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSourceMode.xml index 9e11354260a8..950f6e8b98e3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSourceMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RelativeBindingSourceMode.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 3 - To be added. @@ -48,7 +45,6 @@ 4 - To be added. @@ -66,7 +62,6 @@ 2 - To be added. @@ -84,7 +79,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RenderWithAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/RenderWithAttribute.xml index 71547755166a..d896cea2e709 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RenderWithAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RenderWithAttribute.xml @@ -65,8 +65,6 @@ To be added. To be added. - To be added. - To be added. @@ -83,9 +81,6 @@ System.Type[] - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ResourceDictionary.xml b/src/Controls/docs/Microsoft.Maui.Controls/ResourceDictionary.xml index c28d78776617..549ecea1ee76 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ResourceDictionary.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ResourceDictionary.xml @@ -45,7 +45,6 @@ An IDictionary that maps identifier strings to arbitrary resource objects. - To be added. @@ -67,7 +66,6 @@ Creates a new empty object. - To be added. @@ -90,7 +88,6 @@ The resource dictionary to add. Add to the merged dictionaries in resource dictionary. - To be added. @@ -142,7 +139,6 @@ The style sheet to add Adds to resource dictionary's list of style sheets. - To be added. @@ -176,7 +172,6 @@ The identifier to be used to retrieve the . The associated with the . Adds and to the as a key-value pair. - To be added. @@ -205,7 +200,6 @@ Empties the . - To be added. @@ -237,7 +231,6 @@ The identifier being searched for. Whether the contains a key-value pair identified by . - To be added. This method will only return true if the key is in the immediate ResourceDictionary; it will not search any merged dictionaries. @@ -266,8 +259,6 @@ The number of entries in the . - To be added. - To be added. @@ -296,8 +287,6 @@ Returns a of the 's s. - To be added. - To be added. @@ -329,8 +318,6 @@ The identifier of the desired object. Retrieves the value associated with the key . - To be added. - To be added. @@ -358,8 +345,6 @@ The collection of identifier s that are keys in the . - To be added. - To be added. @@ -378,8 +363,6 @@ Gets the collection of dictionaries that were merged into this dictionary. - To be added. - To be added. @@ -410,7 +393,6 @@ Gets or sets the type of object with which the resource dictionary is merged. The type of object with which the resource dictionary is merged, or null if the dictionary is not merged with another. - To be added. @@ -444,7 +426,6 @@ Removes the key and value identified by from the . if the key existed and the removal was successful. - To be added. @@ -481,7 +462,6 @@ To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -506,7 +486,6 @@ Gets or sets the URI of the merged resource dictionary. The URI of the merged resource dictionary. - To be added. @@ -538,7 +517,6 @@ The item to add. Adds an item to the collection. - To be added. @@ -570,8 +548,6 @@ The item to add. Returns a value that indicates whether the dictionary contains the value in , indexed by the key in . - To be added. - To be added. @@ -605,7 +581,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -633,8 +608,6 @@ Gets a value that indicates whether the resource dictionary is read-only. - To be added. - To be added. @@ -666,8 +639,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -696,8 +667,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -723,9 +692,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -753,8 +719,6 @@ Retrieves the values of the . - To be added. - To be added. @@ -774,8 +738,6 @@ System.EventHandler<Microsoft.Maui.Controls.Internals.ResourcesChangedEventArgs> - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RouteFactory.xml b/src/Controls/docs/Microsoft.Maui.Controls/RouteFactory.xml index 18d5c9c6eebb..d4e039d73913 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RouteFactory.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RouteFactory.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -46,9 +42,6 @@ - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Routing.xml b/src/Controls/docs/Microsoft.Maui.Controls/Routing.xml index 0064c47f9769..9a04fde7d004 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Routing.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Routing.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -34,9 +32,6 @@ To be added. - To be added. - To be added. - To be added. @@ -57,9 +52,6 @@ To be added. - To be added. - To be added. - To be added. @@ -80,9 +72,6 @@ To be added. - To be added. - To be added. - To be added. @@ -103,9 +92,6 @@ To be added. - To be added. - To be added. - To be added. @@ -128,8 +114,6 @@ To be added. To be added. - To be added. - To be added. @@ -152,8 +136,6 @@ To be added. To be added. - To be added. - To be added. @@ -170,8 +152,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -194,8 +174,6 @@ To be added. To be added. - To be added. - To be added. @@ -216,8 +194,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RoutingEffect.xml b/src/Controls/docs/Microsoft.Maui.Controls/RoutingEffect.xml index 8bbb2f2bfe04..cc810ffad5ae 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RoutingEffect.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RoutingEffect.xml @@ -14,7 +14,6 @@ Platform-independent effect that wraps an inner effect, which is usually platform-specific. - To be added. @@ -34,7 +33,6 @@ The ID for the effect. Creates a new routing effect with the specified . - To be added. @@ -54,7 +52,6 @@ Method that is called after the effect is attached and made valid. - To be added. @@ -74,7 +71,6 @@ Method that is called after the effect is detached and invalidated. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinition.xml b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinition.xml index ca15e9fe39d8..6edda7e2b4da 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinition.xml @@ -57,7 +57,6 @@ Creates a new object with default values. - To be added. @@ -82,8 +81,6 @@ Gets or sets the height of the row. - To be added. - To be added. @@ -108,7 +105,6 @@ Backing store for the property. - To be added. @@ -136,7 +132,6 @@ Event that is raised when the size of the row is changed. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollection.xml b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollection.xml index 9870910786ae..be91174c370c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollection.xml @@ -23,7 +23,6 @@ A for s. - To be added. @@ -45,7 +44,6 @@ Creates a new empty object. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollectionTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollectionTypeConverter.xml index eca477f2edb8..bae633da9e34 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollectionTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/RowDefinitionCollectionTypeConverter.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -54,9 +50,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollMode.xml index 65a5414d79fd..c6161aa8ae38 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollMode.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 2 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToMode.xml index 4f6392b35b20..64ffd562dd7c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToMode.xml @@ -15,7 +15,6 @@ Enumerates values that describe how a scroll request is made. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToPosition.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToPosition.xml index 16f56d369c12..3a08b35df31a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToPosition.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToPosition.xml @@ -16,7 +16,6 @@ Enumerates values that describe a scroll request. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestEventArgs.xml index e4a0c784210e..53da7ac02cb8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -37,8 +35,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -62,8 +58,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -80,9 +74,6 @@ System.Object - To be added. - To be added. - To be added. @@ -99,9 +90,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -118,9 +106,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -137,9 +122,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -156,9 +138,6 @@ System.Object - To be added. - To be added. - To be added. @@ -175,9 +154,6 @@ Microsoft.Maui.Controls.ScrollToMode - To be added. - To be added. - To be added. @@ -194,9 +170,6 @@ Microsoft.Maui.Controls.ScrollToPosition - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestedEventArgs.xml index 92b80f813a0b..f1b2d6c15a3a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollToRequestedEventArgs.xml @@ -20,7 +20,6 @@ Arguments for the event that is raised when a scroll is requested. - To be added. @@ -41,8 +40,6 @@ An element to scroll to. - To be added. - To be added. @@ -63,8 +60,6 @@ Whether to scroll by element or by position. - To be added. - To be added. @@ -85,8 +80,6 @@ An enumeration value that describes which part of an element to scroll to. - To be added. - To be added. @@ -107,8 +100,6 @@ The X position to scroll to. - To be added. - To be added. @@ -129,8 +120,6 @@ The Y position to scroll to. - To be added. - To be added. @@ -151,8 +140,6 @@ Gets a value that tells whether the scroll operation should be animated. - To be added. - To be added. @@ -174,8 +161,6 @@ This method is for internal use by platform renderers. - To be added. - To be added. @@ -197,8 +182,6 @@ Internal. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrollView.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrollView.xml index 163046564547..5a69b4743679 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrollView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrollView.xml @@ -198,8 +198,6 @@ MainPage = new ContentPage For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -219,7 +217,6 @@ MainPage = new ContentPage Gets or sets a value that controls when the horizontal scroll bar is visible. A value that controls when the horizontal scroll bar is visible. - To be added. @@ -238,7 +235,6 @@ MainPage = new ContentPage Backing store for the property. - To be added. @@ -263,9 +259,6 @@ MainPage = new ContentPage Microsoft.Maui.Controls.Shapes.Rectangle - To be added. - To be added. - To be added. @@ -333,8 +326,6 @@ MainPage = new ContentPage To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -451,7 +442,6 @@ MainPage = new ContentPage Event that is raised after a scroll completes. - To be added. @@ -480,8 +470,6 @@ MainPage = new ContentPage The Y position of the finished scroll. Whether or not to animate the scroll. Returns a task that scrolls the scroll view to a position asynchronously. - To be added. - To be added. @@ -510,8 +498,6 @@ MainPage = new ContentPage The scroll position. Whether or not to animate the scroll. Returns a task that scrolls the scroll view to an element asynchronously. - To be added. - To be added. @@ -538,7 +524,6 @@ MainPage = new ContentPage For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -559,8 +544,6 @@ MainPage = new ContentPage Gets the current X scroll position. - To be added. - To be added. @@ -581,7 +564,6 @@ MainPage = new ContentPage Backing store for the property. - To be added. @@ -602,8 +584,6 @@ MainPage = new ContentPage Gets the current Y scroll position. - To be added. - To be added. @@ -624,7 +604,6 @@ MainPage = new ContentPage Backing store for the property. - To be added. @@ -652,7 +631,6 @@ MainPage = new ContentPage For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -685,7 +663,6 @@ MainPage = new ContentPage For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -705,7 +682,6 @@ MainPage = new ContentPage Gets or sets a value that controls when the vertical scroll bar is visible. A value that controls when the vertical scroll bar is visible. - To be added. @@ -724,7 +700,6 @@ MainPage = new ContentPage Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ScrolledEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ScrolledEventArgs.xml index b90b3a05c47d..c726505e902c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ScrolledEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ScrolledEventArgs.xml @@ -16,7 +16,6 @@ Arguments for the event that is raised when a window is scrolled. - To be added. @@ -40,7 +39,6 @@ The X position of the finished scroll. The Y position of the finished scroll. Constructs a new object for a scroll to and . - To be added. @@ -61,8 +59,6 @@ The X position of the finished scroll. - To be added. - To be added. @@ -83,8 +79,6 @@ The Y position of the finished scroll. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SearchBar.xml b/src/Controls/docs/Microsoft.Maui.Controls/SearchBar.xml index a96a4624f085..79941ccc7275 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SearchBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SearchBar.xml @@ -106,7 +106,6 @@ public class App : Application Creates a new . - To be added. @@ -128,8 +127,6 @@ public class App : Application Gets or sets the color of the cancel button. - To be added. - To be added. @@ -151,7 +148,6 @@ public class App : Application Backing store for the CancelButtonColor property. - To be added. @@ -168,8 +164,6 @@ public class App : Application Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -189,8 +183,6 @@ public class App : Application Gets a value that indicates whether the font for the searchbar text is bold, italic, or neither. - To be added. - To be added. @@ -210,7 +202,6 @@ public class App : Application Backing store for the FontAttributes property. - To be added. @@ -230,8 +221,6 @@ public class App : Application Gets or sets the font family for the search bar text. - To be added. - To be added. @@ -251,7 +240,6 @@ public class App : Application Backing store for the FontFamily property. - To be added. @@ -276,8 +264,6 @@ public class App : Application Gets the size of the font for the text in the searchbar. - To be added. - To be added. @@ -297,7 +283,6 @@ public class App : Application Backing store for the FontSize property. - To be added. @@ -317,8 +302,6 @@ public class App : Application Gets or sets the horizontal text alignment. - To be added. - To be added. @@ -338,7 +321,6 @@ public class App : Application Backing store for the property. - To be added. @@ -369,8 +351,6 @@ public class App : Application To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -398,7 +378,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -418,7 +397,6 @@ public class App : Application Backing store for the property. - To be added. @@ -443,7 +421,6 @@ public class App : Application Backing store for the property. - To be added. @@ -468,7 +445,6 @@ public class App : Application Event that is raised when the user presses the Search button. - To be added. @@ -494,7 +470,6 @@ public class App : Application Gets or sets the command that is run when the user presses Search button. The command that is run when the user presses Search button. - To be added. @@ -520,7 +495,6 @@ public class App : Application Gets or sets the parameter that is sent to the . The parameter that is sent to the . - To be added. @@ -545,7 +519,6 @@ public class App : Application Backing store for the property. - To be added. @@ -570,7 +543,6 @@ public class App : Application Backing store for the property. - To be added. @@ -590,7 +562,6 @@ public class App : Application Backing store for the property. - To be added. @@ -615,7 +586,6 @@ public class App : Application Backing store for the property. - To be added. @@ -632,9 +602,6 @@ public class App : Application Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -651,8 +618,6 @@ public class App : Application Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -675,8 +640,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -704,7 +667,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -732,7 +694,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -760,7 +721,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -788,7 +748,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SearchBoxVisibility.xml b/src/Controls/docs/Microsoft.Maui.Controls/SearchBoxVisibility.xml index 7f7a1504af51..78047331b639 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SearchBoxVisibility.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SearchBoxVisibility.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SearchHandler.xml b/src/Controls/docs/Microsoft.Maui.Controls/SearchHandler.xml index d63070817cb8..2cc34e3519e8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SearchHandler.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SearchHandler.xml @@ -20,7 +20,6 @@ Default implementation of . - To be added. @@ -34,8 +33,6 @@ - To be added. - To be added. @@ -52,9 +49,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -71,8 +65,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -89,9 +81,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -108,8 +97,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -126,9 +113,6 @@ System.Double - To be added. - To be added. - To be added. @@ -145,8 +129,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -164,8 +146,6 @@ The icon displayed to clear the contents of the search box. - To be added. - To be added. @@ -183,8 +163,6 @@ The accessible help text for the clear icon. - To be added. - To be added. @@ -202,7 +180,6 @@ The backing store for the field. - To be added. @@ -220,8 +197,6 @@ The name of the clear icon for use with screen readers. - To be added. - To be added. @@ -239,7 +214,6 @@ The backing store for the field. - To be added. @@ -257,7 +231,6 @@ The backing store for the field. - To be added. @@ -275,8 +248,6 @@ ICommand executed when the is tapped. - To be added. - To be added. @@ -294,8 +265,6 @@ The parameter passed to the . - To be added. - To be added. @@ -313,7 +282,6 @@ The backing store for the field. - To be added. @@ -331,7 +299,6 @@ The backing store for the field. - To be added. @@ -350,7 +317,6 @@ Whether the can be executed. The default value is `true`. - To be added. @@ -368,7 +334,6 @@ The backing store for the field. - To be added. @@ -386,8 +351,6 @@ The accessible help text for the . - To be added. - To be added. @@ -405,7 +368,6 @@ The backing store for the field. - To be added. @@ -423,8 +385,6 @@ The clear placeholder icon displayed when the search box is empty. - To be added. - To be added. @@ -442,7 +402,6 @@ The backing store for the field. - To be added. @@ -460,8 +419,6 @@ The name of the clear placeholder icon for use with screen readers. - To be added. - To be added. @@ -479,7 +436,6 @@ The backing store for the field. - To be added. @@ -497,8 +453,6 @@ Gets or sets the ICommand executed when the search query is confirmed. - To be added. - To be added. @@ -516,8 +470,6 @@ Gets or sets the parameter of the , which is executed when the search query is confirmed. - To be added. - To be added. @@ -535,7 +487,6 @@ The backing store for the field. - To be added. @@ -553,7 +504,6 @@ The backing store for the field. - To be added. @@ -571,8 +521,6 @@ The name or path of the property that is displayed for each item of data in the collection. - To be added. - To be added. @@ -590,7 +538,6 @@ The backing store for the field. - To be added. @@ -608,9 +555,6 @@ - To be added. - To be added. - To be added. @@ -632,8 +576,6 @@ System.EventHandler<Microsoft.Maui.Controls.VisualElement+FocusRequestArgs> - To be added. - To be added. @@ -650,8 +592,6 @@ System.EventHandler<System.EventArgs> - To be added. - To be added. @@ -668,9 +608,6 @@ Microsoft.Maui.Controls.FontAttributes - To be added. - To be added. - To be added. @@ -687,8 +624,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -705,9 +640,6 @@ System.String - To be added. - To be added. - To be added. @@ -724,8 +656,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -747,9 +677,6 @@ System.Double - To be added. - To be added. - To be added. @@ -766,8 +693,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -784,9 +709,6 @@ Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -803,8 +725,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -821,9 +741,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -840,8 +757,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -863,8 +778,6 @@ Microsoft.Maui.Controls.BindablePropertyKey - To be added. - To be added. @@ -883,7 +796,6 @@ Gets or sets whether the search box is enabled. The default value is `true`. - To be added. @@ -901,7 +813,6 @@ The backing store for the field. - To be added. @@ -920,7 +831,6 @@ The collection of items to be displayed in the suggestion area. Default is . The default value is `null`. - To be added. @@ -938,7 +848,6 @@ The backing store for the field. - To be added. @@ -956,7 +865,6 @@ The to apply to each item in . - To be added. For example, to create the style shown here: , developers could use either the following XAML or C#: @@ -1028,7 +936,6 @@ The backing store for the field. - To be added. @@ -1045,9 +952,6 @@ Microsoft.Maui.Keyboard - To be added. - To be added. - To be added. @@ -1064,8 +968,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1084,7 +986,6 @@ Developers may override this method to respond to the being tapped. - To be added. @@ -1102,8 +1003,6 @@ - To be added. - To be added. @@ -1197,7 +1096,6 @@ Developers may override this method to respond to the user entering or confirming their query in the search box. - To be added. @@ -1215,8 +1113,6 @@ - To be added. - To be added. @@ -1234,8 +1130,6 @@ The text to display when the search box is empty. - To be added. - To be added. @@ -1252,9 +1146,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -1271,8 +1162,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1290,7 +1179,6 @@ The backing store for the field. - To be added. @@ -1308,8 +1196,6 @@ Gets or sets the text of the search box. - To be added. - To be added. @@ -1327,8 +1213,6 @@ The icon used to indicate that search is available. - To be added. - To be added. @@ -1346,8 +1230,6 @@ The accessible help text for the . - To be added. - To be added. @@ -1365,7 +1247,6 @@ The backing store for the field. - To be added. @@ -1383,8 +1264,6 @@ The name of the for use with screen readers. - To be added. - To be added. @@ -1402,7 +1281,6 @@ The backing store for the field. - To be added. @@ -1420,7 +1298,6 @@ The backing store for the field. - To be added. @@ -1438,7 +1315,6 @@ The backing store for the field. - To be added. @@ -1457,7 +1333,6 @@ Gets or sets whether the search box is visible. The default is (visible and expanded). - To be added. @@ -1475,7 +1350,6 @@ The backing store for the field. - To be added. @@ -1492,9 +1366,6 @@ System.Object - To be added. - To be added. - To be added. @@ -1512,7 +1383,6 @@ The backing store for the field. - To be added. @@ -1538,8 +1408,6 @@ To be added. - To be added. - To be added. @@ -1558,7 +1426,6 @@ Gets or sets whether search results should be expected in the suggestion area on text entry. The default value is `false`. - To be added. @@ -1576,7 +1443,6 @@ The backing store for the field. - To be added. @@ -1593,9 +1459,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -1612,8 +1475,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1630,9 +1491,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -1649,8 +1507,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1668,8 +1524,6 @@ - To be added. - To be added. @@ -1686,8 +1540,6 @@ System.EventHandler<System.EventArgs> - To be added. - To be added. @@ -1710,9 +1562,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -1729,9 +1578,6 @@ Microsoft.Maui.TextAlignment - To be added. - To be added. - To be added. @@ -1748,8 +1594,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1770,9 +1614,6 @@ - To be added. - To be added. - To be added. @@ -1798,8 +1639,6 @@ To be added. To be added. - To be added. - To be added. @@ -1825,8 +1664,6 @@ To be added. To be added. - To be added. - To be added. @@ -1852,8 +1689,6 @@ To be added. To be added. - To be added. - To be added. @@ -1879,8 +1714,6 @@ To be added. To be added. - To be added. - To be added. @@ -1901,8 +1734,6 @@ - To be added. - To be added. @@ -1926,8 +1757,6 @@ To be added. - To be added. - To be added. @@ -1947,9 +1776,6 @@ System.Collections.Generic.IReadOnlyList<System.Object> - To be added. - To be added. - To be added. @@ -1969,8 +1795,6 @@ System.EventHandler<Microsoft.Maui.Controls.ListProxyChangedEventArgs> - To be added. - To be added. @@ -1991,8 +1815,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SelectableItemsView.xml b/src/Controls/docs/Microsoft.Maui.Controls/SelectableItemsView.xml index 57026674b176..ac3488798a58 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SelectableItemsView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SelectableItemsView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -49,8 +45,6 @@ To be added. - To be added. - To be added. @@ -67,9 +61,6 @@ System.Object - To be added. - To be added. - To be added. @@ -87,7 +78,6 @@ The backing store for the field. - To be added. @@ -104,9 +94,6 @@ System.Collections.Generic.IList<System.Object> - To be added. - To be added. - To be added. @@ -124,7 +111,6 @@ The backing store for the field. - To be added. @@ -141,8 +127,6 @@ System.EventHandler<Microsoft.Maui.Controls.SelectionChangedEventArgs> - To be added. - To be added. @@ -159,9 +143,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -178,9 +159,6 @@ System.Object - To be added. - To be added. - To be added. @@ -198,7 +176,6 @@ The backing store for the field. - To be added. @@ -216,7 +193,6 @@ The backing store for the field. - To be added. @@ -233,9 +209,6 @@ Microsoft.Maui.Controls.SelectionMode - To be added. - To be added. - To be added. @@ -253,7 +226,6 @@ The backing store for the field. - To be added. @@ -274,8 +246,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SelectedItemChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SelectedItemChangedEventArgs.xml index abf3c0d2dfb9..536ac107ef2d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SelectedItemChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SelectedItemChangedEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for the event. - To be added. @@ -51,7 +50,6 @@ The newly selected item. Creates a new event that indicates that the user has selected . - To be added. @@ -71,8 +69,6 @@ To be added. To be added. - To be added. - To be added. @@ -97,8 +93,6 @@ Gets the new selected item. - To be added. - To be added. @@ -115,9 +109,6 @@ System.Int32 - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SelectedPositionChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SelectedPositionChangedEventArgs.xml index 1cb806e19e8b..f4c63ca2c731 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SelectedPositionChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SelectedPositionChangedEventArgs.xml @@ -14,7 +14,6 @@ Event arguments for positional scrolling events. - To be added. @@ -34,7 +33,6 @@ The newly selected position. Creates a new with the specified new . - To be added. @@ -53,8 +51,6 @@ Gets the newly selected position. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SelectionChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SelectionChangedEventArgs.xml index f009c689e9f8..3c7a3312c790 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SelectionChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SelectionChangedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -30,9 +28,6 @@ System.Collections.Generic.IReadOnlyList<System.Object> - To be added. - To be added. - To be added. @@ -49,9 +44,6 @@ System.Collections.Generic.IReadOnlyList<System.Object> - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SelectionMode.xml b/src/Controls/docs/Microsoft.Maui.Controls/SelectionMode.xml index 7fa984ead9e3..9e5e07db56fa 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SelectionMode.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SelectionMode.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 2 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. @@ -66,7 +62,6 @@ 1 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SeparatorVisibility.xml b/src/Controls/docs/Microsoft.Maui.Controls/SeparatorVisibility.xml index aad57dc8d731..f4dcd9661ffe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SeparatorVisibility.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SeparatorVisibility.xml @@ -16,7 +16,6 @@ Enumerates values that control the visibility of list item separators. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Setter.xml b/src/Controls/docs/Microsoft.Maui.Controls/Setter.xml index 1c23d2fe9fa0..b876ced73af8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Setter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Setter.xml @@ -47,7 +47,6 @@ Creates a new object. - To be added. @@ -69,7 +68,6 @@ The property on which to apply the assignment. - To be added. Only bindable properties can be set with a .. @@ -88,9 +86,6 @@ System.String - To be added. - To be added. - To be added. @@ -112,8 +107,6 @@ The value to assign to the property. - To be added. - To be added. @@ -142,8 +135,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SettersExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/SettersExtensions.xml index a5a7ecc12ca4..459e7c7d22d5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SettersExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SettersExtensions.xml @@ -49,7 +49,6 @@ The property to set. The value to which to set the property set. Add a Setter with a value to the IList<Setter> - To be added. @@ -79,7 +78,6 @@ The property to set. The binding to add. Add a Setter with a Binding to the IList<Setter> - To be added. @@ -109,7 +107,6 @@ The resource to add. The resource key. Add a Setter with a DynamicResource to the IList<Setter> - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Shell.xml b/src/Controls/docs/Microsoft.Maui.Controls/Shell.xml index 9fcfa3faa55a..a9b0421820b5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Shell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Shell.xml @@ -34,7 +34,6 @@ A that provides fundamental UI features that most applications require, leaving you to focus on the application's core workload. - To be added. @@ -49,7 +48,6 @@ Creates a new element with default values. - To be added. @@ -67,7 +65,6 @@ Static property providing access to the current . - To be added. This is a typecast alias for Microsoft.Maui.Controls.Application.Current.MainPage. @@ -88,8 +85,6 @@ The current navigation state of the . - To be added. - To be added. @@ -107,7 +102,6 @@ The backing store for the field. - To be added. @@ -128,9 +122,6 @@ To be added. - To be added. - To be added. - To be added. @@ -154,7 +145,6 @@ To be added. To be added. Asynchronously navigates to , optionally animating. - To be added. Note that has implicit conversions from and , so developers may write code such as the following, with no explicit instantiation of the : @@ -180,8 +170,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); The collection of objects managed by this. - To be added. - To be added. @@ -199,7 +187,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); The backing store for the field. - To be added. @@ -217,7 +204,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); The library raises this event after performing navigation. - To be added. @@ -235,7 +221,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); The library raises this event immediately prior to performing navigation. - To be added. @@ -361,8 +346,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. To be added. - To be added. - To be added. @@ -389,7 +372,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -414,7 +396,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -441,7 +422,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -462,8 +442,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -485,8 +463,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -510,9 +486,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. - To be added. - To be added. - To be added. @@ -533,9 +506,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); - To be added. - To be added. - To be added. @@ -566,8 +536,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -587,8 +555,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. @@ -613,7 +579,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -638,8 +603,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -674,8 +637,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -700,8 +661,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -726,8 +685,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -748,7 +705,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -773,7 +729,6 @@ await Shell.Current.GoToAsync("app://xamarin.com/xaminals/animals/monkeys"); To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellAppearance.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellAppearance.xml index 1082a93369df..ba390648fca5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellAppearance.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellAppearance.xml @@ -21,8 +21,6 @@ - To be added. - To be added. @@ -39,9 +37,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -58,9 +53,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -81,9 +73,6 @@ To be added. - To be added. - To be added. - To be added. @@ -100,9 +89,6 @@ Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -119,9 +105,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -139,9 +122,6 @@ - To be added. - To be added. - To be added. @@ -162,9 +142,6 @@ To be added. - To be added. - To be added. - To be added. @@ -182,8 +159,6 @@ - To be added. - To be added. @@ -206,9 +181,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -231,9 +203,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -250,9 +219,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -269,9 +235,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -288,9 +251,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -307,9 +267,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -326,9 +283,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -345,9 +299,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -364,9 +315,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -386,9 +334,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -408,9 +353,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -430,9 +372,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -452,9 +391,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -474,9 +410,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellContent.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellContent.xml index 8fc563129b0f..bb0684250b90 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellContent.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellContent.xml @@ -25,7 +25,6 @@ Corresponds to a contained in a . - To be added. @@ -39,8 +38,6 @@ - To be added. - To be added. @@ -58,7 +55,6 @@ Gets or sets the . - To be added. Using this property will cause performance issues. Please use instead. @@ -77,7 +73,6 @@ The backing store for the field. - To be added. @@ -95,8 +90,6 @@ Gets or sets a data template to create when ShellContent becomes active. - To be added. - To be added. @@ -114,7 +107,6 @@ The backing store for the field. - To be added. @@ -132,8 +124,6 @@ Add instances to flyout. - To be added. - To be added. @@ -151,7 +141,6 @@ The backing store for the field. - To be added. @@ -172,8 +161,6 @@ To be added. - To be added. - To be added. @@ -199,8 +186,6 @@ To be added. - To be added. - To be added. @@ -223,8 +208,6 @@ To be added. To be added. - To be added. - To be added. @@ -246,8 +229,6 @@ To be added. Used primarily by XAML to implicitly wrap a page in with a . - To be added. - To be added. @@ -269,8 +250,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -290,8 +269,6 @@ System.EventHandler - To be added. - To be added. @@ -312,8 +289,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -338,7 +313,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellGroupItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellGroupItem.xml index 071b6018922d..ca66540ba626 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellGroupItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellGroupItem.xml @@ -13,7 +13,6 @@ A that has . Base class for and . - To be added. @@ -27,8 +26,6 @@ - To be added. - To be added. @@ -46,8 +43,6 @@ AsSingleItem (default) will only display the title of this item in the flyout. AsMultipleItems will create a separate flyout option for each child and . - To be added. - To be added. @@ -65,7 +60,6 @@ The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellItem.xml index f478486da756..67e5cd8c8ae5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellItem.xml @@ -31,7 +31,6 @@ One or more items in the flyout. Contained within a . - To be added. @@ -45,8 +44,6 @@ - To be added. - To be added. @@ -64,8 +61,6 @@ The currently selected or . - To be added. - To be added. @@ -83,7 +78,6 @@ The backing store for the field. - To be added. @@ -101,8 +95,6 @@ The collection of objects managed by this. - To be added. - To be added. @@ -120,7 +112,6 @@ The backing store for the field. - To be added. @@ -149,9 +140,6 @@ To be added. - To be added. - To be added. - To be added. @@ -227,8 +215,6 @@ To be added. To be added. - To be added. - To be added. @@ -250,8 +236,6 @@ To be added. Used primarily by XAML to implicitly create a from a . - To be added. - To be added. @@ -273,8 +257,6 @@ To be added. Used primarily by XAML to implicitly create a from a . - To be added. - To be added. @@ -296,8 +278,6 @@ To be added. Used primarily by XAML to implicitly create a from a . - To be added. - To be added. @@ -319,8 +299,6 @@ To be added. Used primarily by XAML to implicitly create a from a . - To be added. - To be added. @@ -341,9 +319,6 @@ - To be added. - To be added. - To be added. @@ -363,8 +338,6 @@ System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. @@ -391,8 +364,6 @@ To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -412,9 +383,6 @@ System.Boolean - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatedEventArgs.xml index c6ad12eb6192..1f525727ff5a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatedEventArgs.xml @@ -13,7 +13,6 @@ Arguments for the event. - To be added. @@ -35,8 +34,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -53,9 +50,6 @@ Microsoft.Maui.Controls.ShellNavigationState - To be added. - To be added. - To be added. @@ -72,9 +66,6 @@ Microsoft.Maui.Controls.ShellNavigationState - To be added. - To be added. - To be added. @@ -91,9 +82,6 @@ Microsoft.Maui.Controls.ShellNavigationSource - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingDeferral.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingDeferral.xml index ef7097e57f17..514b3a8b5f42 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingDeferral.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingDeferral.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingEventArgs.xml index bde331ece58d..e660e0b26a47 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigatingEventArgs.xml @@ -13,7 +13,6 @@ Arguments for the event. - To be added. @@ -37,8 +36,6 @@ To be added. To be added. To be added. - To be added. - To be added. @@ -55,9 +52,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -75,9 +69,6 @@ - To be added. - To be added. - To be added. @@ -94,9 +85,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -113,9 +101,6 @@ Microsoft.Maui.Controls.ShellNavigationState - To be added. - To be added. - To be added. @@ -133,9 +118,6 @@ - To be added. - To be added. - To be added. @@ -152,9 +134,6 @@ Microsoft.Maui.Controls.ShellNavigationSource - To be added. - To be added. - To be added. @@ -171,9 +150,6 @@ Microsoft.Maui.Controls.ShellNavigationState - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationSource.xml index c0c43bdb1a44..f538073492c8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationSource.xml @@ -12,7 +12,6 @@ Enumerates reasons for a navigation event in Shell applications. - To be added. @@ -30,7 +29,6 @@ 4 - To be added. @@ -48,7 +46,6 @@ 2 - To be added. @@ -66,7 +63,6 @@ 3 - To be added. @@ -84,7 +80,6 @@ 1 - To be added. @@ -102,7 +97,6 @@ 5 - To be added. @@ -120,7 +114,6 @@ 8 - To be added. @@ -138,7 +131,6 @@ 6 - To be added. @@ -156,7 +148,6 @@ 7 - To be added. @@ -174,7 +165,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationState.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationState.xml index e37a4129722f..8b22da12e73c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationState.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellNavigationState.xml @@ -18,7 +18,6 @@ A URI representing either the current page or a destination for navigation in a Shell application. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -51,8 +48,6 @@ To be added. - To be added. - To be added. @@ -70,8 +65,6 @@ To be added. - To be added. - To be added. @@ -88,9 +81,6 @@ System.Uri - To be added. - To be added. - To be added. @@ -111,9 +101,6 @@ To be added. - To be added. - To be added. - To be added. @@ -134,9 +121,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ShellSection.xml b/src/Controls/docs/Microsoft.Maui.Controls/ShellSection.xml index 46b9c0b1ada1..9264f8ee595c 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ShellSection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ShellSection.xml @@ -28,7 +28,6 @@ Grouped content in a Shell application, navigable by bottom tabs. - To be added. @@ -42,8 +41,6 @@ - To be added. - To be added. @@ -61,8 +58,6 @@ The currently selected . - To be added. - To be added. @@ -80,7 +75,6 @@ The backing store for the field. - To be added. @@ -98,9 +92,6 @@ - To be added. - To be added. - To be added. @@ -118,8 +109,6 @@ The collection of objects managed by this. - To be added. - To be added. @@ -137,7 +126,6 @@ The backing store for the field. - To be added. @@ -155,8 +143,6 @@ - To be added. - To be added. @@ -232,8 +218,6 @@ To be added. To be added. - To be added. - To be added. @@ -256,8 +240,6 @@ To be added. To be added. - To be added. - To be added. @@ -278,9 +260,6 @@ To be added. - To be added. - To be added. - To be added. @@ -301,9 +280,6 @@ To be added. - To be added. - To be added. - To be added. @@ -326,9 +302,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -349,8 +322,6 @@ To be added. - To be added. - To be added. @@ -371,9 +342,6 @@ To be added. - To be added. - To be added. - To be added. @@ -394,9 +362,6 @@ To be added. - To be added. - To be added. - To be added. @@ -413,9 +378,6 @@ System.Collections.Generic.IReadOnlyList<Microsoft.Maui.Controls.Page> - To be added. - To be added. - To be added. @@ -440,7 +402,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -467,7 +428,6 @@ To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -488,9 +448,6 @@ - To be added. - To be added. - To be added. @@ -510,8 +467,6 @@ System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. @@ -531,8 +486,6 @@ System.EventHandler<Microsoft.Maui.Controls.Internals.NavigationRequestedEventArgs> - To be added. - To be added. @@ -553,8 +506,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -579,8 +530,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -605,8 +554,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -633,7 +580,6 @@ To be added. To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -663,7 +609,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -695,8 +640,6 @@ To be added. - To be added. - To be added. @@ -720,8 +663,6 @@ To be added. - To be added. - To be added. @@ -753,8 +694,6 @@ To be added. - To be added. - To be added. @@ -778,8 +717,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Slider.xml b/src/Controls/docs/Microsoft.Maui.Controls/Slider.xml index adf92d058228..710c2603b129 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Slider.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Slider.xml @@ -165,8 +165,6 @@ namespace FormsGallery System.EventHandler - To be added. - To be added. @@ -183,9 +181,6 @@ namespace FormsGallery System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -203,7 +198,6 @@ namespace FormsGallery The backing store for the field. - To be added. @@ -220,8 +214,6 @@ namespace FormsGallery System.EventHandler - To be added. - To be added. @@ -238,9 +230,6 @@ namespace FormsGallery System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -258,7 +247,6 @@ namespace FormsGallery The backing store for the field. - To be added. @@ -331,7 +319,6 @@ namespace FormsGallery Gets or sets the color of the portion of the slider track that contains the maximum value of the slider. Thhe color of the portion of the slider track that contains the maximum value of the slider. - To be added. @@ -350,7 +337,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -423,7 +409,6 @@ namespace FormsGallery Gets or sets the color of the portion of the slider track that contains the minimum value of the slider. Thhe color of the portion of the slider track that contains the minimum value of the slider. - To be added. @@ -442,7 +427,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -473,8 +457,6 @@ namespace FormsGallery The platform for which to get a platform-specific instance. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -494,7 +476,6 @@ namespace FormsGallery Gets or sets the color of the slider thumb button. The color of the slider thumb button. - To be added. @@ -513,7 +494,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -541,7 +521,6 @@ namespace FormsGallery Gets or sets the image to use for the slider thumb button. The image to use for the slider thumb button. - To be added. @@ -568,7 +547,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -585,9 +563,6 @@ namespace FormsGallery Microsoft.Maui.Controls.ImageSource - To be added. - To be added. - To be added. @@ -604,8 +579,6 @@ namespace FormsGallery Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -705,8 +678,6 @@ namespace FormsGallery - To be added. - To be added. @@ -727,8 +698,6 @@ namespace FormsGallery - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsAlignment.xml b/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsAlignment.xml index 011653ac2b87..28df37661f8d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsAlignment.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsAlignment.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsType.xml b/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsType.xml index 3f736575bdad..dc21897ac644 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsType.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SnapPointsType.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 2 - To be added. @@ -66,7 +62,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SolidColorBrush.xml b/src/Controls/docs/Microsoft.Maui.Controls/SolidColorBrush.xml index fe6a2063d2ce..e7b0cf9a0e39 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SolidColorBrush.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SolidColorBrush.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. @@ -51,8 +47,6 @@ To be added. - To be added. - To be added. @@ -69,9 +63,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -88,8 +79,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -110,9 +99,6 @@ To be added. - To be added. - To be added. - To be added. @@ -130,9 +116,6 @@ - To be added. - To be added. - To be added. @@ -149,9 +132,6 @@ System.Boolean - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Span.xml b/src/Controls/docs/Microsoft.Maui.Controls/Span.xml index 018bb5da6bca..f38844aa82c5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Span.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Span.xml @@ -52,7 +52,6 @@ Initialize a new instance of the Span class. - To be added. @@ -75,7 +74,6 @@ Gets or sets the Color of the span background. - To be added. Not supported on WindowsPhone. @@ -95,7 +93,6 @@ Backing store for the property. - To be added. @@ -112,9 +109,6 @@ System.Double - To be added. - To be added. - To be added. @@ -131,8 +125,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -163,8 +155,6 @@ Gets or sets the Font for the text in the span. - To be added. - To be added. @@ -186,8 +176,6 @@ Gets a value that indicates whether the font for the span is bold, italic, or neither. - To be added. - To be added. @@ -206,7 +194,6 @@ Backing store for the property. - To be added. @@ -228,8 +215,6 @@ Gets the font family to which the font for the text in the span belongs. - To be added. - To be added. @@ -248,7 +233,6 @@ Backing store for the property. - To be added. @@ -267,7 +251,6 @@ Backing store for the property. - To be added. @@ -294,8 +277,6 @@ Gets the size of the font for the text in the span. - To be added. - To be added. @@ -314,7 +295,6 @@ Backing store for the property. - To be added. @@ -337,8 +317,6 @@ Gets or sets the Color for the text in the span. - To be added. - To be added. @@ -365,7 +343,6 @@ Backing store for the property. - To be added. @@ -385,7 +362,6 @@ Gets or sets the multiplier to apply to the default line height when displaying text. The multiplier to apply to the default line height when displaying text. - To be added. @@ -404,7 +380,6 @@ Backing store for the bindable property. - To be added. @@ -423,7 +398,6 @@ Override this method to execute an action when the BindingContext changes. - To be added. @@ -442,8 +416,6 @@ Gets or sets the Style to apply to the span. - To be added. - To be added. @@ -462,7 +434,6 @@ Backing store for the property. - To be added. @@ -485,8 +456,6 @@ Gets or sets the text of the span. - To be added. - To be added. @@ -505,8 +474,6 @@ Gets or sets the text color. - To be added. - To be added. @@ -525,7 +492,6 @@ Backing store for the property. - To be added. @@ -546,8 +512,6 @@ Gets or sets the applied to this span. - To be added. - To be added. @@ -565,7 +529,6 @@ The associated with the property. - To be added. @@ -584,7 +547,6 @@ Backing store for the property. - To be added. @@ -601,9 +563,6 @@ Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -620,8 +579,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -644,9 +601,6 @@ To be added. To be added. - To be added. - To be added. - To be added. @@ -669,8 +623,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -698,7 +650,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -726,7 +677,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -754,7 +704,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -782,7 +731,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/StackLayout.xml b/src/Controls/docs/Microsoft.Maui.Controls/StackLayout.xml index ae429c45686a..191f63ceb8f6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/StackLayout.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/StackLayout.xml @@ -119,8 +119,6 @@ The platform configuration that selects the platform specific to use. Returns the configuration object that the developer can use to call platform-specific methods for the layout. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/StateTrigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/StateTrigger.xml index c072ab1256ac..721ddaa97ac8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/StateTrigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/StateTrigger.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -83,8 +74,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/StateTriggerBase.xml b/src/Controls/docs/Microsoft.Maui.Controls/StateTriggerBase.xml index cd012e181808..bafe917ff6fe 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/StateTriggerBase.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/StateTriggerBase.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ System.EventHandler - To be added. - To be added. @@ -82,9 +73,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -102,8 +90,6 @@ - To be added. - To be added. @@ -121,8 +107,6 @@ - To be added. - To be added. @@ -143,8 +127,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Stepper.xml b/src/Controls/docs/Microsoft.Maui.Controls/Stepper.xml index 80f5add05d07..d08d351864bd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Stepper.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Stepper.xml @@ -117,7 +117,6 @@ Initializes a new instance of the Stepper class. - To be added. @@ -149,7 +148,6 @@ The current selected value. The increment by which Value is increased or decreased. Initializes a new instance of the Stepper class. - To be added. @@ -201,7 +199,6 @@ Identifies the Increment bindable property. - To be added. @@ -227,7 +224,6 @@ Gets or sets the maximum selectable value. This is a bindable property. A double. - To be added. @@ -252,7 +248,6 @@ Identifies the Maximum bindable property. - To be added. @@ -278,7 +273,6 @@ Gets or sets the minimum selectabel value. This is a bindable property. A double. - To be added. @@ -303,7 +297,6 @@ Identifies the Minimum bindable property. - To be added. @@ -334,8 +327,6 @@ To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -360,9 +351,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -387,8 +375,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -414,7 +400,6 @@ Gets or sets the current value. This is a bindable property. A double. - To be added. @@ -439,7 +424,6 @@ Raised when the property changes. - To be added. @@ -464,7 +448,6 @@ Identifies the Value bindable property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/StreamImageSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/StreamImageSource.xml index 5e91a64cfd50..ecf7c1102726 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/StreamImageSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/StreamImageSource.xml @@ -25,7 +25,6 @@ that loads an image from a . - To be added. @@ -47,7 +46,6 @@ Creates a new object with default values. - To be added. @@ -64,9 +62,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -95,7 +90,6 @@ The property that changed. Method that is called when the property that is specified by is changed. - To be added. @@ -122,7 +116,6 @@ Gets or sets the delegate responsible for returning a for the Image. - To be added. @@ -147,7 +140,6 @@ Backing store for the property. - To be added. @@ -173,8 +165,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Stretch.xml b/src/Controls/docs/Microsoft.Maui.Controls/Stretch.xml index 107a0926d2d8..34c8f443ac64 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Stretch.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Stretch.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. @@ -66,7 +62,6 @@ 2 - To be added. @@ -84,7 +79,6 @@ 3 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/StructuredItemsView.xml b/src/Controls/docs/Microsoft.Maui.Controls/StructuredItemsView.xml index 1f72c1af65ef..8765ef0a7d65 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/StructuredItemsView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/StructuredItemsView.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -27,8 +25,6 @@ - To be added. - To be added. @@ -45,9 +41,6 @@ System.Object - To be added. - To be added. - To be added. @@ -64,8 +57,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -82,9 +73,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -101,8 +89,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -119,9 +105,6 @@ System.Object - To be added. - To be added. - To be added. @@ -138,8 +121,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -156,9 +137,6 @@ Microsoft.Maui.Controls.DataTemplate - To be added. - To be added. - To be added. @@ -175,8 +153,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -193,9 +169,6 @@ Microsoft.Maui.Controls.ItemSizingStrategy - To be added. - To be added. - To be added. @@ -212,8 +185,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -230,9 +201,6 @@ Microsoft.Maui.Controls.IItemsLayout - To be added. - To be added. - To be added. @@ -249,8 +217,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Style.xml b/src/Controls/docs/Microsoft.Maui.Controls/Style.xml index 8487a9506eb2..be2a1ebf3602 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Style.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Style.xml @@ -22,7 +22,6 @@ Class that contains triggers, setters, and behaviors that completely or partially define the appearance and behavior of a class of visual elements. - To be added. @@ -51,7 +50,6 @@ The type of view to which the style will be applied. Intitializes a new instance. - To be added. @@ -70,8 +68,6 @@ Gets or sets a Boolean value that controls whether the style should be applied to controls that are derived from the base type. - To be added. - To be added. @@ -93,7 +89,6 @@ The on which this is based. - To be added. The supports a mechanism in XAML that is similar to inheritance in C#. @@ -116,8 +111,6 @@ Gets or sets the key that identifies the on which this is based. - To be added. - To be added. @@ -139,8 +132,6 @@ Gets the list of objects that belong to this . - To be added. - To be added. @@ -159,8 +150,6 @@ Gets or sets a Boolean value that controls whether, when applying an explicit style to a control, an implicit style that targets the same control should also be applied. - To be added. - To be added. @@ -179,8 +168,6 @@ Gets or sets the class for the style. - To be added. - To be added. @@ -202,8 +189,6 @@ Gets the list of objects that belong to this . - To be added. - To be added. @@ -225,7 +210,6 @@ Gets the type of object that this style can describe. See Remarks. - To be added.

Developers should be aware that implicit styles are only applied to the specific type that is described by , and not to types that inherit from it.

@@ -250,8 +234,6 @@ Gets the list of objects that belong to this . - To be added. - To be added.
diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SweepDirection.xml b/src/Controls/docs/Microsoft.Maui.Controls/SweepDirection.xml index 4237f15bdf04..7653a76eb9bd 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SweepDirection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SweepDirection.xml @@ -11,8 +11,6 @@ System.Enum - To be added. - To be added. @@ -30,7 +28,6 @@ 1 - To be added. @@ -48,7 +45,6 @@ 0 - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeChangingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeChangingEventArgs.xml index 7ad928c8664b..147b1903e184 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeChangingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeChangingEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -33,8 +31,6 @@ To be added. To be added. - To be added. - To be added. @@ -51,9 +47,6 @@ System.Double - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeEndedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeEndedEventArgs.xml index d75181f0051b..25cf0dae8333 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeEndedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeEndedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -33,8 +31,6 @@ To be added. To be added. - To be added. - To be added. @@ -51,9 +47,6 @@ System.Boolean - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeGestureRecognizer.xml index 15021d96e61c..2784dc636802 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeGestureRecognizer.xml @@ -18,7 +18,6 @@ Recognizer for swipe gestures. - To be added. @@ -34,7 +33,6 @@ Creates a new with default values. - To be added. @@ -54,7 +52,6 @@ Gets or sets the command to run when a swipe gesture is recognized. The command to run when a swipe gesture is recognized. - To be added. @@ -74,7 +71,6 @@ Gets or sets the parameter to pass to commands that take one. The parameter to pass to commands that take one. - To be added. @@ -93,7 +89,6 @@ Backing store for the property. - To be added. @@ -112,7 +107,6 @@ Backing store for the property. - To be added. @@ -132,7 +126,6 @@ Gets or sets the direction of swipes to recognize. The direction of swipes to recognize. - To be added. @@ -151,7 +144,6 @@ Backing store for the property. - To be added. @@ -176,7 +168,6 @@ The view that was swiped. The swipe direction. Method that is called by the platform renderer when a swipe occurs. - To be added. @@ -195,7 +186,6 @@ Method that is called when a view is swiped. - To be added. @@ -215,7 +205,6 @@ Gets or sets the minimum swipe distance that will cause the gesture to be recognized. The minimum swipe distance that will cause the gesture to be recognized. - To be added. @@ -234,7 +223,6 @@ Backing store for the property. - To be added. @@ -262,8 +250,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -293,7 +279,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItem.xml index 90ca1a80dabc..7a9c88546e21 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItem.xml @@ -16,8 +16,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ - To be added. - To be added. @@ -49,9 +45,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -68,8 +61,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -89,8 +80,6 @@ System.EventHandler<System.EventArgs> - To be added. - To be added. @@ -110,9 +99,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -129,8 +115,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -156,8 +140,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItemView.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItemView.xml index c8019799d763..1e91eba0fd3b 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItemView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItemView.xml @@ -16,8 +16,6 @@
- To be added. - To be added. @@ -31,8 +29,6 @@ - To be added. - To be added. @@ -52,9 +48,6 @@ System.Windows.Input.ICommand - To be added. - To be added. - To be added. @@ -74,9 +67,6 @@ System.Object - To be added. - To be added. - To be added. @@ -93,8 +83,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -111,8 +99,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -132,8 +118,6 @@ System.EventHandler<System.EventArgs> - To be added. - To be added. @@ -159,8 +143,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItems.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItems.xml index 0ca4630bb9d2..da5c17b6c492 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeItems.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeItems.xml @@ -34,8 +34,6 @@
- To be added. - To be added. @@ -49,8 +47,6 @@ - To be added. - To be added. @@ -68,8 +64,6 @@ To be added. - To be added. - To be added. @@ -93,8 +87,6 @@ To be added. - To be added. - To be added. @@ -115,8 +107,6 @@ - To be added. - To be added. @@ -136,8 +126,6 @@ System.Collections.Specialized.NotifyCollectionChangedEventHandler - To be added. - To be added. @@ -161,9 +149,6 @@ To be added. - To be added. - To be added. - To be added. @@ -189,8 +174,6 @@ To be added. To be added. - To be added. - To be added. @@ -210,9 +193,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -233,9 +213,6 @@ - To be added. - To be added. - To be added. @@ -259,9 +236,6 @@ To be added. - To be added. - To be added. - To be added. @@ -287,8 +261,6 @@ To be added. To be added. - To be added. - To be added. @@ -308,9 +280,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -334,9 +303,6 @@ To be added. - To be added. - To be added. - To be added. @@ -353,9 +319,6 @@ Microsoft.Maui.Controls.SwipeMode - To be added. - To be added. - To be added. @@ -372,8 +335,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -391,8 +352,6 @@ - To be added. - To be added. @@ -416,9 +375,6 @@ To be added. - To be added. - To be added. - To be added. @@ -442,8 +398,6 @@ To be added. - To be added. - To be added. @@ -460,9 +414,6 @@ Microsoft.Maui.Controls.SwipeBehaviorOnInvoked - To be added. - To be added. - To be added. @@ -479,8 +430,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -501,9 +450,6 @@ - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeStartedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeStartedEventArgs.xml index fc45e068a828..d70dca9bc4ac 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeStartedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeStartedEventArgs.xml @@ -12,8 +12,6 @@ - To be added. - To be added. @@ -31,8 +29,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipeView.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipeView.xml index 342dec404be7..1046b7234f59 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipeView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipeView.xml @@ -27,8 +27,6 @@ - To be added. - To be added. @@ -42,8 +40,6 @@ - To be added. - To be added. @@ -60,9 +56,6 @@ Microsoft.Maui.Controls.SwipeItems - To be added. - To be added. - To be added. @@ -79,8 +72,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -98,8 +89,6 @@ - To be added. - To be added. @@ -116,8 +105,6 @@ System.EventHandler - To be added. - To be added. @@ -134,9 +121,6 @@ Microsoft.Maui.Controls.SwipeItems - To be added. - To be added. - To be added. @@ -153,8 +137,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -183,9 +165,6 @@ To be added. - To be added. - To be added. - To be added. @@ -203,8 +182,6 @@ - To be added. - To be added. @@ -225,8 +202,6 @@ To be added. - To be added. - To be added. @@ -248,8 +223,6 @@ System.EventHandler<Microsoft.Maui.Controls.OpenSwipeEventArgs> - To be added. - To be added. @@ -266,9 +239,6 @@ Microsoft.Maui.Controls.SwipeItems - To be added. - To be added. - To be added. @@ -285,8 +255,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -303,8 +271,6 @@ System.EventHandler<Microsoft.Maui.Controls.SwipeChangingEventArgs> - To be added. - To be added. @@ -321,8 +287,6 @@ System.EventHandler<Microsoft.Maui.Controls.SwipeEndedEventArgs> - To be added. - To be added. @@ -339,8 +303,6 @@ System.EventHandler<Microsoft.Maui.Controls.SwipeStartedEventArgs> - To be added. - To be added. @@ -357,9 +319,6 @@ System.Double - To be added. - To be added. - To be added. @@ -376,8 +335,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -394,9 +351,6 @@ Microsoft.Maui.Controls.SwipeItems - To be added. - To be added. - To be added. @@ -413,8 +367,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -434,9 +386,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -460,8 +409,6 @@ To be added. - To be added. - To be added. @@ -485,8 +432,6 @@ To be added. - To be added. - To be added. @@ -510,8 +455,6 @@ To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwipedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwipedEventArgs.xml index f34a251fa0f9..1fc38d516a50 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwipedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwipedEventArgs.xml @@ -14,7 +14,6 @@ Arguments for swipe events. - To be added. @@ -36,7 +35,6 @@ The parameter to pass to the command for the swipe. The swipe direction. Creates a new swipe event argument object with the specified values. - To be added. @@ -56,7 +54,6 @@ Gets the direction of the swipe. The direction of the swipe. - To be added. @@ -76,7 +73,6 @@ Ges the command parameter. The command parameter. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Switch.xml b/src/Controls/docs/Microsoft.Maui.Controls/Switch.xml index ec42cef0be3e..4311c98bb3ce 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Switch.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Switch.xml @@ -112,7 +112,6 @@ namespace FormsGallery Creates a new element with default values. - To be added. @@ -130,8 +129,6 @@ namespace FormsGallery - To be added. - To be added. @@ -156,8 +153,6 @@ namespace FormsGallery Gets or sets a Boolean value that indicates whether this element is toggled. - To be added. - To be added. @@ -182,7 +177,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -213,8 +207,6 @@ namespace FormsGallery To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -234,7 +226,6 @@ namespace FormsGallery Gets or sets the color of the switch when it is in the "On" position. The color of the switch when it is in the "On" position. - To be added. @@ -253,7 +244,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -270,8 +260,6 @@ namespace FormsGallery System.String - To be added. - To be added. @@ -288,8 +276,6 @@ namespace FormsGallery System.String - To be added. - To be added. @@ -306,9 +292,6 @@ namespace FormsGallery Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -325,8 +308,6 @@ namespace FormsGallery Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -351,7 +332,6 @@ namespace FormsGallery Event that is raised when this is toggled. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/SwitchCell.xml b/src/Controls/docs/Microsoft.Maui.Controls/SwitchCell.xml index 896340b84f3b..45fe4ca6d2f6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/SwitchCell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/SwitchCell.xml @@ -95,7 +95,6 @@ namespace FormsGallery Initializes a new instance of the SwitchCell class. - To be added. @@ -121,7 +120,6 @@ namespace FormsGallery Gets or sets the state of the switch. This is a bindable property. Default is . - To be added. @@ -146,7 +144,6 @@ namespace FormsGallery Triggered when the switch has changed value. - To be added. @@ -163,9 +160,6 @@ namespace FormsGallery Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -183,7 +177,6 @@ namespace FormsGallery The backing store for the field. - To be added. @@ -208,7 +201,6 @@ namespace FormsGallery Identifies the bindable property. - To be added. @@ -235,7 +227,6 @@ namespace FormsGallery Gets or sets the text displayed next to the switch. This is a bindable property. - To be added. @@ -260,7 +251,6 @@ namespace FormsGallery Identifies the Text bindable property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Tab.xml b/src/Controls/docs/Microsoft.Maui.Controls/Tab.xml index 72efc079baa6..b3d298d661a3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Tab.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Tab.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TabBar.xml b/src/Controls/docs/Microsoft.Maui.Controls/TabBar.xml index b18fda0648e3..68061457ea03 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TabBar.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TabBar.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -32,8 +30,6 @@ - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TabbedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/TabbedPage.xml index 2d0f196063c7..67ae0006090a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TabbedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TabbedPage.xml @@ -166,7 +166,6 @@ class TabbedPageDemoPage2 : TabbedPage Creates a new element with default values. - To be added. @@ -183,9 +182,6 @@ class TabbedPageDemoPage2 : TabbedPage Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -205,7 +201,6 @@ class TabbedPageDemoPage2 : TabbedPage Gets or sets the background color of the bar. The background color of the bar. - To be added. @@ -224,7 +219,6 @@ class TabbedPageDemoPage2 : TabbedPage Backing store for the property. - To be added. @@ -241,8 +235,6 @@ class TabbedPageDemoPage2 : TabbedPage Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -262,7 +254,6 @@ class TabbedPageDemoPage2 : TabbedPage Gets or sets the color of text on the bar. The color of text on the bar. - To be added. @@ -281,7 +272,6 @@ class TabbedPageDemoPage2 : TabbedPage Backing store for the property. - To be added. @@ -342,8 +332,6 @@ class TabbedPageDemoPage2 : TabbedPage To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -360,9 +348,6 @@ class TabbedPageDemoPage2 : TabbedPage Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -380,7 +365,6 @@ class TabbedPageDemoPage2 : TabbedPage The backing store for the field. - To be added. @@ -397,9 +381,6 @@ class TabbedPageDemoPage2 : TabbedPage Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -417,7 +398,6 @@ class TabbedPageDemoPage2 : TabbedPage The backing store for the field. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TableRoot.xml b/src/Controls/docs/Microsoft.Maui.Controls/TableRoot.xml index d41ee4ca510a..7b900dbdd725 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TableRoot.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TableRoot.xml @@ -23,7 +23,6 @@ A that contains either a table section or the entire table. - To be added. @@ -45,7 +44,6 @@ Constructs and initializes a new instance of the class. - To be added. @@ -71,7 +69,6 @@ The title of the table. Constructs and initializes a new instance of the class with a title. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TableSection.xml b/src/Controls/docs/Microsoft.Maui.Controls/TableSection.xml index 38bc18b76e44..908a4bd1e975 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TableSection.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TableSection.xml @@ -23,7 +23,6 @@ A logical and visible section of a . - To be added. @@ -45,7 +44,6 @@ Creates a new with default values. - To be added. @@ -71,7 +69,6 @@ The title of the table section. Creates a new with the title . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TableSectionBase.xml b/src/Controls/docs/Microsoft.Maui.Controls/TableSectionBase.xml index e71bf5a5c3f9..813b38242277 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TableSectionBase.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TableSectionBase.xml @@ -21,7 +21,6 @@ Abstract base class defining a table section. - To be added. @@ -44,7 +43,6 @@ Creates a new object with default values. - To be added. @@ -70,7 +68,6 @@ The title of the table section. Creates a new object with the specified . - To be added. @@ -87,9 +84,6 @@ Microsoft.Maui.Graphics.Color - To be added. - To be added. - To be added. @@ -107,7 +101,6 @@ The backing store for the field. - To be added. @@ -132,8 +125,6 @@ Gets or sets the title. - To be added. - To be added. @@ -158,7 +149,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TableView.xml b/src/Controls/docs/Microsoft.Maui.Controls/TableView.xml index 2436254163f0..f8d0948a4be0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TableView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TableView.xml @@ -102,7 +102,6 @@ public class App : Application Initializes a new instance. - To be added. @@ -128,7 +127,6 @@ public class App : Application The root of the table view. Initializes a new instance. - To be added. @@ -153,7 +151,6 @@ public class App : Application Gets or sets a value that indicates whether the rows that are contained in this can have uneven rows. - To be added. When the property is , application developers can set the properties to control the height of items in the table. When the property is , the property is ignored. When the property is , app developers can set the property to set the height of all Cells, and their individual properties are ignored. Note: developers must specify row heights on the iOS platform, even when is . @@ -182,7 +179,6 @@ public class App : Application Backing store for the HasUnevenRows property. - To be added. @@ -207,8 +203,6 @@ public class App : Application Gets or sets the intent of the table. - To be added. - To be added. @@ -232,8 +226,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -260,7 +252,6 @@ public class App : Application For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -291,8 +282,6 @@ public class App : Application To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -318,7 +307,6 @@ public class App : Application Method that is called when the binding context changes. - To be added. @@ -344,7 +332,6 @@ public class App : Application Method that is called when the model changes. - To be added. @@ -380,8 +367,6 @@ public class App : Application The width constraint of the size request. The height constraint of the size request. Method that is called when a size request is made. - To be added. - To be added. @@ -406,8 +391,6 @@ public class App : Application Gets or sets the root of the table. - To be added. - To be added. @@ -432,8 +415,6 @@ public class App : Application An integer that describes the height of the items in the list. This is ignored if HasUnevenRows is true. - To be added. - To be added. @@ -458,7 +439,6 @@ public class App : Application Backing store for the row height property. - To be added. @@ -480,8 +460,6 @@ public class App : Application Internal. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TabsStyle.xml b/src/Controls/docs/Microsoft.Maui.Controls/TabsStyle.xml index ffc77e1d01a5..cd682f04d7d5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TabsStyle.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TabsStyle.xml @@ -13,7 +13,6 @@ Enumerates tab styles for tabbed pages. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TapGestureRecognizer.xml b/src/Controls/docs/Microsoft.Maui.Controls/TapGestureRecognizer.xml index 1886743e238f..cd5c64c455e4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TapGestureRecognizer.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TapGestureRecognizer.xml @@ -42,7 +42,6 @@ Initializes a new instance of a TapGestureRecognizer object. - To be added. @@ -76,7 +75,6 @@ An action whose first argument is the View the recognizer is associated with and whose second argument is the callback parameter. Initializes a new instance of a TapGestureRecognizer object with a parameterized callback. - To be added. @@ -110,7 +108,6 @@ An action whose first argument is the View the recognizer is associated with. Initializes a new instance of a TapGestureRecognizer object with a callback. - To be added. @@ -135,7 +132,6 @@ The Command to invoke when the gesture has been triggered by the user. This is a bindable property. - To be added. The object passed to the Command will be the contents of @@ -161,8 +157,6 @@ An object to be passed to the TappedCallback. This is a bindable property. - To be added. - To be added. @@ -187,7 +181,6 @@ Identifies the CommandParameter bindable property. - To be added. @@ -212,7 +205,6 @@ Identifies the Command bindable property. - To be added. @@ -238,7 +230,6 @@ The number of taps required to trigger the callback. This is a bindable property. The number of taps to recognize. The default value is 1. - To be added. @@ -263,7 +254,6 @@ Identifies the NumberOfTapsRequired bindable property. - To be added. @@ -291,7 +281,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -316,7 +305,6 @@ Event that is raised when the user taps. - To be added. @@ -417,7 +405,6 @@ Identifies the TappedCallbackParameter bindable property. - To be added. @@ -450,7 +437,6 @@ Identifies the TappedCallback bindable property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TappedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/TappedEventArgs.xml index 745cbf300cc7..8f69c1f67480 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TappedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TappedEventArgs.xml @@ -20,7 +20,6 @@ Arguments for the event. - To be added. @@ -46,7 +45,6 @@ A parameter object for the tapped event. Creates a new object with the supplied parameter. - To be added. @@ -71,8 +69,6 @@ Gets the parameter object for this object. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TemplateBinding.xml b/src/Controls/docs/Microsoft.Maui.Controls/TemplateBinding.xml index ac3b0faf250b..5ad13b76763a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TemplateBinding.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TemplateBinding.xml @@ -49,7 +49,6 @@ Creates an empty template binding. - To be added. @@ -77,7 +76,6 @@ A parameter to pass to the converter. A format string to use for displaying property values. Creates a new TemplateBinding with the specified values. Must be non-empty and non-null. - To be added. @@ -96,8 +94,6 @@ Gets or sets the type converter to use to convert strings into instances of the bound property type. - To be added. - To be added. @@ -116,8 +112,6 @@ Gets or sets a format string to use for displaying property values. - To be added. - To be added. @@ -136,8 +130,6 @@ Gets or sets a string that identifies the property to which to bind. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TemplateExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/TemplateExtensions.xml index 4d162cf709bc..766ef3edde87 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TemplateExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TemplateExtensions.xml @@ -20,7 +20,6 @@ Extension class for DataTemplate, providing a string-based shortcut method for defining a Binding. - To be added. @@ -53,7 +52,6 @@ The target property of the binding. The path to the binding. Binds the object's to a new instance that was created with . - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TemplatedPage.xml b/src/Controls/docs/Microsoft.Maui.Controls/TemplatedPage.xml index 498df16123a1..56bef0e1f100 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TemplatedPage.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TemplatedPage.xml @@ -14,7 +14,6 @@ A page that displays full-screen content with a control template, and the base class for . - To be added. @@ -30,7 +29,6 @@ Creates a new empty templated page. - To be added. @@ -49,8 +47,6 @@ Gets or sets the control template that is used to display content. - To be added. - To be added. @@ -69,7 +65,6 @@ Backing store for the property. - To be added. @@ -90,9 +85,6 @@ To be added. - To be added. - To be added. - To be added. @@ -110,8 +102,6 @@ - To be added. - To be added. @@ -137,8 +127,6 @@ To be added. - To be added. - To be added. @@ -161,8 +149,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TemplatedView.xml b/src/Controls/docs/Microsoft.Maui.Controls/TemplatedView.xml index 8f3d902d2b13..48adb2f8984e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TemplatedView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TemplatedView.xml @@ -14,7 +14,6 @@ A view that displays content with a control template, and the base class for . - To be added. @@ -30,7 +29,6 @@ Creates a new empty templated view. - To be added. @@ -49,8 +47,6 @@ Gets or sets the control template that is used to display content. - To be added. - To be added. @@ -69,7 +65,6 @@ Backing store for the property. - To be added. @@ -90,9 +85,6 @@ To be added. - To be added. - To be added. - To be added. @@ -121,7 +113,6 @@ The width of the bounding rectangle. The height of the bounding rectangle. Positions and sizes the children of the templated view within the rectangle defined by , , , and T. - To be added. @@ -139,8 +130,6 @@ - To be added. - To be added. @@ -166,8 +155,6 @@ To be added. - To be added. - To be added. @@ -190,8 +177,6 @@ To be added. To be added. - To be added. - To be added. @@ -224,8 +209,6 @@ The width constraint that was passed with the request. The height constraint that was passed with the request. Method that is called when the layout updates. - To be added. - To be added. @@ -243,9 +226,6 @@ - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TextAlignmentConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/TextAlignmentConverter.xml index a4524791e17c..913dc5f084f5 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TextAlignmentConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TextAlignmentConverter.xml @@ -37,7 +37,6 @@ Creates a new default converter. - To be added. @@ -61,7 +60,6 @@ The value to convert. Returns the object for the string representation. The object for the string representation. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TextChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/TextChangedEventArgs.xml index 4c7c5d53e910..3002b75d5ab3 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TextChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TextChangedEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for TextChanged events. Provides old and new text values. - To be added. @@ -48,7 +47,6 @@ The old text value. The new text value. Creates a new with and . - To be added. @@ -73,8 +71,6 @@ Gets the new text value. - To be added. - To be added. @@ -99,8 +95,6 @@ Gets the old text value. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TextDecorationConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/TextDecorationConverter.xml index d5445f6c6136..326cc4b896c8 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TextDecorationConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TextDecorationConverter.xml @@ -18,7 +18,6 @@ A subclass that can convert between a string and a object. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -55,7 +52,6 @@ A comma-separated string whose contents correspond to values of . Converts a single value or comma-separated string to a object. - To be added. The elements of must each be a value within or the string "line-through". diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TimePicker.xml b/src/Controls/docs/Microsoft.Maui.Controls/TimePicker.xml index d4507a293041..1d40f5a20c87 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TimePicker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TimePicker.xml @@ -85,9 +85,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; System.Double - To be added. - To be added. - To be added. @@ -104,8 +101,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -124,8 +119,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; TGets a value that indicates whether the font for the searchbar text is bold, italic, or neither. - To be added. - To be added. @@ -144,7 +137,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Backing store for the property. - To be added. @@ -163,8 +155,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Gets or sets the font family for the picker text. - To be added. - To be added. @@ -183,7 +173,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Backing store for the property. - To be added. @@ -208,7 +197,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Gets or sets the size of the font for the text in the picker. A that indicates the size of the font. - To be added. @@ -227,7 +215,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Backing store for the property. - To be added. @@ -310,8 +297,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -330,8 +315,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Gets or sets the text color. - To be added. - To be added. @@ -350,7 +333,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Backing store for the property. - To be added. @@ -367,9 +349,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Microsoft.Maui.Controls.TextTransform - To be added. - To be added. - To be added. @@ -386,8 +365,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -413,7 +390,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; Gets or sets the displayed time. This is a bindable property. The displayed in the TimePicker. - To be added. @@ -462,9 +438,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; To be added. To be added. - To be added. - To be added. - To be added. @@ -487,8 +460,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -516,7 +487,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -544,7 +514,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -572,7 +541,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -600,7 +568,6 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) }; TFor internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ToggledEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ToggledEventArgs.xml index 10e3800f863b..8144556b543f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ToggledEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ToggledEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for and events. - To be added. @@ -46,7 +45,6 @@ Whether the toggle is in the On position. Creates a new that indicates that the toggle control was toggled to . - To be added. @@ -71,8 +69,6 @@ Gets the Boolean value to which the toggle control was toggled. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItem.xml b/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItem.xml index b4d20c6a4a7b..2c30a3335a75 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItem.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItem.xml @@ -45,7 +45,6 @@ Constructs and initializes a new instance of the class. - To be added. @@ -79,7 +78,6 @@ The order for the toolbar item. The toolbar item priority. Constructs and initializes a new instance of the class. - To be added. @@ -112,7 +110,6 @@ Obsolete. Developers should use the inherited Clicked event, instead. - To be added. @@ -146,7 +143,6 @@ Obsolete. Developers should use the inherited Text property, instead. The name of the toolbar item. - To be added. @@ -171,8 +167,6 @@ Gets or sets a value that indicates on which of the primary, secondary, or default toolbar surfaces to display this element. - To be added. - To be added. @@ -197,8 +191,6 @@ Gets or sets the priority of this element. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItemOrder.xml b/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItemOrder.xml index 7cbb4d461c42..e3f02fa3cf41 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItemOrder.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ToolbarItemOrder.xml @@ -19,7 +19,6 @@ Enumeration specifying whether the appears on the primary toolbar surface or secondary. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/Trigger.xml b/src/Controls/docs/Microsoft.Maui.Controls/Trigger.xml index d7f9e96c51be..436cba84f24e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/Trigger.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/Trigger.xml @@ -131,7 +131,6 @@ The view type to which the trigger will be added. Initializes a new instance. - To be added. @@ -153,8 +152,6 @@ Gets or sets the property whose value will be compared to to determine when to invoke the setters. - To be added. - To be added. @@ -176,8 +173,6 @@ Gets the list of objects that will be applied when the property that is named by becomes equal to . - To be added. - To be added. @@ -199,8 +194,6 @@ Gets or sets the value of the property, named by the property, that will cause the setters to be applied. - To be added. - To be added. @@ -229,8 +222,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TriggerAction.xml b/src/Controls/docs/Microsoft.Maui.Controls/TriggerAction.xml index 285eb723c48c..5313cc3a057e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TriggerAction.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TriggerAction.xml @@ -39,8 +39,6 @@ Gets the type of the objects with which this can be associated. - To be added. - To be added. @@ -66,7 +64,6 @@ The object on which to invoke the action. Application developers override this method to provide the behavior that is triggered. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TriggerBase.xml b/src/Controls/docs/Microsoft.Maui.Controls/TriggerBase.xml index 5825efa6acbb..2f5a909b4f69 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TriggerBase.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TriggerBase.xml @@ -43,7 +43,6 @@ Gets the list of objects that will be invoked when the trigger condition is met. Ignored for the class. - To be added. @@ -67,7 +66,6 @@ Gets the list of objects that will be invoked after the trigger condition is no longer met. Ignored for the class. - To be added. @@ -89,7 +87,6 @@ Gets a value that indicates whether or not the trigger is sealed. - To be added. A trigger becomes sealed when its `IAttachedObject.AttachTo(Microsoft.Maui.Controls.BindableObject)` method is called. Once it is sealed, its and lists become readonly. @@ -112,8 +109,6 @@ The type of object to which this object can be attached. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TypeConverterAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/TypeConverterAttribute.xml index 6f3962b8eb8c..0e2709e75863 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TypeConverterAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TypeConverterAttribute.xml @@ -25,7 +25,6 @@ Attribute that specifies the type of used by its target. - To be added. @@ -47,7 +46,6 @@ Creates a new with default values. - To be added. @@ -73,7 +71,6 @@ The name of the type that this attribute can decorate. Creates a new object that specifies that the class it decorates converts values to the type. - To be added. @@ -99,7 +96,6 @@ The type that this attribute can decorate. reates a new object that specifies that the class it decorates converts values to . - To be added. @@ -124,8 +120,6 @@ The name of the type to which the class decorated with this attribute can convert values. - To be added. - To be added. @@ -150,7 +144,6 @@ A that contains no information about the types to which the class that it decorates can convert values. - To be added. @@ -179,8 +172,6 @@ The object against which to do the comparison. Returns true if is a and has the same value. - To be added. - To be added. @@ -206,8 +197,6 @@ Returns a value that is used for efficient storage and lookup of this object. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/TypeTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/TypeTypeConverter.xml index c041d396cbcf..bc72d626d271 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/TypeTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/TypeTypeConverter.xml @@ -24,7 +24,6 @@ Class that takes a string representation of a and returns a corresponding . - To be added. @@ -41,7 +40,6 @@ Creates a new with default values. - To be added. @@ -64,8 +62,6 @@ For internal use by the Microsoft.Maui.Controls platform. Returns a type for a valid type name. - To be added. - To be added. @@ -104,8 +100,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use only. - To be added. - To be added. @@ -133,8 +127,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. For internal use only. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/UnsolvableConstraintsException.xml b/src/Controls/docs/Microsoft.Maui.Controls/UnsolvableConstraintsException.xml index 4a084a2c5dda..b14e0db2af3d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/UnsolvableConstraintsException.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/UnsolvableConstraintsException.xml @@ -25,7 +25,6 @@ Exception indicating that the s specified cannot be simultaneously satisfied. - To be added. @@ -39,8 +38,6 @@ - To be added. - To be added. @@ -66,7 +63,6 @@ A description for this exception. Creates a new object with the explanatory message. - To be added. @@ -86,8 +82,6 @@ To be added. To be added. - To be added. - To be added. @@ -107,8 +101,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/UriImageSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/UriImageSource.xml index ba85aa0cd182..99161df3bf2e 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/UriImageSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/UriImageSource.xml @@ -20,7 +20,6 @@ An ImageSource that loads an image from a URI, caching the result. - To be added. @@ -42,7 +41,6 @@ Creates a new object with default values. - To be added. @@ -67,8 +65,6 @@ Gets or sets a structure that indicates the length of time after which the image cache becomes invalid. - To be added. - To be added. @@ -93,8 +89,6 @@ Gets or sets a Boolean value that indicates whether caching is enabled on this object. - To be added. - To be added. @@ -122,8 +116,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -140,9 +132,6 @@ System.Boolean - To be added. - To be added. - To be added. @@ -163,7 +152,6 @@ Returns the path to the file for the image, prefixed with the string, "Uri: ". The path to the file for the image, prefixed with the string, "Uri: ". - To be added. @@ -193,8 +181,6 @@ Gets or sets the URI for the image to get. - To be added. - To be added. @@ -219,7 +205,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/UriTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/UriTypeConverter.xml index 6d7de46fc8f9..c81cbc9ab3ca 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/UriTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/UriTypeConverter.xml @@ -25,7 +25,6 @@ A that converts from a string or to a . - To be added. @@ -47,7 +46,6 @@ Creates a new with default values. - To be added. @@ -70,8 +68,6 @@ The value to convert. Returns a object for a string representation of a URI. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/UrlWebViewSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/UrlWebViewSource.xml index f62a6449e016..be511cd52892 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/UrlWebViewSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/UrlWebViewSource.xml @@ -20,7 +20,6 @@ A WebViewSource bound to a URL. - To be added. @@ -42,7 +41,6 @@ Creates a new object with default values. - To be added. @@ -70,7 +68,6 @@ To be added. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -95,8 +92,6 @@ Gets or sets the URL for this object. - To be added. - To be added. @@ -121,7 +116,6 @@ Backing store for the property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ValueChangedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/ValueChangedEventArgs.xml index 0b533ed27916..a1dd0c21cbd0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ValueChangedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ValueChangedEventArgs.xml @@ -20,7 +20,6 @@ Event arguments for ValueChanged events. Provides both old and new values. - To be added. @@ -48,7 +47,6 @@ The old value. The new value. Creates a new event with and . - To be added. @@ -73,8 +71,6 @@ Gets the new value. - To be added. - To be added. @@ -99,8 +95,6 @@ Gets the old value. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ViewCell.xml b/src/Controls/docs/Microsoft.Maui.Controls/ViewCell.xml index 20178c9e0bfc..1aa2d4fe87b0 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ViewCell.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ViewCell.xml @@ -48,7 +48,6 @@ Initializes a new instance of the ViewCell class. - To be added. @@ -75,7 +74,6 @@ Gets or sets the View representing the content of the ViewCell. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ViewExtensions.xml b/src/Controls/docs/Microsoft.Maui.Controls/ViewExtensions.xml index e0bc13548bbf..17e604dc709f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ViewExtensions.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ViewExtensions.xml @@ -20,7 +20,6 @@ Extension methods for s, providing animatable scaling, rotation, and layout functions. - To be added. @@ -49,7 +48,6 @@ The view on which this method operates. Aborts the TranslateTo, LayoutTo, RotateTo, ScaleTo, and FadeTo animations on element. - To be added. @@ -84,8 +82,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that performs the fade that is described by the , , and parameters. - To be added. - To be added. @@ -120,8 +116,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that eases the bounds of the that is specified by the to the rectangle that is specified by the parameter. - To be added. - To be added. @@ -156,8 +150,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Rotates the that is specified by from its current rotation by . - To be added. - To be added. @@ -192,8 +184,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that scales the that is specified by from its current scale to . - To be added. - To be added. @@ -228,8 +218,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that performs the rotation that is described by the , , and parameters. - To be added. - To be added. @@ -264,8 +252,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that skews the X axis by , taking time and using . - To be added. - To be added. @@ -300,8 +286,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that skews the Y axis by , taking time and using . - To be added. - To be added. @@ -336,8 +320,6 @@ The time, in milliseconds, over which to animate the transition. The default is 250. The easing function to use for the animation. Returns a task that scales the that is specified by to the absolute scale factor . - To be added. - To be added. @@ -364,9 +346,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -393,9 +372,6 @@ To be added. To be added. To be added. - To be added. - To be added. - To be added. @@ -431,7 +407,6 @@ The duration of the animation in milliseconds. The easing of the animation. Animates an elements TranslationX and TranslationY properties from their current values to the new values. This ensures that the input layout is in the same position as the visual layout. - To be added. To animate a view that receives user touch input from outside of the screen, the developer must first lay out the view in its final position, then translate the view off screen, and then finally animate the view back to its final position on the screen. TranslateTo is useful for animations because it is applied post-layout. Translation animations will not conflict with managed layouts and thus are ideal for doing slide in/out style animations. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/ViewState.xml b/src/Controls/docs/Microsoft.Maui.Controls/ViewState.xml index ac6c23d405d1..f1f175d8dd48 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/ViewState.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/ViewState.xml @@ -24,7 +24,6 @@ Deprecated. Do not use. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualAttribute.xml index c81a682f535e..a6e9ebbb2a04 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualAttribute.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualElement.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualElement.xml index db3eac495556..352f18edbce6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualElement.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualElement.xml @@ -49,8 +49,6 @@ - To be added. - To be added. @@ -76,7 +74,6 @@ Gets or sets the X component of the center point for any transform, relative to the bounds of the element. This is a bindable property. The value that declares the X component of the transform. The default value is 0.5. - To be added. @@ -102,7 +99,6 @@ Identifies the AnchorX bindable property. - To be added. @@ -128,7 +124,6 @@ Gets or sets the Y component of the center point for any transform, relative to the bounds of the element. This is a bindable property. The value that declares the Y component of the transform. The default value is 0.5. - To be added. @@ -154,7 +149,6 @@ Identifies the AnchorY bindable property. - To be added. @@ -176,9 +170,6 @@ Microsoft.Maui.Controls.Brush - To be added. - To be added. - To be added. @@ -204,7 +195,6 @@ Gets or sets the color which will fill the background of a VisualElement. This is a bindable property. The color that is used to fill the background of a VisualElement. - To be added. @@ -229,7 +219,6 @@ Identifies the BackgroundColor bindable property. - To be added. @@ -246,8 +235,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -332,7 +319,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -359,8 +345,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -384,7 +368,6 @@ Gets the list of Behaviors associated to this element. This is a bindable property. - To be added. @@ -406,7 +389,6 @@ Identifies the Behaviors bindable property. - To be added. @@ -454,7 +436,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -479,7 +460,6 @@ Occurs when the Children of a VisualElement have been re-ordered. - To be added. @@ -501,9 +481,6 @@ Microsoft.Maui.Controls.Shapes.Geometry - To be added. - To be added. - To be added. @@ -520,8 +497,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -548,8 +523,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -569,7 +542,6 @@ Gets or sets the layout flow direction. The layout flow direction. - To be added. @@ -588,7 +560,6 @@ Backing store for the property. - To be added. @@ -643,7 +614,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -720,7 +690,6 @@ Identifies the Height bindable property. - To be added. @@ -769,7 +738,6 @@ Backing store for the HeightRequest property. - To be added. @@ -822,7 +790,6 @@ Identifies the InputTransparent bindable property. - To be added. @@ -848,7 +815,6 @@ Method that is called to invalidate the layout of this . Raises the event. - To be added. @@ -876,7 +842,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -947,7 +912,6 @@ Identifies the IsEnabled bindable property. - To be added. @@ -1014,7 +978,6 @@ Identifies the IsFocused bindable property. - To be added. @@ -1038,7 +1001,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1065,8 +1027,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1093,8 +1053,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1121,8 +1079,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -1163,7 +1119,6 @@ The backing store for the field. - To be added. @@ -1254,7 +1209,6 @@ Identifies the IsVisible bindable property. - To be added. @@ -1338,7 +1292,6 @@ Event that is raised when the layout of a visual element is invalidated. - To be added. @@ -1410,7 +1363,6 @@ Backing store for the MinimumHeightRequest property. - To be added. @@ -1483,7 +1435,6 @@ Backing store for the MinimumWidthRequest property. - To be added. @@ -1511,7 +1462,6 @@ For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -1528,8 +1478,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -1547,8 +1495,6 @@ - To be added. - To be added. @@ -1624,8 +1570,6 @@ To be added. To be added. - To be added. - To be added. @@ -1676,8 +1620,6 @@ The width constraint to request. The height constraint to request. Method that is called when a layout measurement happens. - To be added. - To be added. @@ -1771,8 +1713,6 @@ To be added. To be added. - To be added. - To be added. @@ -1795,8 +1735,6 @@ To be added. To be added. - To be added. - To be added. @@ -1870,7 +1808,6 @@ Identifies the Opacity bindable property. - To be added. @@ -1974,7 +1911,6 @@ Identifies the Rotation bindable property. - To be added. @@ -2025,7 +1961,6 @@ Identifies the RotationX bindable property. - To be added. @@ -2076,7 +2011,6 @@ Identifies the RotationY bindable property. - To be added. @@ -2127,7 +2061,6 @@ Identifies the Scale bindable property. - To be added. @@ -2147,7 +2080,6 @@ Gets or sets a scale value to apply to the X direction. The scale value to apply to the X direction. - To be added. @@ -2166,7 +2098,6 @@ Backing store for the property. - To be added. @@ -2186,7 +2117,6 @@ Gets or sets a scale value to apply to the Y direction. The scale value to apply to the Y direction. - To be added. @@ -2205,7 +2135,6 @@ Backing store for the property. - To be added. @@ -2278,8 +2207,6 @@ Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -2299,9 +2226,6 @@ System.Int32 - To be added. - To be added. - To be added. @@ -2319,9 +2243,6 @@ - To be added. - To be added. - To be added. @@ -2339,7 +2260,6 @@ The backing store for the field. - To be added. @@ -2357,9 +2277,6 @@ - To be added. - To be added. - To be added. @@ -2406,7 +2323,6 @@ Identifies the TranslationX bindable property. - To be added. @@ -2453,7 +2369,6 @@ Identifies the TranslationY bindable property. - To be added. @@ -2477,7 +2392,6 @@ Gets the list of Trigger associated to this element. This is a bindable property. - To be added. @@ -2499,7 +2413,6 @@ Identifies the Triggers bindable property. - To be added. @@ -2567,9 +2480,6 @@ Microsoft.Maui.Controls.IVisual - To be added. - To be added. - To be added. @@ -2587,7 +2497,6 @@ The backing store for the field. - To be added. @@ -2638,7 +2547,6 @@ Identifies the Width bindable property. - To be added. @@ -2687,7 +2595,6 @@ Backing store for the WidthRequest property. - To be added. @@ -2736,7 +2643,6 @@ Gets the effective visual flow direction for the element on the platform, taking into account the locale and logical flow settings. The effective flow direction for the visual element. - To be added. @@ -2762,7 +2668,6 @@ For internal use by the Microsoft.Maui.Controls platform. This method is for internal use. - To be added. @@ -2787,7 +2692,6 @@ Identifies the X bindable property. - To be added. @@ -2838,7 +2742,6 @@ Identifies the Y bindable property. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualMarker.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualMarker.xml index 74ef8c0808b9..84e0904b4d2f 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualMarker.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualMarker.xml @@ -13,7 +13,6 @@ Contains the types implemented by the Xamarin Forms team and the default types used by the Visual system. - To be added. @@ -31,8 +30,6 @@ Indicates for a render using the default renderer. - To be added. - To be added. @@ -55,8 +52,6 @@ Indicates for a to use the same as its direct parent. - To be added. - To be added. @@ -74,7 +69,6 @@ Indicates for a to render using a material renderer. - To be added. In order to use the Material visuals you must install Microsoft.Maui.Controls.Visual.Material. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualState.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualState.xml index 2f1828505700..6f6433e955b4 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualState.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualState.xml @@ -32,7 +32,6 @@ Creates a new object with default values. - To be added. @@ -52,7 +51,6 @@ Gets or sets the developer-specified name of this visual state. The developer-specified name of this visual state. - To be added. @@ -72,7 +70,6 @@ Gets the list of property setters that establish the visual representation of the element when it is in the state that is named by visual state object. The list of property setters that establish the visual representation of the element when it is in the state that is named by visual state object. - To be added. @@ -89,9 +86,6 @@ System.Collections.Generic.IList<Microsoft.Maui.Controls.StateTriggerBase> - To be added. - To be added. - To be added. @@ -111,7 +105,6 @@ Gets or sets the type of element that visual state object can target. The type of element that visual state object can target. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroup.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroup.xml index 39f9c7f36803..40f5a371fa40 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroup.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroup.xml @@ -19,7 +19,6 @@ Contains a list of related visual states that can be applied to a visual element. - To be added. @@ -35,7 +34,6 @@ Creates a new object with default values. - To be added. @@ -55,7 +53,6 @@ Gets the current visual state. The current visual state. - To be added. @@ -75,7 +72,6 @@ Gets or sets the name of the visual state. The name of the visual state. - To be added. @@ -95,7 +91,6 @@ Gets the list of states that comprise the group. The list of states that comprise the group. - To be added. @@ -115,7 +110,6 @@ Gets or sets the type of element that visual state group can target. The type of element that visual state group can target. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroupList.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroupList.xml index b3d9de29e797..77d3a6beeba6 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroupList.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateGroupList.xml @@ -33,7 +33,6 @@ Contains a list of visual state groups for an application. - To be added. @@ -49,7 +48,6 @@ Creates a new object with default values. - To be added. @@ -67,8 +65,6 @@ To be added. - To be added. - To be added. @@ -94,7 +90,6 @@ The visual state group to add to the list. Adds the specified visual state group to the list. - To be added. @@ -117,7 +112,6 @@ Removes all visual state groups from the list. - To be added. @@ -145,7 +139,6 @@ Checks whether is in the list of visual state groups. if is in the list of groups. Otherwise, . - To be added. @@ -173,7 +166,6 @@ To be added. To be added. Copies the list group to the specified , starting at . - To be added. @@ -196,7 +188,6 @@ Gets the number of visual state groups in the list. The number of visual state groups in the list. - To be added. @@ -220,7 +211,6 @@ Returns an enumerator for iterating over the groups in the list. An enumerator for iterating over the groups in the list. - To be added. @@ -247,7 +237,6 @@ The group whose index to get. Returns the index of if found. Otherwise, returns -1. The index of if found. Otherwise, -1. - To be added. @@ -302,7 +291,6 @@ Gets a Boolean value that tells whether this list is read-only. if the list is read-only. Otherwise, . - To be added. @@ -329,7 +317,6 @@ The index of the item to get or set. Gets or sets the item at the specified . The item at the specified . - To be added. @@ -356,7 +343,6 @@ The item to remove. Removes the group from the list of groups. The removed group. - To be added. @@ -382,7 +368,6 @@ The index of the item to remove. Removes the item at the specified . - To be added. @@ -406,7 +391,6 @@ Gets an enumerator that iterates over the groups in this list. An enumerator that iterates over the groups in this list. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateManager.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateManager.xml index b6ee60e10580..fb1425ea30e7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualStateManager.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualStateManager.xml @@ -14,7 +14,6 @@ Manages visual state groups and transitions controls between states. - To be added. @@ -38,7 +37,6 @@ The visual element whose visual state groups to get. Returns the visual state groups that can be applied to the specified visual element. The visual state groups that can be applied to the specified visual element. - To be added. @@ -65,7 +63,6 @@ Transitions the specified to the state with the specified . if the transition was successful. Otherwise, - To be added. @@ -90,7 +87,6 @@ Returns if has one or more visual state groups associated with it. Otherwise, returns . if has one or more visual state groups associated with it. Otherwise, . - To be added. @@ -115,7 +111,6 @@ To be added. The list of visual state groups to associate with . Associates a list of visual state groups with a visual element. - To be added. @@ -134,7 +129,6 @@ Backing store for the attached property that contains the visual state groups in the manager. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/VisualTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/VisualTypeConverter.xml index 1381a82377a2..4eaeb8bb6a09 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/VisualTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/VisualTypeConverter.xml @@ -18,7 +18,6 @@ A that can convert a string into a object. - To be added. @@ -32,8 +31,6 @@ - To be added. - To be added. @@ -54,9 +51,6 @@ To be added. - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml index 343d3ce1e9a6..ac7d1e7fb2f1 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatedEventArgs.xml @@ -17,7 +17,6 @@ Class that contains arguments for the event that is raised after web navigation completes. - To be added. @@ -46,7 +45,6 @@ The URL of the navigation event. The result of the navigation that originated the event. Initializes a new instance. - To be added. @@ -68,8 +66,6 @@ Gets a value that describes the result of the navigation. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatingEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatingEventArgs.xml index e7c421622ea6..123e79f03f63 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatingEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigatingEventArgs.xml @@ -17,7 +17,6 @@ Class that contains arguments for the event that is raised after web navigation begins. - To be added. @@ -44,7 +43,6 @@ The web view source that originated the event. The URL of the navigation event. Initializes a new instance. - To be added. @@ -66,8 +64,6 @@ Gets or sets a value that indicates whether or not to cancel the navigation. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEvent.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEvent.xml index cdb4205a5572..bf9b140bf7f7 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEvent.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEvent.xml @@ -16,7 +16,6 @@ Contains values that indicate why a navigation event was raised. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEventArgs.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEventArgs.xml index 170bdb2a24c1..ef6ed621a420 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEventArgs.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationEventArgs.xml @@ -17,7 +17,6 @@ TClass that contains arguments for the event that is when web navigation begins. - To be added. @@ -44,7 +43,6 @@ The web view source that originated the event. The URL of the navigation event. Initializes a new instance. - To be added. @@ -66,8 +64,6 @@ Gets the navigation event that was raised. - To be added. - To be added. @@ -89,8 +85,6 @@ Gets the element that performed the navigation. - To be added. - To be added. @@ -112,8 +106,6 @@ The destination of the navigation. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationResult.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationResult.xml index 302a46e3be25..167550324b5a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationResult.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebNavigationResult.xml @@ -16,7 +16,6 @@ Enumerates values that indicate the outcome of a web navigation. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebView.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebView.xml index 0b41194dad8e..e292f31d6202 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebView.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebView.xml @@ -110,7 +110,6 @@ namespace FormsGallery Creates a new element with default values. - To be added. @@ -132,8 +131,6 @@ namespace FormsGallery Gets a value that indicates whether the user can navigate to previous pages. - To be added. - To be added. @@ -155,7 +152,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -177,8 +173,6 @@ namespace FormsGallery Gets a value that indicates whether the user can navigate forward. - To be added. - To be added. @@ -200,7 +194,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -218,8 +211,6 @@ namespace FormsGallery When set this will act as a sync for cookies. - To be added. - To be added. @@ -236,8 +227,6 @@ namespace FormsGallery Microsoft.Maui.Controls.BindableProperty - To be added. - To be added. @@ -263,7 +252,6 @@ namespace FormsGallery A script to evaluate. Evaluates the script that is specified by . - To be added. @@ -290,7 +278,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -341,7 +328,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -364,7 +350,6 @@ namespace FormsGallery Navigates to the previous page. - To be added. @@ -391,7 +376,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -414,7 +398,6 @@ namespace FormsGallery Navigates to the next page in the list of visited pages. - To be added. @@ -441,7 +424,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -463,7 +445,6 @@ namespace FormsGallery Event that is raised after navigation completes. - To be added. @@ -485,7 +466,6 @@ namespace FormsGallery Event that is raised when navigation starts. - To be added. @@ -516,8 +496,6 @@ namespace FormsGallery To be added. Returns the platform-specific instance of this , on which a platform-specific method may be called. - To be added. - To be added. @@ -537,7 +515,6 @@ namespace FormsGallery Method that is called when the binding context is changed. - To be added. @@ -566,7 +543,6 @@ namespace FormsGallery The name of the property that was changed. Method that is called when is changed. - To be added. @@ -597,7 +573,6 @@ namespace FormsGallery The object that raised the event. The event arguments. Method that is called when the view source that is specified by the parameter is changed. - To be added. @@ -615,8 +590,6 @@ namespace FormsGallery - To be added. - To be added. @@ -641,8 +614,6 @@ namespace FormsGallery System.EventHandler - To be added. - To be added. @@ -673,7 +644,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -704,7 +674,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -734,8 +703,6 @@ namespace FormsGallery Gets or sets the object that represents the location that this object displays. - To be added. - To be added. @@ -760,7 +727,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -778,7 +744,6 @@ namespace FormsGallery Gets or sets the user agent string that this object uses. - To be added. The default value is the default User Agent of the underlying platform browser, or if it cannot be determined. If the parameter is the User Agent will not be updated and the current User Agent will remain. @@ -800,7 +765,6 @@ namespace FormsGallery Backing store for the property. - To be added. @@ -827,8 +791,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -855,8 +817,6 @@ namespace FormsGallery For internal use by the Microsoft.Maui.Controls platform. - To be added. - To be added. @@ -876,8 +836,6 @@ namespace FormsGallery System.EventHandler<Microsoft.Maui.Controls.Internals.EvalRequested> - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebViewSource.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebViewSource.xml index 04aff258d8db..4cad026945ca 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebViewSource.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebViewSource.xml @@ -20,7 +20,6 @@ Abstract class whose subclasses provide the data for a . - To be added. @@ -42,7 +41,6 @@ Creates a new object with default values. - To be added. @@ -70,7 +68,6 @@ For internal use by the Microsoft.Maui.Controls platform. For internal use by the Microsoft.Maui.Controls platform. - To be added. @@ -96,7 +93,6 @@ Method that is called when the source is changed. - To be added. @@ -125,8 +121,6 @@ The URL to convert. Casts a string that contains a URL to a instance. - To be added. - To be added. @@ -155,8 +149,6 @@ The URL to convert. Casts a object to a instance. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/WebViewSourceTypeConverter.xml b/src/Controls/docs/Microsoft.Maui.Controls/WebViewSourceTypeConverter.xml index dfc6c9faccee..3a981aef044d 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/WebViewSourceTypeConverter.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/WebViewSourceTypeConverter.xml @@ -25,7 +25,6 @@ A that converts a string to a . - To be added. @@ -47,7 +46,6 @@ Creates a new with default values. - To be added. @@ -70,8 +68,6 @@ The value to convert. Returns a web view source for the URL that is contained in . - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/XmlnsDefinitionAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/XmlnsDefinitionAttribute.xml index 893494c34d80..fa5fd8ab4c07 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/XmlnsDefinitionAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/XmlnsDefinitionAttribute.xml @@ -21,7 +21,6 @@ Attribute specifying the mapping between an XML namespace and a CLR namespace. - To be added. @@ -41,8 +40,6 @@ To be added. To be added. - To be added. - To be added. @@ -59,9 +56,6 @@ System.String - To be added. - To be added. - To be added. @@ -78,9 +72,6 @@ System.String - To be added. - To be added. - To be added. @@ -97,9 +88,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/docs/Microsoft.Maui.Controls/XmlnsPrefixAttribute.xml b/src/Controls/docs/Microsoft.Maui.Controls/XmlnsPrefixAttribute.xml index 53821202c138..ec233df5871a 100644 --- a/src/Controls/docs/Microsoft.Maui.Controls/XmlnsPrefixAttribute.xml +++ b/src/Controls/docs/Microsoft.Maui.Controls/XmlnsPrefixAttribute.xml @@ -17,8 +17,6 @@ - To be added. - To be added. @@ -38,8 +36,6 @@ To be added. To be added. - To be added. - To be added. @@ -56,9 +52,6 @@ System.String - To be added. - To be added. - To be added. @@ -75,9 +68,6 @@ System.String - To be added. - To be added. - To be added. diff --git a/src/Controls/samples/Controls.Sample.UITests/Issues/Issue19127.xaml b/src/Controls/samples/Controls.Sample.UITests/Issues/Issue19127.xaml new file mode 100644 index 000000000000..6d39f217b515 --- /dev/null +++ b/src/Controls/samples/Controls.Sample.UITests/Issues/Issue19127.xaml @@ -0,0 +1,32 @@ + + + +