├── .azuredevops └── dependabot.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ ├── 02_api_proposal.yml │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── policies │ └── resourceManagement.yml └── workflows │ ├── backportPRs.yml │ ├── locker.yml │ └── main.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Documentation ├── C++-notes.md ├── LocalMarkupCompilation.md ├── acceptance_criteria.md ├── api-compat.md ├── c++-private-tools.md ├── codegen.md ├── contributing.md ├── cycle-breakers.md ├── developer-guide.md ├── docs │ └── using-fluent.md ├── gen-api.md ├── getting-started.md ├── images │ ├── configurations.png │ └── templates-check-installed.png ├── issue-guide.md ├── localization_untranslated_strings.md ├── packaging.md ├── project │ └── api-review-process.md ├── projects-and-assemblies.md ├── redistributables.md ├── report-on-adding-new-property.md ├── solution-and-project-configurations.md ├── testing-in-helix.md └── wpf.vsconfig ├── LICENSE.TXT ├── Microsoft.Dotnet.Wpf.sln ├── NuGet.config ├── README.md ├── Restore.cmd ├── SECURITY.md ├── THIRD-PARTY-NOTICES.TXT ├── azure-pipelines-pr.yml ├── azure-pipelines.yml ├── azure-pipelines1.yml ├── codecov.yml ├── dotnet-test-install.ps1 ├── eng ├── AfterSolutionBuild.targets ├── Build.props ├── CodeCoverage.config ├── CodeCoverage.proj ├── Publishing.props ├── Signing.props ├── Testing.targets ├── Tools.props ├── Version.Details.props ├── Version.Details.xml ├── Versions.props ├── WpfArcadeSdk │ ├── Sdk │ │ ├── Sdk.props │ │ └── Sdk.targets │ └── tools │ │ ├── AddDrtsToPayload.targets │ │ ├── ApiCompat.props │ │ ├── ApiCompat.targets │ │ ├── AvTrace │ │ ├── GenTraceSources.pl │ │ └── GenTraceStrings.pl │ │ ├── CodeAnalysis.props │ │ ├── CodeAnalysis.targets │ │ ├── CodeGen.props │ │ ├── CodeGen │ │ ├── AvTrace │ │ │ ├── AvTraceMessages.tt │ │ │ ├── GenAvMessages.targets │ │ │ ├── GenTraceSources.targets │ │ │ └── PresentationTraceSources.tt │ │ └── DesignTimeTextTemplating.targets │ │ ├── CopyRedistFile.targets │ │ ├── CreateTestPayload.targets │ │ ├── DrtsToRun.props │ │ ├── ExtendedAssemblyInfo.props │ │ ├── ExtendedAssemblyInfo.targets │ │ ├── FixupProjectReferences.targets │ │ ├── FolderPaths.props │ │ ├── FolderPaths.targets │ │ ├── GenApi.props │ │ ├── GenApi.targets │ │ ├── GenApi │ │ ├── GlobalApiExclusions.txt │ │ └── GlobalAttrExclusions.txt │ │ ├── GenXmlStringTable.pl │ │ ├── GenerateAvTraceMessages.targets │ │ ├── GenerateModuleDefinitionFile.targets │ │ ├── GenerateProgramFileForTests.props │ │ ├── GenerateProgramFileForTests.targets │ │ ├── InlineTasks.targets │ │ ├── NoInternalTypeHelper.targets │ │ ├── NoTargets.props │ │ ├── NoTargets.targets │ │ ├── Packaging.props │ │ ├── Packaging.targets │ │ ├── Pbt.props │ │ ├── Pbt.targets │ │ ├── ProjectReferences.props │ │ ├── ProjectReferences.targets │ │ ├── Publishing.props │ │ ├── Publishing.targets │ │ ├── Redist.props │ │ ├── Redist.targets │ │ ├── ReferenceAssembly.props │ │ ├── ReferenceAssembly.targets │ │ ├── ResourceLinking.targets │ │ ├── RunDrtsLocal.targets │ │ ├── RuntimeFrameworkReference.props │ │ ├── RuntimeFrameworkReference.targets │ │ ├── SdkReferences.targets │ │ ├── ShippingProjects.props │ │ ├── ShippingProjects.targets │ │ ├── Signing.props │ │ ├── Signing.targets │ │ ├── SourceLink.targets │ │ ├── SystemResources.props │ │ ├── TargetFrameworks.props │ │ ├── TestProjects.targets │ │ ├── VersionSuffix.props │ │ ├── WPF_Generated_Files.txt │ │ ├── Wpf.Cpp.PrivateTools.props │ │ ├── Wpf.Cpp.PrivateTools.targets │ │ ├── Wpf.Cpp.props │ │ ├── Wpf.Cpp.targets │ │ ├── WpfProjectReference.targets │ │ ├── WppConfig │ │ └── rev1 │ │ │ ├── CodeTags.txt │ │ │ ├── TCHARUNIwpp.ini │ │ │ ├── control.tpl │ │ │ ├── defaultwpp.ini │ │ │ ├── header.tpl │ │ │ ├── km-StorControl.tpl │ │ │ ├── km-StorDefault.tpl │ │ │ ├── km-StorHeader.tpl │ │ │ ├── km-StorInit.tpl │ │ │ ├── km-WdfDefault.tpl │ │ │ ├── km-default.tpl │ │ │ ├── km-header.tpl │ │ │ ├── km-init.tpl │ │ │ ├── km-w2k.tpl │ │ │ ├── mof.tpl │ │ │ ├── r1defwpp.ini │ │ │ ├── simple.tpl │ │ │ ├── stdout.tpl │ │ │ ├── tracemacro.tpl │ │ │ ├── trmacro.tpl │ │ │ ├── um-default.tpl │ │ │ ├── um-header.tpl │ │ │ ├── um-init.tpl │ │ │ └── um-w2k.tpl │ │ ├── configure-machine.ps1 │ │ ├── pre-commit.githook │ │ ├── runtests.cmd │ │ └── runtests.ps1 ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── cleanup-microbuild.yml │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── install-microbuild-impl.yml │ │ │ ├── install-microbuild.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── install-debs.py │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── toolchain.cmake │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ ├── install-dependencies.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ ├── source-index-stage1-publish.yml │ │ │ └── vmr-sync.yml │ │ ├── variables │ │ │ └── pool-providers.yml │ │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh ├── configure-toolset.ps1 ├── copy-wpf.ps1 ├── pipeline-pr.yml ├── pipeline.yml ├── pre-build.ps1 ├── restore-toolset.ps1 ├── scripts │ ├── CIBuild.cmd │ └── CIUnitTest.cmd ├── sdl-tsa-vars.config ├── tsaoptions.json ├── wpf-debug.targets └── wpfautomatedtests.yml ├── es-metadata.yml ├── github-merge-flow.jsonc.txt ├── global.json ├── packaging ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.DotNet.Arcade.Wpf.Sdk │ └── Microsoft.DotNet.Arcade.Wpf.Sdk.ArchNeutral.csproj ├── Microsoft.DotNet.Wpf.GitHub │ ├── Check-AssemblyVersions.ps1 │ ├── Directory.Build.targets │ ├── Microsoft.DotNet.Wpf.GitHub.ArchNeutral.csproj │ └── Microsoft.DotNet.Wpf.GitHub.csproj ├── Microsoft.Dotnet.Wpf.ProjectTemplates │ ├── Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj │ ├── content │ │ ├── WpfApplication-CSharp │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── net5.0 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfApplication1.csproj │ │ │ │ ├── MainWindow.xaml │ │ │ │ └── MainWindow.xaml.cs │ │ │ ├── net6.0 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfApplication1.csproj │ │ │ │ ├── MainWindow.xaml │ │ │ │ └── MainWindow.xaml.cs │ │ │ └── netcoreapp3.1 │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfApplication1.csproj │ │ │ │ ├── MainWindow.xaml │ │ │ │ └── MainWindow.xaml.cs │ │ ├── WpfApplication-VisualBasic │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Company.WpfApplication1.vbproj │ │ │ ├── Company.WpfApplication3x1.vbproj │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.vb │ │ ├── WpfClassLibrary-CSharp │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── net5.0 │ │ │ │ ├── Class1.cs │ │ │ │ └── Company.ClassLibrary1.csproj │ │ │ ├── net6.0 │ │ │ │ ├── Class1.cs │ │ │ │ └── Company.ClassLibrary1.csproj │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Class1.cs │ │ │ │ └── Company.ClassLibrary1.csproj │ │ ├── WpfClassLibrary-VisualBasic │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── Class1.vb │ │ │ ├── Company.ClassLibrary1.vbproj │ │ │ └── Company.ClassLibrary3x1.vbproj │ │ ├── WpfCustomControlLibrary-CSharp │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── net5.0 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfCustomControlLibrary.csproj │ │ │ │ ├── CustomControl1.cs │ │ │ │ └── Themes │ │ │ │ │ └── Generic.xaml │ │ │ ├── net6.0 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfCustomControlLibrary.csproj │ │ │ │ ├── CustomControl1.cs │ │ │ │ └── Themes │ │ │ │ │ └── Generic.xaml │ │ │ └── netcoreapp3.1 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfCustomControlLibrary.csproj │ │ │ │ ├── CustomControl1.cs │ │ │ │ └── Themes │ │ │ │ └── Generic.xaml │ │ ├── WpfCustomControlLibrary-VisualBasic │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Company.WpfCustomControlLibrary.vbproj │ │ │ ├── Company.WpfCustomControlLibrary3x.vbproj │ │ │ ├── CustomControl1.vb │ │ │ └── Themes │ │ │ │ └── Generic.xaml │ │ ├── WpfUserControlLibrary-CSharp │ │ │ ├── .template.config │ │ │ │ ├── dotnetcli.host.json │ │ │ │ ├── localize │ │ │ │ │ ├── templatestrings.cs.json │ │ │ │ │ ├── templatestrings.de.json │ │ │ │ │ ├── templatestrings.en.json │ │ │ │ │ ├── templatestrings.es.json │ │ │ │ │ ├── templatestrings.fr.json │ │ │ │ │ ├── templatestrings.it.json │ │ │ │ │ ├── templatestrings.ja.json │ │ │ │ │ ├── templatestrings.ko.json │ │ │ │ │ ├── templatestrings.pl.json │ │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ │ ├── templatestrings.ru.json │ │ │ │ │ ├── templatestrings.tr.json │ │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ │ └── template.json │ │ │ ├── net5.0 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfControlLibrary.csproj │ │ │ │ ├── UserControl1.xaml │ │ │ │ └── UserControl1.xaml.cs │ │ │ ├── net6.0 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfControlLibrary.csproj │ │ │ │ ├── UserControl1.xaml │ │ │ │ └── UserControl1.xaml.cs │ │ │ └── netcoreapp3.1 │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Company.WpfControlLibrary.csproj │ │ │ │ ├── UserControl1.xaml │ │ │ │ └── UserControl1.xaml.cs │ │ └── WpfUserControlLibrary-VisualBasic │ │ │ ├── .template.config │ │ │ ├── dotnetcli.host.json │ │ │ ├── localize │ │ │ │ ├── templatestrings.cs.json │ │ │ │ ├── templatestrings.de.json │ │ │ │ ├── templatestrings.en.json │ │ │ │ ├── templatestrings.es.json │ │ │ │ ├── templatestrings.fr.json │ │ │ │ ├── templatestrings.it.json │ │ │ │ ├── templatestrings.ja.json │ │ │ │ ├── templatestrings.ko.json │ │ │ │ ├── templatestrings.pl.json │ │ │ │ ├── templatestrings.pt-BR.json │ │ │ │ ├── templatestrings.ru.json │ │ │ │ ├── templatestrings.tr.json │ │ │ │ ├── templatestrings.zh-Hans.json │ │ │ │ └── templatestrings.zh-Hant.json │ │ │ └── template.json │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Company.WpfControlLibrary.vbproj │ │ │ ├── Company.WpfControlLibrary3x.vbproj │ │ │ ├── UserControl1.xaml │ │ │ └── UserControl1.xaml.vb │ ├── readme.MD │ └── useSharedDesignerContext.txt └── Microsoft.NET.Sdk.WindowsDesktop │ ├── Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj │ ├── Microsoft.NET.Sdk.WindowsDesktop.WinForms.Packaging.targets │ ├── Sdk │ ├── Sdk.props │ └── Sdk.targets │ ├── targets │ ├── Microsoft.NET.Sdk.WindowsDesktop.WPF.props │ ├── Microsoft.NET.Sdk.WindowsDesktop.props │ └── Microsoft.NET.Sdk.WindowsDesktop.targets │ └── useSharedDesignerContext.txt ├── roadmap.md ├── src └── Microsoft.DotNet.Wpf │ ├── ApiCompat │ └── Baselines │ │ ├── PresentationBuildTasks-Net48.baseline.txt │ │ ├── PresentationCore-ref-Net48.baseline.txt │ │ ├── PresentationCore-ref.baseline.txt │ │ ├── PresentationFramework-ref-Net48.baseline.txt │ │ ├── PresentationFramework-ref.baseline.txt │ │ ├── PresentationFramework.Aero-ref-Net48.baseline.txt │ │ ├── PresentationFramework.Aero-ref.baseline.txt │ │ ├── PresentationFramework.Aero2-ref-Net48.baseline.txt │ │ ├── PresentationFramework.Aero2-ref.baseline.txt │ │ ├── PresentationFramework.AeroLite-ref-Net48.baseline.txt │ │ ├── PresentationFramework.AeroLite-ref.baseline.txt │ │ ├── PresentationFramework.Classic-ref-Net48.baseline.txt │ │ ├── PresentationFramework.Classic-ref.baseline.txt │ │ ├── PresentationFramework.Luna-ref-Net48.baseline.txt │ │ ├── PresentationFramework.Luna-ref.baseline.txt │ │ ├── PresentationFramework.Royale-ref-Net48.baseline.txt │ │ ├── PresentationFramework.Royale-ref.baseline.txt │ │ ├── PresentationUI-ref.baseline.txt │ │ ├── ReachFramework-ref-Net48.baseline.txt │ │ ├── ReachFramework-ref.baseline.txt │ │ ├── System.Printing-ref-Net48.baseline copy.txt │ │ ├── System.Printing-ref-Net48.baseline.txt │ │ ├── System.Printing-ref.baseline.txt │ │ ├── System.Windows.Controls.Ribbon-ref-Net48.baseline.txt │ │ ├── System.Windows.Controls.Ribbon-ref.baseline.txt │ │ ├── System.Windows.Input.Manipulations-ref-Net48.baseline.txt │ │ ├── System.Windows.Input.Manipulations-ref.baseline.txt │ │ ├── System.Windows.Presentation-ref-Net48.baseline.txt │ │ ├── System.Windows.Presentation-ref.baseline.txt │ │ ├── System.Xaml-ref-Net48.baseline.txt │ │ ├── System.Xaml-ref.baseline.txt │ │ ├── UIAutomationClient-ref-Net48.baseline.txt │ │ ├── UIAutomationClient-ref.baseline.txt │ │ ├── UIAutomationClientSideProviders-ref-Net48.baseline.txt │ │ ├── UIAutomationClientSideProviders-ref.baseline.txt │ │ ├── UIAutomationProvider-ref-Net48.baseline.txt │ │ ├── UIAutomationProvider-ref.baseline.txt │ │ ├── UIAutomationTypes-ref-Net48.baseline.txt │ │ ├── UIAutomationTypes-ref.baseline.txt │ │ ├── WindowsBase-ref-Net48.baseline.txt │ │ ├── WindowsBase-ref.baseline.txt │ │ ├── WindowsFormsIntegration-ref-Net48.baseline.txt │ │ └── WindowsFormsIntegration-ref.baseline.txt │ ├── Directory.Build.Props │ ├── cycle-breakers │ ├── .editorconfig │ ├── Directory.Build.Props │ ├── PresentationFramework │ │ ├── PresentationFramework-PresentationUI-api-cycle.csproj │ │ ├── PresentationFramework-ReachFramework-impl-cycle.csproj │ │ ├── PresentationFramework-System.Printing-api-cycle.csproj │ │ ├── PresentationFramework-System.Printing-impl-cycle.csproj │ │ ├── PresentationFramework.cs │ │ ├── System.Windows.Controls.DocumentViewer.cs │ │ ├── System.Windows.Controls.PageRange.cs │ │ ├── System.Windows.Controls.PageRangeSelection.cs │ │ ├── System.Windows.Controls.ToolBar.cs │ │ ├── System.Windows.Documents.FixedDocument.cs │ │ ├── System.Windows.Documents.FixedDocumentSequence.cs │ │ ├── System.Windows.Documents.FixedPage.cs │ │ ├── System.Windows.Documents.Serialization.Delegates.cs │ │ ├── System.Windows.Documents.Serialization.SerializerWriter.cs │ │ └── System.Windows.Documents.Serialization.SerializerWriterCollator.cs │ ├── PresentationUI │ │ ├── PresentationUI-PresentationFramework-impl-cycle.csproj │ │ ├── PresentationUI.cs │ │ └── PresentationUI.internals.cs │ ├── ReachFramework │ │ ├── ReachFramework-PresentationFramework-api-cycle.csproj │ │ ├── ReachFramework-System.Printing-api-cycle.csproj │ │ ├── System.Printing.PrintCapabilities.cs │ │ ├── System.Printing.PrintTicket.cs │ │ ├── System.Printing.PrintTicketScope.cs │ │ ├── System.Printing.ValidationResult.cs │ │ ├── System.Windows.Xps.Packaging.PackagingProgressEventArgs.cs │ │ ├── System.Windows.Xps.Packaging.XpsDocument.cs │ │ ├── System.Windows.Xps.Serialization.PrintTicketLevel.cs │ │ └── System.Windows.Xps.Serialization.RCW.IXpsOMPackageWriter.cs │ └── System.Printing │ │ ├── System.Printing-PresentationFramework-api-cycle.csproj │ │ └── System.Printing.PrintQueue.cs │ ├── redist │ ├── D3DCompiler │ │ └── D3DCompiler.vcxproj │ ├── Directory.Build.Props │ ├── PresentationNative │ │ └── PresentationNative.vcxproj │ ├── Redist.sln │ └── VCRuntime │ │ └── VCRuntime.vcxproj │ ├── specs │ ├── 0spec_template.md │ ├── AutomationUpdate.md │ └── tooltip.md │ ├── src │ ├── .editorconfig │ ├── Common │ │ ├── Graphics │ │ │ ├── Generated │ │ │ │ └── wgx_commands.cs │ │ │ ├── exports.cs │ │ │ ├── wgx_av_types.cs │ │ │ ├── wgx_core_types.cs │ │ │ ├── wgx_error.cs │ │ │ ├── wgx_exports.cs │ │ │ ├── wgx_render.cs │ │ │ └── wgx_sdk_version.cs │ │ └── src │ │ │ ├── Interop │ │ │ └── Windows │ │ │ │ ├── Interop.Libraries.cs │ │ │ │ ├── user32 │ │ │ │ ├── Interop.Constants.cs │ │ │ │ └── Interop.MessageBeep.cs │ │ │ │ ├── winmm │ │ │ │ ├── Interop.Constants.cs │ │ │ │ ├── Interop.MMCKINFO.cs │ │ │ │ ├── Interop.PlaySoundW.cs │ │ │ │ ├── Interop.WAVEFORMATEX.cs │ │ │ │ ├── Interop.mmioAscend.cs │ │ │ │ ├── Interop.mmioClose.cs │ │ │ │ ├── Interop.mmioDescend.cs │ │ │ │ ├── Interop.mmioOpenW.cs │ │ │ │ └── Interop.mmioRead.cs │ │ │ │ └── zlib │ │ │ │ └── zlib.cs │ │ │ ├── MS │ │ │ └── Internal │ │ │ │ └── PixelUnit.cs │ │ │ └── System │ │ │ ├── AppContextDefaultValues.cs │ │ │ ├── IO │ │ │ └── Compression │ │ │ │ └── DeflateZLib │ │ │ │ ├── ZLibNative.Windows.cs │ │ │ │ └── ZLibNative.cs │ │ │ ├── LocalAppContext.cs │ │ │ └── SR.cs │ ├── DirectWriteForwarder │ │ ├── CPP │ │ │ ├── DWriteWrapper │ │ │ │ ├── CharAttribute.h │ │ │ │ ├── Common.h │ │ │ │ ├── DWriteFontFeature.h │ │ │ │ ├── DWriteFontFeatureTag.h │ │ │ │ ├── DWriteGlyphOffset.h │ │ │ │ ├── DWriteInterfaces.h │ │ │ │ ├── DWriteMatrix.h │ │ │ │ ├── DWriteTypeConverter.cpp │ │ │ │ ├── DWriteTypeConverter.h │ │ │ │ ├── Factory.cpp │ │ │ │ ├── Factory.h │ │ │ │ ├── FactoryType.h │ │ │ │ ├── Font.cpp │ │ │ │ ├── Font.h │ │ │ │ ├── FontCollection.cpp │ │ │ │ ├── FontCollection.h │ │ │ │ ├── FontFace.cpp │ │ │ │ ├── FontFace.h │ │ │ │ ├── FontFaceType.h │ │ │ │ ├── FontFamily.cpp │ │ │ │ ├── FontFamily.h │ │ │ │ ├── FontFile.cpp │ │ │ │ ├── FontFile.h │ │ │ │ ├── FontFileEnumerator.cpp │ │ │ │ ├── FontFileEnumerator.h │ │ │ │ ├── FontFileLoader.cpp │ │ │ │ ├── FontFileLoader.h │ │ │ │ ├── FontFileStream.cpp │ │ │ │ ├── FontFileStream.h │ │ │ │ ├── FontFileType.h │ │ │ │ ├── FontList.cpp │ │ │ │ ├── FontList.h │ │ │ │ ├── FontMetrics.h │ │ │ │ ├── FontSimulation.h │ │ │ │ ├── FontStretch.h │ │ │ │ ├── FontStyle.h │ │ │ │ ├── FontWeight.h │ │ │ │ ├── GlyphMetrics.h │ │ │ │ ├── GlyphOffset.h │ │ │ │ ├── IClassification.h │ │ │ │ ├── IFontSource.h │ │ │ │ ├── InformationalStringID.h │ │ │ │ ├── ItemProps.cpp │ │ │ │ ├── ItemProps.h │ │ │ │ ├── ItemSpan.cpp │ │ │ │ ├── ItemSpan.h │ │ │ │ ├── ItemizerHelper.h │ │ │ │ ├── LocalizedErrorMsgs.cpp │ │ │ │ ├── LocalizedErrorMsgs.h │ │ │ │ ├── LocalizedStrings.cpp │ │ │ │ ├── LocalizedStrings.h │ │ │ │ ├── NativePointerWrapper.cpp │ │ │ │ ├── NativePointerWrapper.h │ │ │ │ ├── OpenTypeTableTag.h │ │ │ │ ├── TextAnalyzer.cpp │ │ │ │ ├── TextAnalyzer.h │ │ │ │ ├── TextItemizer.cpp │ │ │ │ └── TextItemizer.h │ │ │ ├── DirectWriteForwarder.cpp │ │ │ ├── TrueTypeSubsetter │ │ │ │ ├── TtfDelta │ │ │ │ │ ├── ControlTableInit.h │ │ │ │ │ ├── GlobalInit.h │ │ │ │ │ ├── automap.cpp │ │ │ │ │ ├── automap.h │ │ │ │ │ ├── intsafe_private_copy.h │ │ │ │ │ ├── makeglst.cpp │ │ │ │ │ ├── makeglst.h │ │ │ │ │ ├── modcmap.cpp │ │ │ │ │ ├── modcmap.h │ │ │ │ │ ├── modglyf.cpp │ │ │ │ │ ├── modglyf.h │ │ │ │ │ ├── modsbit.cpp │ │ │ │ │ ├── modsbit.h │ │ │ │ │ ├── modtable.cpp │ │ │ │ │ ├── modtable.h │ │ │ │ │ ├── mtxcalc.cpp │ │ │ │ │ ├── mtxcalc.h │ │ │ │ │ ├── ttfacc.cpp │ │ │ │ │ ├── ttfacc.h │ │ │ │ │ ├── ttfcntrl.cpp │ │ │ │ │ ├── ttfcntrl.h │ │ │ │ │ ├── ttfdcnfg.h │ │ │ │ │ ├── ttfdelta.cpp │ │ │ │ │ ├── ttfdelta.h │ │ │ │ │ ├── ttferror.h │ │ │ │ │ ├── ttff.h │ │ │ │ │ ├── ttftabl1.cpp │ │ │ │ │ ├── ttftabl1.h │ │ │ │ │ ├── ttftable.cpp │ │ │ │ │ ├── ttftable.h │ │ │ │ │ ├── ttmem.cpp │ │ │ │ │ ├── ttmem.h │ │ │ │ │ ├── typedefs.h │ │ │ │ │ ├── util.cpp │ │ │ │ │ └── util.h │ │ │ │ ├── fsassert.h │ │ │ │ ├── sfntoff.h │ │ │ │ ├── truetype.cpp │ │ │ │ ├── truetype.h │ │ │ │ ├── util2.cpp │ │ │ │ └── util2.h │ │ │ ├── precomp.cxx │ │ │ └── precomp.hxx │ │ ├── DirectWriteForwarder.sln │ │ ├── DirectWriteForwarder.vcxproj │ │ ├── OtherAssemblyAttrs.cpp │ │ ├── main.cpp │ │ └── version.rc │ ├── Directory.Build.Props │ ├── Extensions │ │ ├── PresentationFramework-SystemCore │ │ │ ├── DynamicAccessorImpl.cs │ │ │ ├── PresentationFramework-SystemCore.csproj │ │ │ └── SystemCoreExtension.cs │ │ ├── PresentationFramework-SystemData │ │ │ ├── PresentationFramework-SystemData.csproj │ │ │ └── SystemDataExtension.cs │ │ ├── PresentationFramework-SystemDrawing │ │ │ ├── PresentationFramework-SystemDrawing.csproj │ │ │ └── SystemDrawingExtension.cs │ │ ├── PresentationFramework-SystemXml │ │ │ ├── PresentationFramework-SystemXml.csproj │ │ │ ├── SystemXmlExtension.cs │ │ │ └── XmlNodeComparer.cs │ │ └── PresentationFramework-SystemXmlLinq │ │ │ ├── PresentationFramework-SystemXmlLinq.csproj │ │ │ └── SystemXmlLinqExtension.cs │ ├── PenImc │ │ ├── dir.targets │ │ ├── dll │ │ │ ├── ComApartmentVerifier.cpp │ │ │ ├── ComApartmentVerifier.hpp │ │ │ ├── ComLockableWrapper.cpp │ │ │ ├── ComLockableWrapper.hpp │ │ │ ├── GitComLockableWrapper.hpp │ │ │ ├── PbList.cpp │ │ │ ├── PbList.h │ │ │ ├── PbPreallocArray.cpp │ │ │ ├── PbPreallocArray.h │ │ │ ├── PenIMC.manifest │ │ │ ├── PenImc.cpp │ │ │ ├── PenImc.def │ │ │ ├── PenImc.idl │ │ │ ├── PenImc.rc │ │ │ ├── PenImc.sln │ │ │ ├── PenImc.vcxproj │ │ │ ├── PimcContext.cpp │ │ │ ├── PimcContext.h │ │ │ ├── PimcManager.cpp │ │ │ ├── PimcManager.h │ │ │ ├── PimcSurrogate.cpp │ │ │ ├── PimcSurrogate.h │ │ │ ├── PimcTablet.cpp │ │ │ ├── PimcTablet.h │ │ │ ├── SxSCOMRegistration.cpp │ │ │ ├── WispComLockExports.cpp │ │ │ ├── compressstub.cpp │ │ │ ├── dir.targets │ │ │ ├── dlldatax.c │ │ │ ├── dlldatax.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── inc │ │ │ ├── TabAssert.h │ │ │ ├── TabInc.h │ │ │ ├── TabletPCVer.h │ │ │ ├── peninc.h │ │ │ ├── pentypes.h │ │ │ ├── tpcpen.h │ │ │ ├── tpcpen_i.c │ │ │ ├── tpguuid.h │ │ │ ├── wisptics.h │ │ │ ├── wisptics_i.c │ │ │ ├── wisptis.h │ │ │ └── wisptis_i.c │ │ └── tablib │ │ │ ├── TabLib.vcxproj │ │ │ ├── dir.targets │ │ │ ├── scope.h │ │ │ ├── scopes.h │ │ │ ├── sidutils.cpp │ │ │ └── sidutils.h │ ├── PresentationBuildTasks │ │ ├── MS │ │ │ └── Internal │ │ │ │ ├── BuildTasksAppContextSwitches.cs │ │ │ │ ├── Localization │ │ │ │ ├── LocalizationDirectivesToLocFile.cs │ │ │ │ └── LocalizationParserHooks.cs │ │ │ │ ├── MarkupCompiler │ │ │ │ ├── AssemblyVersionParseException.cs │ │ │ │ ├── CompilationUnit.cs │ │ │ │ ├── FileUnit.cs │ │ │ │ ├── MarkupCompiler.cs │ │ │ │ ├── ParserExtension.cs │ │ │ │ ├── PathInternal.cs │ │ │ │ └── VersionHelper.cs │ │ │ │ ├── Shared │ │ │ │ └── SourceFileInfo.cs │ │ │ │ └── Tasks │ │ │ │ ├── CompilerLocalReference.cs │ │ │ │ ├── CompilerState.cs │ │ │ │ ├── CompilerWrapper.cs │ │ │ │ ├── IPersistFileCheckSum.cs │ │ │ │ ├── IVsMSBuildTaskFileManager.cs │ │ │ │ ├── IncrementalCompileAnalyzer.cs │ │ │ │ ├── Shared.cs │ │ │ │ ├── TaskFileService.cs │ │ │ │ └── TaskHelper.cs │ │ ├── Microsoft.WinFX.targets │ │ ├── Microsoft │ │ │ └── Build │ │ │ │ └── Tasks │ │ │ │ └── Windows │ │ │ │ ├── FileClassifier.cs │ │ │ │ ├── GenerateTemporaryTargetAssembly.cs │ │ │ │ ├── MarkupCompilePass1.cs │ │ │ │ ├── MarkupCompilePass2.cs │ │ │ │ ├── MergeLocalizationDirectives.cs │ │ │ │ ├── ResourcesGenerator.cs │ │ │ │ ├── UidManager.cs │ │ │ │ └── UpdateManifestForBrowserApplication.cs │ │ ├── PresentationBuildTasks.csproj │ │ ├── PresentationBuildTasks.sln │ │ ├── Resources │ │ │ ├── Strings.resx │ │ │ ├── window.ico │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── SR.cs │ │ └── System │ │ │ └── AppContextDefaultValues.cs │ ├── PresentationCore │ │ ├── AvTraceMessages.txt │ │ ├── AvTraceMessages.xml │ │ ├── Directory.Build.Props │ │ ├── Fonts │ │ │ ├── AnalyzeFont.txt │ │ │ ├── GlobalMonospace.CompositeFont │ │ │ ├── GlobalSansSerif.CompositeFont │ │ │ ├── GlobalSerif.CompositeFont │ │ │ ├── GlobalUserInterface.CompositeFont │ │ │ ├── andlso.ttf │ │ │ ├── simpbdo.ttf │ │ │ ├── simpfxo.ttf │ │ │ ├── simpo.ttf │ │ │ ├── tradbdo.ttf │ │ │ └── trado.ttf │ │ ├── GlobalSuppressions.cs │ │ ├── GlobalUsings.cs │ │ ├── ILLinkTrim.xml │ │ ├── MS │ │ │ ├── Win32 │ │ │ │ ├── UnsafeNativeMethodsPenimc.cs │ │ │ │ ├── UnsafeNativeMethodsPointer.cs │ │ │ │ └── UnsafeNativeMethodsTablet.cs │ │ │ └── internal │ │ │ │ ├── AnimatedTypeHelpers.cs │ │ │ │ ├── AppModel │ │ │ │ ├── CookieHandler.cs │ │ │ │ ├── CustomCredentialPolicy.cs │ │ │ │ ├── SiteOfOriginContainer.cs │ │ │ │ └── SiteOfOriginPart.cs │ │ │ │ ├── Automation │ │ │ │ ├── AutomationPatternInfo.cs │ │ │ │ ├── AutomationPropertyInfo.cs │ │ │ │ ├── DockProviderWrapper.cs │ │ │ │ ├── ElementProxy.cs │ │ │ │ ├── ElementUtil.cs │ │ │ │ ├── EventMap.cs │ │ │ │ ├── ExpandCollapseProviderWrapper.cs │ │ │ │ ├── GridItemProviderWrapper.cs │ │ │ │ ├── GridProviderWrapper.cs │ │ │ │ ├── InteropAutomationProvider.cs │ │ │ │ ├── InvokeProviderWrapper.cs │ │ │ │ ├── ItemContainerProviderWrapper.cs │ │ │ │ ├── MultipleViewProviderWrapper.cs │ │ │ │ ├── RangeValueProviderWrapper.cs │ │ │ │ ├── ScrollItemProviderWrapper.cs │ │ │ │ ├── ScrollProviderWrapper.cs │ │ │ │ ├── SelectionItemProviderWrapper.cs │ │ │ │ ├── SelectionProviderWrapper.cs │ │ │ │ ├── SynchronizedInputAdaptor.cs │ │ │ │ ├── SynchronizedInputProviderWrapper.cs │ │ │ │ ├── TableItemProviderWrapper.cs │ │ │ │ ├── TableProviderWrapper.cs │ │ │ │ ├── TextProviderWrapper.cs │ │ │ │ ├── TextRangeProviderWrapper.cs │ │ │ │ ├── ToggleProviderWrapper.cs │ │ │ │ ├── TransformProviderWrapper.cs │ │ │ │ ├── ValueProviderWrapper.cs │ │ │ │ ├── VirtualizedItemProviderWrapper.cs │ │ │ │ └── WindowProviderWrapper.cs │ │ │ │ ├── CheckedPointers.cs │ │ │ │ ├── Classification.cs │ │ │ │ ├── Collections │ │ │ │ └── InternalCollectionDelegates.cs │ │ │ │ ├── CoreAppContextSwitches.cs │ │ │ │ ├── CustomCategoryAttribute.cs │ │ │ │ ├── DeferredElementTreeState.cs │ │ │ │ ├── DpiScale2.cs │ │ │ │ ├── DpiUtil │ │ │ │ ├── DpiUtil+DpiAwarenessContextHelper.cs │ │ │ │ ├── DpiUtil+DpiAwarenessScope.cs │ │ │ │ ├── DpiUtil+HwndDpiInfo.cs │ │ │ │ ├── DpiUtil+ProcessDpiAwarenessHelper.cs │ │ │ │ ├── DpiUtil+SystemDpiHelper.cs │ │ │ │ ├── DpiUtil+WindowDpiScaleHelper.cs │ │ │ │ └── DpiUtil.cs │ │ │ │ ├── FontCache │ │ │ │ ├── BufferCache.cs │ │ │ │ ├── CachedFontFace.cs │ │ │ │ ├── CachedFontFamily.cs │ │ │ │ ├── CachedTypeface.cs │ │ │ │ ├── CanonicalFontFamilyReference.cs │ │ │ │ ├── DWriteFactory.cs │ │ │ │ ├── FamilyCollection.cs │ │ │ │ ├── FontCacheLogic.cs │ │ │ │ ├── FontCacheUtil.cs │ │ │ │ ├── FontFaceLayoutInfo.cs │ │ │ │ ├── FontResourceCache.cs │ │ │ │ ├── FontSource.cs │ │ │ │ ├── FontSourceCollection.cs │ │ │ │ ├── IPCCacheManager.cs │ │ │ │ ├── TypefaceMetricsCache.cs │ │ │ │ └── fontcacheconstants.cs │ │ │ │ ├── FontFace │ │ │ │ ├── CachedCompositeFamily.cs │ │ │ │ ├── CompositeFontInfo.cs │ │ │ │ ├── CompositeFontParser.cs │ │ │ │ ├── FontDifferentiator.cs │ │ │ │ ├── FontDriver.cs │ │ │ │ ├── FontFamilyIdentifier.cs │ │ │ │ ├── IDeviceFont.cs │ │ │ │ ├── IFontFamily.cs │ │ │ │ ├── ITypefaceMetrics.cs │ │ │ │ ├── MatchingStyle.cs │ │ │ │ ├── PhysicalFontFamily.cs │ │ │ │ ├── Tags.cs │ │ │ │ └── TypefaceCollection.cs │ │ │ │ ├── Generated │ │ │ │ └── AvTraceMessages.cs │ │ │ │ ├── Generic │ │ │ │ └── Span.cs │ │ │ │ ├── IListConverters.cs │ │ │ │ ├── IO │ │ │ │ └── Packaging │ │ │ │ │ ├── ByteRangeDownloader.cs │ │ │ │ │ ├── DeobfuscatingStream.cs │ │ │ │ │ ├── NetStream.cs │ │ │ │ │ ├── PreloadedPackages.cs │ │ │ │ │ ├── PseudoWebRequest.cs │ │ │ │ │ └── ResponseStream.cs │ │ │ │ ├── IVisual3DContainer.cs │ │ │ │ ├── Ink │ │ │ │ ├── Bezier.cs │ │ │ │ ├── ContourSegment.cs │ │ │ │ ├── CuspData.cs │ │ │ │ ├── DrawingFlags.cs │ │ │ │ ├── EllipticalNodeOperations.cs │ │ │ │ ├── ErasingStroke.cs │ │ │ │ ├── ExtendedProperty.cs │ │ │ │ ├── ExtendedPropertyCollection.cs │ │ │ │ ├── GestureRecognizer │ │ │ │ │ └── NativeRecognizer.cs │ │ │ │ ├── InkSerializedFormat │ │ │ │ │ ├── AlgoModule.cs │ │ │ │ │ ├── Codec.cs │ │ │ │ │ ├── Compress.cs │ │ │ │ │ ├── CustomAttributeSerializer.cs │ │ │ │ │ ├── DrawingAttributeSerializer.cs │ │ │ │ │ ├── GorillaCodec.cs │ │ │ │ │ ├── GuidTagList.cs │ │ │ │ │ ├── HuffCodec.cs │ │ │ │ │ ├── HuffModule.cs │ │ │ │ │ ├── ISFTagAndGuidCache.cs │ │ │ │ │ ├── InkSerializer.cs │ │ │ │ │ ├── LZCodec.cs │ │ │ │ │ ├── MetricEntry.cs │ │ │ │ │ ├── MultiByteCodec.cs │ │ │ │ │ ├── SerializationHelper.cs │ │ │ │ │ ├── StrokeDescriptor.cs │ │ │ │ │ ├── StrokeSerializer.cs │ │ │ │ │ └── TransformDescriptor.cs │ │ │ │ ├── Lasso.cs │ │ │ │ ├── Quad.cs │ │ │ │ ├── Renderer.cs │ │ │ │ ├── SerializationFlags.cs │ │ │ │ ├── StrokeFIndices.cs │ │ │ │ ├── StrokeIntersection.cs │ │ │ │ ├── StrokeNode.cs │ │ │ │ ├── StrokeNodeData.cs │ │ │ │ ├── StrokeNodeEnumerator.cs │ │ │ │ ├── StrokeNodeOperations.cs │ │ │ │ ├── StrokeNodeOperations2.cs │ │ │ │ ├── StrokeRenderer.cs │ │ │ │ └── StylusShape.cs │ │ │ │ ├── Interop │ │ │ │ ├── DWrite │ │ │ │ │ ├── DWRITE_FONT_FACE_TYPE.cs │ │ │ │ │ ├── DWRITE_FONT_SIMULATIONS.cs │ │ │ │ │ ├── IDWriteFactory.cs │ │ │ │ │ ├── IDWriteFontCollection.cs │ │ │ │ │ ├── IDWriteFontCollectionLoader.cs │ │ │ │ │ ├── IDWriteFontFace.cs │ │ │ │ │ ├── IDWriteFontFile.cs │ │ │ │ │ ├── IDWriteFontFileLoader.cs │ │ │ │ │ └── IDWriteTextAnalyzer.cs │ │ │ │ ├── IUnknown.cs │ │ │ │ ├── NativePointerCriticalHandle.cs │ │ │ │ └── TipTsfHelper.cs │ │ │ │ ├── KnownBoxes.cs │ │ │ │ ├── LoadedOrUnloadedOperation.cs │ │ │ │ ├── Media │ │ │ │ ├── ParserStreamGeometryContext.cs │ │ │ │ ├── TextOptionsInternal.cs │ │ │ │ ├── VisualTreeUtils.cs │ │ │ │ └── XamlSerializationHelper.cs │ │ │ │ ├── Media3D │ │ │ │ ├── GeneralTransform2DTo3DTo2D.cs │ │ │ │ ├── GeneralTransform3DTo2DTo3D.cs │ │ │ │ ├── LineUtil.cs │ │ │ │ └── M3DUtil.cs │ │ │ │ ├── MediaTrace.cs │ │ │ │ ├── PartialArray.cs │ │ │ │ ├── Resources │ │ │ │ ├── ContentFileHelper.cs │ │ │ │ └── ResourceManagerWrapper.cs │ │ │ │ ├── Shaping │ │ │ │ ├── CompositeFontFamily.cs │ │ │ │ ├── CompositeTypefaceMetrics.cs │ │ │ │ ├── Context.cs │ │ │ │ ├── GlyphInfoList.cs │ │ │ │ ├── GlyphingCache.cs │ │ │ │ ├── IShapeableTextCollector.cs │ │ │ │ ├── OpenTypeCommon.cs │ │ │ │ ├── OpenTypeLayout.cs │ │ │ │ ├── OpenTypeLayoutCache.cs │ │ │ │ ├── Positioning.cs │ │ │ │ ├── ShapeTypeface.cs │ │ │ │ ├── ShaperBuffers.cs │ │ │ │ ├── ShapingOptions.cs │ │ │ │ ├── Substitution.cs │ │ │ │ ├── TypefaceMap.cs │ │ │ │ └── UshortList2.cs │ │ │ │ ├── Span.cs │ │ │ │ ├── SynchronizedInputHelper.cs │ │ │ │ ├── SystemDrawingHelper.cs │ │ │ │ ├── Text │ │ │ │ └── TextInterface │ │ │ │ │ ├── DWriteInterfaces.cs │ │ │ │ │ ├── DWriteLoader.cs │ │ │ │ │ ├── DWriteUtil.cs │ │ │ │ │ ├── Factory.cs │ │ │ │ │ ├── FontCollectionLoader.cs │ │ │ │ │ └── IFontSourceCollection.cs │ │ │ │ ├── TextFormatting │ │ │ │ ├── Bidi.cs │ │ │ │ ├── CultureMapper.cs │ │ │ │ ├── DrawingState.cs │ │ │ │ ├── FormatSettings.cs │ │ │ │ ├── FormattedTextSymbols.cs │ │ │ │ ├── FullTextBreakpoint.cs │ │ │ │ ├── FullTextLine.cs │ │ │ │ ├── FullTextState.cs │ │ │ │ ├── GenericTextProperties.cs │ │ │ │ ├── ITextMetrics.cs │ │ │ │ ├── ITextSymbols.cs │ │ │ │ ├── LexicalChunk.cs │ │ │ │ ├── LineServices.cs │ │ │ │ ├── LineServicesCallbacks.cs │ │ │ │ ├── LineServicesRun.cs │ │ │ │ ├── NumberSubstitution.cs │ │ │ │ ├── SimpleTextLine.cs │ │ │ │ ├── TextFormatterImp.cs │ │ │ │ ├── TextMarkerSource.cs │ │ │ │ ├── TextMetrics.cs │ │ │ │ ├── TextPenaltyModule.cs │ │ │ │ ├── TextProperties.cs │ │ │ │ ├── TextRunCacheImp.cs │ │ │ │ ├── TextShapeableCharacters.cs │ │ │ │ ├── TextShapeableSymbols.cs │ │ │ │ ├── TextStore.cs │ │ │ │ ├── ThousandthOfEmRealDoubles.cs │ │ │ │ └── ThousandthOfEmRealPoints.cs │ │ │ │ ├── UIElementHelper.cs │ │ │ │ ├── UnicodeClasses.cs │ │ │ │ ├── WindowsRuntime │ │ │ │ └── Windows │ │ │ │ │ └── UI │ │ │ │ │ └── ViewManagement │ │ │ │ │ ├── InputPane.cs │ │ │ │ │ ├── InputPaneRcw.cs │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── UISettings.cs │ │ │ │ │ └── UISettingsRcw.cs │ │ │ │ └── WpfWebRequestHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── PresentationCore.csproj │ │ ├── Resources │ │ │ ├── ExceptionStringTable.txt │ │ │ ├── Strings.resx │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System │ │ │ ├── AppContextDefaultValues.cs │ │ │ ├── IO │ │ │ │ └── Packaging │ │ │ │ │ ├── PackWebRequest.cs │ │ │ │ │ ├── PackWebRequestFactory.cs │ │ │ │ │ ├── PackWebResponse.cs │ │ │ │ │ └── PackageStore.cs │ │ │ └── Windows │ │ │ │ ├── AutoResizedEvent.cs │ │ │ │ ├── Automation │ │ │ │ ├── AutomationHeadingLevel.cs │ │ │ │ ├── AutomationLiveSetting.cs │ │ │ │ ├── AutomationProperties.cs │ │ │ │ ├── IsOffscreenBehavior.cs │ │ │ │ └── Peers │ │ │ │ │ ├── AutomationPeer.cs │ │ │ │ │ ├── ContentElementAutomationPeer.cs │ │ │ │ │ ├── GenericRootAutomationPeer.cs │ │ │ │ │ ├── UIElement3DAutomationPeer.cs │ │ │ │ │ └── UIElementAutomationPeer.cs │ │ │ │ ├── ClassHandlersStore.cs │ │ │ │ ├── ContentElement.cs │ │ │ │ ├── ContentOperations.cs │ │ │ │ ├── CoreCompatibilityPreferences.cs │ │ │ │ ├── CultureInfoConverter.cs │ │ │ │ ├── DataFormat.cs │ │ │ │ ├── DataFormats.cs │ │ │ │ ├── DataObjectCopyingEventArgs.cs │ │ │ │ ├── DataObjectEventArgs.cs │ │ │ │ ├── DataObjectExtensions.cs │ │ │ │ ├── DataObjectPastingEventArgs.cs │ │ │ │ ├── DataObjectSettingDataEventArgs.cs │ │ │ │ ├── Diagnostics │ │ │ │ ├── VisualDiagnostics.cs │ │ │ │ ├── VisualTreeChangeEventArgs.cs │ │ │ │ ├── XamlSourceInfo.cs │ │ │ │ └── XamlSourceInfoHelper.cs │ │ │ │ ├── Documents │ │ │ │ ├── ContentPosition.cs │ │ │ │ ├── DocumentPage.cs │ │ │ │ ├── DocumentPaginator.cs │ │ │ │ ├── DynamicDocumentPaginator.cs │ │ │ │ ├── GetPageCompletedEventArgs.cs │ │ │ │ ├── GetPageNumberCompletedEventArgs.cs │ │ │ │ ├── IDocumentPaginatorSource.cs │ │ │ │ ├── PagesChangedEventArgs.cs │ │ │ │ └── PaginationProgressEventArgs.cs │ │ │ │ ├── DpiChangedEventArgs.cs │ │ │ │ ├── DpiScale.cs │ │ │ │ ├── DragAction.cs │ │ │ │ ├── DragDrop.cs │ │ │ │ ├── DragDropEffects.cs │ │ │ │ ├── DragDropKeyStates.cs │ │ │ │ ├── DragEventArgs.cs │ │ │ │ ├── DragEventHandler.cs │ │ │ │ ├── Duration.cs │ │ │ │ ├── DurationConverter.cs │ │ │ │ ├── EventHandlersStore.cs │ │ │ │ ├── EventHelper.cs │ │ │ │ ├── EventManager.cs │ │ │ │ ├── EventPrivateKey.cs │ │ │ │ ├── EventRoute.cs │ │ │ │ ├── EventRouteFactory.cs │ │ │ │ ├── FocusWithinProperty.cs │ │ │ │ ├── FontStretch.cs │ │ │ │ ├── FontStretchConverter.cs │ │ │ │ ├── FontStretches.cs │ │ │ │ ├── FontStyle.cs │ │ │ │ ├── FontStyleConverter.cs │ │ │ │ ├── FontStyles.cs │ │ │ │ ├── FontWeight.cs │ │ │ │ ├── FontWeightConverter.cs │ │ │ │ ├── FontWeights.cs │ │ │ │ ├── FreezableCollection.cs │ │ │ │ ├── Generated │ │ │ │ ├── ContentElement.cs │ │ │ │ ├── TextDecoration.cs │ │ │ │ ├── TextDecorationCollection.cs │ │ │ │ ├── TextDecorationLocation.cs │ │ │ │ ├── TextDecorationUnit.cs │ │ │ │ ├── UIElement.cs │ │ │ │ └── UIElement3D.cs │ │ │ │ ├── GiveFeedbackEventArgs.cs │ │ │ │ ├── GiveFeedbackEventHandler.cs │ │ │ │ ├── GlobalEventManager.cs │ │ │ │ ├── IContentHost.cs │ │ │ │ ├── IDataObject.cs │ │ │ │ ├── IInputElement.cs │ │ │ │ ├── ITypedDataObject.cs │ │ │ │ ├── Ink │ │ │ │ ├── ApplicationGesture.cs │ │ │ │ ├── DrawingAttributes.cs │ │ │ │ ├── Events.cs │ │ │ │ ├── GestureRecognitionResult.cs │ │ │ │ ├── GestureRecognizer.cs │ │ │ │ ├── IncrementalHitTester.cs │ │ │ │ ├── RecognitionConfidence.cs │ │ │ │ ├── Stroke.cs │ │ │ │ ├── Stroke2.cs │ │ │ │ ├── StrokeCollection.cs │ │ │ │ ├── StrokeCollection2.cs │ │ │ │ ├── StrokeCollectionConverter.cs │ │ │ │ └── StylusTip.cs │ │ │ │ ├── Input │ │ │ │ ├── AccessKeyManager.cs │ │ │ │ ├── AngleUtil.cs │ │ │ │ ├── CaptureMode.cs │ │ │ │ ├── Command │ │ │ │ │ ├── ApplicationCommands.cs │ │ │ │ │ ├── CanExecuteChangedEventManager.cs │ │ │ │ │ ├── CanExecuteRoutedEventArgs.cs │ │ │ │ │ ├── CommandBinding.cs │ │ │ │ │ ├── CommandBindingCollection.cs │ │ │ │ │ ├── CommandDevice.cs │ │ │ │ │ ├── CommandManager.cs │ │ │ │ │ ├── ComponentCommands.cs │ │ │ │ │ ├── ExecutedRoutedEventArgs.cs │ │ │ │ │ ├── ICommandSource.cs │ │ │ │ │ ├── InputBinding.cs │ │ │ │ │ ├── InputBindingCollection.cs │ │ │ │ │ ├── InputGesture.cs │ │ │ │ │ ├── InputGestureCollection.cs │ │ │ │ │ ├── KeyBinding.cs │ │ │ │ │ ├── KeyGesture.cs │ │ │ │ │ ├── KeyGestureConverter.cs │ │ │ │ │ ├── KeyGestureValueSerializer.cs │ │ │ │ │ ├── MediaCommands.cs │ │ │ │ │ ├── MouseAction.cs │ │ │ │ │ ├── MouseActionConverter.cs │ │ │ │ │ ├── MouseActionValueSerializer.cs │ │ │ │ │ ├── MouseBinding.cs │ │ │ │ │ ├── MouseGesture.cs │ │ │ │ │ ├── MouseGestureConverter.cs │ │ │ │ │ ├── MouseGestureValueSerializer.cs │ │ │ │ │ ├── NavigationCommands.cs │ │ │ │ │ ├── RoutedCommand.cs │ │ │ │ │ └── RoutedUICommand.cs │ │ │ │ ├── Cursor.cs │ │ │ │ ├── CursorConverter.cs │ │ │ │ ├── CursorType.cs │ │ │ │ ├── Cursors.cs │ │ │ │ ├── DeadCharTextComposition.cs │ │ │ │ ├── DefaultTextStore.cs │ │ │ │ ├── DefaultTextStoreTextComposition.cs │ │ │ │ ├── FocusChangedEventArgs.cs │ │ │ │ ├── FocusChangedEventHandler.cs │ │ │ │ ├── FocusManager.cs │ │ │ │ ├── IAvalonAdapter.cs │ │ │ │ ├── IInputLanguageSource.cs │ │ │ │ ├── IInputProvider.cs │ │ │ │ ├── IKeyboardInputProvider.cs │ │ │ │ ├── IManipulator.cs │ │ │ │ ├── IMouseInputProvider.cs │ │ │ │ ├── InertiaExpansionBehavior.cs │ │ │ │ ├── InertiaRotationBehavior.cs │ │ │ │ ├── InertiaTranslationBehavior.cs │ │ │ │ ├── InputDevice.cs │ │ │ │ ├── InputElement.cs │ │ │ │ ├── InputEventArgs.cs │ │ │ │ ├── InputEventHandler.cs │ │ │ │ ├── InputLanguageEventArgs.cs │ │ │ │ ├── InputLanguageManager.cs │ │ │ │ ├── InputLanguageProfileNotifySink.cs │ │ │ │ ├── InputLanguageSource.cs │ │ │ │ ├── InputManager.cs │ │ │ │ ├── InputMethod.cs │ │ │ │ ├── InputMethodStateChangeEventArgs.cs │ │ │ │ ├── InputMethodStateTypeInfo.cs │ │ │ │ ├── InputMode.cs │ │ │ │ ├── InputProcessorProfiles.cs │ │ │ │ ├── InputProcessorProfilesLoader.cs │ │ │ │ ├── InputProviderSite.cs │ │ │ │ ├── InputReport.cs │ │ │ │ ├── InputReportEventArgs.cs │ │ │ │ ├── InputReportEventHandler.cs │ │ │ │ ├── InputScope.cs │ │ │ │ ├── InputScopeConverter.cs │ │ │ │ ├── InputScopeNameConverter.cs │ │ │ │ ├── InputScopeNameValue.cs │ │ │ │ ├── InputType.cs │ │ │ │ ├── KeyEventArgs.cs │ │ │ │ ├── KeyEventHandler.cs │ │ │ │ ├── KeyStates.cs │ │ │ │ ├── Keyboard.cs │ │ │ │ ├── KeyboardDevice.cs │ │ │ │ ├── KeyboardEventArgs.cs │ │ │ │ ├── KeyboardEventHandler.cs │ │ │ │ ├── KeyboardInputProviderAcquireFocusEventArgs.cs │ │ │ │ ├── KeyboardInputProviderAcquireFocusEventHandler.cs │ │ │ │ ├── Manipulation.cs │ │ │ │ ├── ManipulationBoundaryFeedbackEventArgs.cs │ │ │ │ ├── ManipulationCompletedEventArgs.cs │ │ │ │ ├── ManipulationDelta.cs │ │ │ │ ├── ManipulationDeltaEventArgs.cs │ │ │ │ ├── ManipulationDevice.cs │ │ │ │ ├── ManipulationInertiaStartingEventArgs.cs │ │ │ │ ├── ManipulationLogic.cs │ │ │ │ ├── ManipulationModes.cs │ │ │ │ ├── ManipulationPivot.cs │ │ │ │ ├── ManipulationStartedEventArgs.cs │ │ │ │ ├── ManipulationStartingEventArgs.cs │ │ │ │ ├── ManipulationVelocities.cs │ │ │ │ ├── Mouse.cs │ │ │ │ ├── MouseButton.cs │ │ │ │ ├── MouseButtonEventArgs.cs │ │ │ │ ├── MouseButtonEventHandler.cs │ │ │ │ ├── MouseButtonState.cs │ │ │ │ ├── MouseDevice.cs │ │ │ │ ├── MouseEventArgs.cs │ │ │ │ ├── MouseEventHandler.cs │ │ │ │ ├── MouseWheelEventArgs.cs │ │ │ │ ├── MouseWheelEventHandler.cs │ │ │ │ ├── NotifyInputEventArgs.cs │ │ │ │ ├── PreProcessInputEventArgs.cs │ │ │ │ ├── ProcessInputEventArgs.cs │ │ │ │ ├── QueryCursorEventArgs.cs │ │ │ │ ├── QueryCursorEventHandler.cs │ │ │ │ ├── RawAppCommandInputReport.cs │ │ │ │ ├── RawKeyboardActions.cs │ │ │ │ ├── RawKeyboardInputReport.cs │ │ │ │ ├── RawMouseActions.cs │ │ │ │ ├── RawMouseInputReport.cs │ │ │ │ ├── RawTextInputReport.cs │ │ │ │ ├── RawUIStateActions.cs │ │ │ │ ├── RawUIStateInputReport.cs │ │ │ │ ├── RawUIStateTargets.cs │ │ │ │ ├── RestoreFocusMode.cs │ │ │ │ ├── StagingAreaInputItem.cs │ │ │ │ ├── Stylus │ │ │ │ │ ├── Biblio.txt │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── DynamicRenderer.cs │ │ │ │ │ │ ├── DynamicRendererThreadManager.cs │ │ │ │ │ │ ├── MultiTouchSystemGestureLogic.cs │ │ │ │ │ │ ├── RawStylusActions.cs │ │ │ │ │ │ ├── RawStylusInput.cs │ │ │ │ │ │ ├── RawStylusInputCustomData.cs │ │ │ │ │ │ ├── RawStylusInputCustomDataList.cs │ │ │ │ │ │ ├── RawStylusInputReport.cs │ │ │ │ │ │ ├── RawStylusSystemGestureInputReport.cs │ │ │ │ │ │ ├── Stylus.cs │ │ │ │ │ │ ├── StylusButton.cs │ │ │ │ │ │ ├── StylusButtonCollection.cs │ │ │ │ │ │ ├── StylusButtonEventArgs.cs │ │ │ │ │ │ ├── StylusButtonEventHandler.cs │ │ │ │ │ │ ├── StylusButtonState.cs │ │ │ │ │ │ ├── StylusDevice.cs │ │ │ │ │ │ ├── StylusDeviceBase.cs │ │ │ │ │ │ ├── StylusDeviceCollection.cs │ │ │ │ │ │ ├── StylusDeviceInfo.cs │ │ │ │ │ │ ├── StylusDownEventArgs.cs │ │ │ │ │ │ ├── StylusDownEventHandler.cs │ │ │ │ │ │ ├── StylusEventArgs.cs │ │ │ │ │ │ ├── StylusEventHandler.cs │ │ │ │ │ │ ├── StylusLogic.cs │ │ │ │ │ │ ├── StylusPlugInCollection.cs │ │ │ │ │ │ ├── StylusPlugInCollectionBase.cs │ │ │ │ │ │ ├── StylusPlugin.cs │ │ │ │ │ │ ├── StylusPoint.cs │ │ │ │ │ │ ├── StylusPointCollection.cs │ │ │ │ │ │ ├── StylusPointDescription.cs │ │ │ │ │ │ ├── StylusPointProperties.cs │ │ │ │ │ │ ├── StylusPointProperty.cs │ │ │ │ │ │ ├── StylusPointPropertyId.cs │ │ │ │ │ │ ├── StylusPointPropertyInfo.cs │ │ │ │ │ │ ├── StylusPointPropertyInfoDefaults.cs │ │ │ │ │ │ ├── StylusPointPropertyUnit.cs │ │ │ │ │ │ ├── StylusSystemGesture.cs │ │ │ │ │ │ ├── StylusSystemGestureEventArgs.cs │ │ │ │ │ │ ├── StylusSystemGestureEventHandler.cs │ │ │ │ │ │ ├── StylusTouchDeviceBase.cs │ │ │ │ │ │ ├── StylusTraceLogger.cs │ │ │ │ │ │ ├── Tablet.cs │ │ │ │ │ │ ├── TabletDevice.cs │ │ │ │ │ │ ├── TabletDeviceBase.cs │ │ │ │ │ │ ├── TabletDeviceCollection.cs │ │ │ │ │ │ ├── TabletDeviceInfo.cs │ │ │ │ │ │ ├── TabletDeviceType.cs │ │ │ │ │ │ └── TabletHardwareCapabilities.cs │ │ │ │ │ ├── Pointer │ │ │ │ │ │ ├── PointerData.cs │ │ │ │ │ │ ├── PointerFlickEngine.cs │ │ │ │ │ │ ├── PointerInteractionEngine.cs │ │ │ │ │ │ ├── PointerLogic.cs │ │ │ │ │ │ ├── PointerStylusDevice.cs │ │ │ │ │ │ ├── PointerStylusPlugInCollection.cs │ │ │ │ │ │ ├── PointerStylusPlugInManager.cs │ │ │ │ │ │ ├── PointerStylusPointPropertyInfoHelper.cs │ │ │ │ │ │ ├── PointerTabletDevice.cs │ │ │ │ │ │ ├── PointerTabletDeviceCollection.cs │ │ │ │ │ │ ├── PointerTabletDeviceInfo.cs │ │ │ │ │ │ └── PointerTouchDevice.cs │ │ │ │ │ └── Wisp │ │ │ │ │ │ ├── PenContext.cs │ │ │ │ │ │ ├── PenContextInfo.cs │ │ │ │ │ │ ├── PenContexts.cs │ │ │ │ │ │ ├── PenImcRcw.cs │ │ │ │ │ │ ├── PenThread.cs │ │ │ │ │ │ ├── PenThreadPool.cs │ │ │ │ │ │ ├── PenThreadWorker.cs │ │ │ │ │ │ ├── WispLogic.cs │ │ │ │ │ │ ├── WispStylusDevice.cs │ │ │ │ │ │ ├── WispStylusPlugInCollection.cs │ │ │ │ │ │ ├── WispStylusTouchDevice.cs │ │ │ │ │ │ ├── WispTabletDevice.cs │ │ │ │ │ │ └── WispTabletDeviceCollection.cs │ │ │ │ ├── TextComposition.cs │ │ │ │ ├── TextCompositionEventArgs.cs │ │ │ │ ├── TextCompositionEventHandler.cs │ │ │ │ ├── TextCompositionManager.cs │ │ │ │ ├── TextServicesCompartment.cs │ │ │ │ ├── TextServicesCompartmentContext.cs │ │ │ │ ├── TextServicesCompartmentEventSink.cs │ │ │ │ ├── TextServicesContext.cs │ │ │ │ ├── TextServicesManager.cs │ │ │ │ ├── Touch.cs │ │ │ │ ├── TouchAction.cs │ │ │ │ ├── TouchDevice.cs │ │ │ │ ├── TouchEventArgs.cs │ │ │ │ ├── TouchFrameEventArgs.cs │ │ │ │ ├── TouchFrameEventHandler.cs │ │ │ │ ├── TouchPoint.cs │ │ │ │ ├── TouchPointCollection.cs │ │ │ │ ├── TouchesCapturedWithinProperty.cs │ │ │ │ ├── TouchesOverProperty.cs │ │ │ │ ├── Win32KeyboardDevice.cs │ │ │ │ └── Win32MouseDevice.cs │ │ │ │ ├── InterOp │ │ │ │ ├── CursorInteropHelper.cs │ │ │ │ ├── D3DImage.cs │ │ │ │ ├── HwndAppCommandInputProvider.cs │ │ │ │ ├── HwndKeyboardInputProvider.cs │ │ │ │ ├── HwndMouseInputProvider.cs │ │ │ │ ├── HwndPanningFeedback.cs │ │ │ │ ├── HwndPointerInputProvider.cs │ │ │ │ ├── HwndSource.cs │ │ │ │ ├── HwndSourceHook.cs │ │ │ │ ├── HwndSourceKeyboardInputSite.cs │ │ │ │ ├── HwndSourceParameters.cs │ │ │ │ ├── HwndStylusInputProvider.cs │ │ │ │ ├── HwndTarget.cs │ │ │ │ ├── IStylusInputProvider.cs │ │ │ │ ├── IWin32Window.cs │ │ │ │ ├── Imaging.cs │ │ │ │ └── OperatingSystemVersionCheck.cs │ │ │ │ ├── LayoutManager.cs │ │ │ │ ├── LocalizabilityAttribute.cs │ │ │ │ ├── LocalizationCategory.cs │ │ │ │ ├── Markup │ │ │ │ ├── IAddChild.cs │ │ │ │ ├── IProvidePropertyFallback.cs │ │ │ │ ├── XamlSerializerUtil.cs │ │ │ │ ├── XmlLanguage.cs │ │ │ │ └── XmlLanguageConverter.cs │ │ │ │ ├── MeasureData.cs │ │ │ │ ├── Media │ │ │ │ ├── AncestorChangedEventArgs.cs │ │ │ │ ├── Animation │ │ │ │ │ ├── Animatable.cs │ │ │ │ │ ├── AnimationClock.cs │ │ │ │ │ ├── AnimationClockResource.cs │ │ │ │ │ ├── AnimationException.cs │ │ │ │ │ ├── AnimationLayer.cs │ │ │ │ │ ├── AnimationStorage.cs │ │ │ │ │ ├── AnimationTimeline.cs │ │ │ │ │ ├── AnimationType.cs │ │ │ │ │ ├── BackEase.cs │ │ │ │ │ ├── BounceEase.cs │ │ │ │ │ ├── CircleEase.cs │ │ │ │ │ ├── Clock.cs │ │ │ │ │ ├── ClockController.cs │ │ │ │ │ ├── ClockGroup.cs │ │ │ │ │ ├── ClockState.cs │ │ │ │ │ ├── CubicEase.cs │ │ │ │ │ ├── DoubleAnimationUsingPath.cs │ │ │ │ │ ├── EasingFunctionBase.cs │ │ │ │ │ ├── EasingMode.cs │ │ │ │ │ ├── EasingQuaternionKeyFrame.cs │ │ │ │ │ ├── ElasticEase.cs │ │ │ │ │ ├── Enums.cs │ │ │ │ │ ├── ExponentialEase.cs │ │ │ │ │ ├── FillBehavior.cs │ │ │ │ │ ├── Generated │ │ │ │ │ │ ├── Animatable.cs │ │ │ │ │ │ ├── BooleanAnimationBase.cs │ │ │ │ │ │ ├── BooleanAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── BooleanKeyFrameCollection.cs │ │ │ │ │ │ ├── ByteAnimation.cs │ │ │ │ │ │ ├── ByteAnimationBase.cs │ │ │ │ │ │ ├── ByteAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── ByteKeyFrameCollection.cs │ │ │ │ │ │ ├── CharAnimationBase.cs │ │ │ │ │ │ ├── CharAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── CharKeyFrameCollection.cs │ │ │ │ │ │ ├── ColorAnimation.cs │ │ │ │ │ │ ├── ColorAnimationBase.cs │ │ │ │ │ │ ├── ColorAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── ColorIndependentAnimationStorage.cs │ │ │ │ │ │ ├── ColorKeyFrameCollection.cs │ │ │ │ │ │ ├── DecimalAnimation.cs │ │ │ │ │ │ ├── DecimalAnimationBase.cs │ │ │ │ │ │ ├── DecimalAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── DecimalKeyFrameCollection.cs │ │ │ │ │ │ ├── DiscreteKeyFrames.cs │ │ │ │ │ │ ├── DoubleAnimation.cs │ │ │ │ │ │ ├── DoubleAnimationBase.cs │ │ │ │ │ │ ├── DoubleAnimationClockResource.cs │ │ │ │ │ │ ├── DoubleAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── DoubleIndependentAnimationStorage.cs │ │ │ │ │ │ ├── DoubleKeyFrameCollection.cs │ │ │ │ │ │ ├── EasingKeyFrames.cs │ │ │ │ │ │ ├── Int16Animation.cs │ │ │ │ │ │ ├── Int16AnimationBase.cs │ │ │ │ │ │ ├── Int16AnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Int16KeyFrameCollection.cs │ │ │ │ │ │ ├── Int32Animation.cs │ │ │ │ │ │ ├── Int32AnimationBase.cs │ │ │ │ │ │ ├── Int32AnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Int32KeyFrameCollection.cs │ │ │ │ │ │ ├── Int64Animation.cs │ │ │ │ │ │ ├── Int64AnimationBase.cs │ │ │ │ │ │ ├── Int64AnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Int64KeyFrameCollection.cs │ │ │ │ │ │ ├── KeyFrames.cs │ │ │ │ │ │ ├── LinearKeyFrames.cs │ │ │ │ │ │ ├── MatrixAnimationBase.cs │ │ │ │ │ │ ├── MatrixAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── MatrixIndependentAnimationStorage.cs │ │ │ │ │ │ ├── MatrixKeyFrameCollection.cs │ │ │ │ │ │ ├── ObjectAnimationBase.cs │ │ │ │ │ │ ├── ObjectAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── ObjectKeyFrameCollection.cs │ │ │ │ │ │ ├── ParallelTimeline.cs │ │ │ │ │ │ ├── Point3DAnimation.cs │ │ │ │ │ │ ├── Point3DAnimationBase.cs │ │ │ │ │ │ ├── Point3DAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Point3DIndependentAnimationStorage.cs │ │ │ │ │ │ ├── Point3DKeyFrameCollection.cs │ │ │ │ │ │ ├── PointAnimation.cs │ │ │ │ │ │ ├── PointAnimationBase.cs │ │ │ │ │ │ ├── PointAnimationClockResource.cs │ │ │ │ │ │ ├── PointAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── PointIndependentAnimationStorage.cs │ │ │ │ │ │ ├── PointKeyFrameCollection.cs │ │ │ │ │ │ ├── QuaternionAnimation.cs │ │ │ │ │ │ ├── QuaternionAnimationBase.cs │ │ │ │ │ │ ├── QuaternionAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── QuaternionIndependentAnimationStorage.cs │ │ │ │ │ │ ├── QuaternionKeyFrameCollection.cs │ │ │ │ │ │ ├── RectAnimation.cs │ │ │ │ │ │ ├── RectAnimationBase.cs │ │ │ │ │ │ ├── RectAnimationClockResource.cs │ │ │ │ │ │ ├── RectAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── RectIndependentAnimationStorage.cs │ │ │ │ │ │ ├── RectKeyFrameCollection.cs │ │ │ │ │ │ ├── Rotation3DAnimation.cs │ │ │ │ │ │ ├── Rotation3DAnimationBase.cs │ │ │ │ │ │ ├── Rotation3DAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Rotation3DKeyFrameCollection.cs │ │ │ │ │ │ ├── SingleAnimation.cs │ │ │ │ │ │ ├── SingleAnimationBase.cs │ │ │ │ │ │ ├── SingleAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── SingleKeyFrameCollection.cs │ │ │ │ │ │ ├── SizeAnimation.cs │ │ │ │ │ │ ├── SizeAnimationBase.cs │ │ │ │ │ │ ├── SizeAnimationClockResource.cs │ │ │ │ │ │ ├── SizeAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── SizeIndependentAnimationStorage.cs │ │ │ │ │ │ ├── SizeKeyFrameCollection.cs │ │ │ │ │ │ ├── SplineKeyFrames.cs │ │ │ │ │ │ ├── StringAnimationBase.cs │ │ │ │ │ │ ├── StringAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── StringKeyFrameCollection.cs │ │ │ │ │ │ ├── Timeline.cs │ │ │ │ │ │ ├── TimelineCollection.cs │ │ │ │ │ │ ├── TimelineGroup.cs │ │ │ │ │ │ ├── Vector3DAnimation.cs │ │ │ │ │ │ ├── Vector3DAnimationBase.cs │ │ │ │ │ │ ├── Vector3DAnimationUsingKeyFrames.cs │ │ │ │ │ │ ├── Vector3DIndependentAnimationStorage.cs │ │ │ │ │ │ ├── Vector3DKeyFrameCollection.cs │ │ │ │ │ │ ├── VectorAnimation.cs │ │ │ │ │ │ ├── VectorAnimationBase.cs │ │ │ │ │ │ ├── VectorAnimationUsingKeyFrames.cs │ │ │ │ │ │ └── VectorKeyFrameCollection.cs │ │ │ │ │ ├── HandoffBehavior.cs │ │ │ │ │ ├── IAnimatable.cs │ │ │ │ │ ├── IAnimation.cs │ │ │ │ │ ├── IClock.cs │ │ │ │ │ ├── IEasingFunction.cs │ │ │ │ │ ├── IKeyFrame.cs │ │ │ │ │ ├── IKeyFrameAnimation.cs │ │ │ │ │ ├── IndependentAnimationStorage.cs │ │ │ │ │ ├── IndependentlyAnimatedPropertyMetadata.cs │ │ │ │ │ ├── KeySpline.cs │ │ │ │ │ ├── KeySplineConverter.cs │ │ │ │ │ ├── KeyTime.cs │ │ │ │ │ ├── KeyTimeConverter.cs │ │ │ │ │ ├── KeyTimeType.cs │ │ │ │ │ ├── LinearQuaternionKeyFrame.cs │ │ │ │ │ ├── MatrixAnimationUsingPath.cs │ │ │ │ │ ├── ParallelTimeline.cs │ │ │ │ │ ├── PathAnimationSource.cs │ │ │ │ │ ├── PointAnimationUsingPath.cs │ │ │ │ │ ├── PowerEase.cs │ │ │ │ │ ├── QuadraticEase.cs │ │ │ │ │ ├── QuarticEase.cs │ │ │ │ │ ├── QuaternionAnimation.cs │ │ │ │ │ ├── QuinticEase.cs │ │ │ │ │ ├── RepeatBehavior.cs │ │ │ │ │ ├── RepeatBehaviorConverter.cs │ │ │ │ │ ├── ResolvedKeyFrameEntry.cs │ │ │ │ │ ├── SineEase.cs │ │ │ │ │ ├── SlipBehavior.cs │ │ │ │ │ ├── SplineQuaternionKeyFrame.cs │ │ │ │ │ ├── Subtree.cs │ │ │ │ │ ├── TimeEnumHelper.cs │ │ │ │ │ ├── TimeIntervalCollection.cs │ │ │ │ │ ├── TimeManager.cs │ │ │ │ │ ├── Timeline.cs │ │ │ │ │ ├── TimelineClockCollection.cs │ │ │ │ │ ├── TimelineGroup.cs │ │ │ │ │ └── WeakRefEnumerator.cs │ │ │ │ ├── ArcSegment.cs │ │ │ │ ├── BezierSegment.cs │ │ │ │ ├── BitmapCache.cs │ │ │ │ ├── BitmapCacheBrush.cs │ │ │ │ ├── BoundsDrawingContextWalker.cs │ │ │ │ ├── Brush.cs │ │ │ │ ├── ByteStreamGeometryContext.cs │ │ │ │ ├── CacheMode.cs │ │ │ │ ├── CapacityStreamGeometryContext.cs │ │ │ │ ├── ChannelManager.cs │ │ │ │ ├── CharacterMetrics.cs │ │ │ │ ├── CharacterMetricsDictionary.cs │ │ │ │ ├── Color.cs │ │ │ │ ├── ColorContext.cs │ │ │ │ ├── ColorContextHelper.cs │ │ │ │ ├── ColorConverter.cs │ │ │ │ ├── ColorTransform.cs │ │ │ │ ├── ColorTransformHelper.cs │ │ │ │ ├── CombinedGeometry.cs │ │ │ │ ├── Composition.cs │ │ │ │ ├── CompositionTarget.cs │ │ │ │ ├── ContainerVisual.cs │ │ │ │ ├── Converters │ │ │ │ │ └── Generated │ │ │ │ │ │ ├── BrushValueSerializer.cs │ │ │ │ │ │ ├── CacheModeValueSerializer.cs │ │ │ │ │ │ ├── DoubleCollectionValueSerializer.cs │ │ │ │ │ │ ├── GeometryValueSerializer.cs │ │ │ │ │ │ ├── Int32CollectionValueSerializer.cs │ │ │ │ │ │ ├── PathFigureCollectionValueSerializer.cs │ │ │ │ │ │ ├── PointCollectionValueSerializer.cs │ │ │ │ │ │ ├── TransformValueSerializer.cs │ │ │ │ │ │ └── VectorCollectionValueSerializer.cs │ │ │ │ ├── CultureSpecificStringDictionary.cs │ │ │ │ ├── DashStyle.cs │ │ │ │ ├── DashStyles.cs │ │ │ │ ├── Drawing.cs │ │ │ │ ├── DrawingBrush.cs │ │ │ │ ├── DrawingCollection.cs │ │ │ │ ├── DrawingContext.cs │ │ │ │ ├── DrawingContextDrawingContextWalker.cs │ │ │ │ ├── DrawingContextWalker.cs │ │ │ │ ├── DrawingDrawingContext.cs │ │ │ │ ├── DrawingGroup.cs │ │ │ │ ├── DrawingGroupDrawingContext.cs │ │ │ │ ├── DrawingImage.cs │ │ │ │ ├── DrawingServices.cs │ │ │ │ ├── DrawingVisual.cs │ │ │ │ ├── DrawingVisualDrawingContext.cs │ │ │ │ ├── Effects │ │ │ │ │ ├── BevelBitmapEffect.cs │ │ │ │ │ ├── BitmapEffect.cs │ │ │ │ │ ├── BitmapEffectGroup.cs │ │ │ │ │ ├── BitmapEffectInput.cs │ │ │ │ │ ├── BitmapEffectInputData.cs │ │ │ │ │ ├── BitmapEffectState.cs │ │ │ │ │ ├── BlurBitmapEffect.cs │ │ │ │ │ ├── BlurEffect.cs │ │ │ │ │ ├── DropShadowBitmapEffect.cs │ │ │ │ │ ├── DropShadowEffect.cs │ │ │ │ │ ├── Effect.cs │ │ │ │ │ ├── Generated │ │ │ │ │ │ ├── BevelBitmapEffect.cs │ │ │ │ │ │ ├── BitmapEffect.cs │ │ │ │ │ │ ├── BitmapEffectCollection.cs │ │ │ │ │ │ ├── BitmapEffectGroup.cs │ │ │ │ │ │ ├── BitmapEffectInput.cs │ │ │ │ │ │ ├── BlurBitmapEffect.cs │ │ │ │ │ │ ├── BlurEffect.cs │ │ │ │ │ │ ├── DropShadowBitmapEffect.cs │ │ │ │ │ │ ├── DropShadowEffect.cs │ │ │ │ │ │ ├── EdgeProfile.cs │ │ │ │ │ │ ├── Effect.cs │ │ │ │ │ │ ├── EmbossBitmapEffect.cs │ │ │ │ │ │ ├── ImplicitInputBrush.cs │ │ │ │ │ │ ├── KernelType.cs │ │ │ │ │ │ ├── OuterGlowBitmapEffect.cs │ │ │ │ │ │ ├── PixelShader.cs │ │ │ │ │ │ ├── RenderingBias.cs │ │ │ │ │ │ ├── ShaderEffect.cs │ │ │ │ │ │ └── ShaderRenderMode.cs │ │ │ │ │ ├── ImplicitInputBrush.cs │ │ │ │ │ ├── OuterGlowBitmapEffect.cs │ │ │ │ │ ├── PixelShader.cs │ │ │ │ │ ├── SamplingMode.cs │ │ │ │ │ ├── ShaderEffect.cs │ │ │ │ │ └── embossbitmapeffect.cs │ │ │ │ ├── EllipseGeometry.cs │ │ │ │ ├── EventProxy.cs │ │ │ │ ├── FactoryMaker.cs │ │ │ │ ├── FamilyMap.cs │ │ │ │ ├── FamilyMapCollection.cs │ │ │ │ ├── FamilyTypeface.cs │ │ │ │ ├── FamilyTypefaceCollection.cs │ │ │ │ ├── FontEmbeddingManager.cs │ │ │ │ ├── FontEmbeddingRights.cs │ │ │ │ ├── FontFamily.cs │ │ │ │ ├── FontFamilyConverter.cs │ │ │ │ ├── FontFamilyValueSerializer.cs │ │ │ │ ├── Fonts.cs │ │ │ │ ├── FormattedText.cs │ │ │ │ ├── GeneralTransform.cs │ │ │ │ ├── GeneralTransformGroup.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── AlignmentX.cs │ │ │ │ │ ├── AlignmentY.cs │ │ │ │ │ ├── ArcSegment.cs │ │ │ │ │ ├── BezierSegment.cs │ │ │ │ │ ├── BitmapCache.cs │ │ │ │ │ ├── BitmapCacheBrush.cs │ │ │ │ │ ├── BitmapScalingMode.cs │ │ │ │ │ ├── Brush.cs │ │ │ │ │ ├── BrushConverter.cs │ │ │ │ │ ├── BrushMappingMode.cs │ │ │ │ │ ├── CacheMode.cs │ │ │ │ │ ├── CacheModeConverter.cs │ │ │ │ │ ├── CachingHint.cs │ │ │ │ │ ├── ClearTypeHint.cs │ │ │ │ │ ├── ColorCollectionConverter.cs │ │ │ │ │ ├── ColorInterpolationMode.cs │ │ │ │ │ ├── CombinedGeometry.cs │ │ │ │ │ ├── DashStyle.cs │ │ │ │ │ ├── DoubleCollection.cs │ │ │ │ │ ├── DoubleCollectionConverter.cs │ │ │ │ │ ├── Drawing.cs │ │ │ │ │ ├── DrawingBrush.cs │ │ │ │ │ ├── DrawingCollection.cs │ │ │ │ │ ├── DrawingContext.cs │ │ │ │ │ ├── DrawingContextDrawingContextWalker.cs │ │ │ │ │ ├── DrawingContextWalker.cs │ │ │ │ │ ├── DrawingGroup.cs │ │ │ │ │ ├── DrawingImage.cs │ │ │ │ │ ├── EdgeMode.cs │ │ │ │ │ ├── EllipseGeometry.cs │ │ │ │ │ ├── FillRule.cs │ │ │ │ │ ├── GeneralTransform.cs │ │ │ │ │ ├── GeneralTransformCollection.cs │ │ │ │ │ ├── GeneralTransformGroup.cs │ │ │ │ │ ├── Geometry.cs │ │ │ │ │ ├── GeometryCollection.cs │ │ │ │ │ ├── GeometryCombineMode.cs │ │ │ │ │ ├── GeometryConverter.cs │ │ │ │ │ ├── GeometryDrawing.cs │ │ │ │ │ ├── GeometryGroup.cs │ │ │ │ │ ├── GlyphRunDrawing.cs │ │ │ │ │ ├── GradientBrush.cs │ │ │ │ │ ├── GradientSpreadMethod.cs │ │ │ │ │ ├── GradientStop.cs │ │ │ │ │ ├── GradientStopCollection.cs │ │ │ │ │ ├── GuidelineSet.cs │ │ │ │ │ ├── ImageBrush.cs │ │ │ │ │ ├── ImageDrawing.cs │ │ │ │ │ ├── ImageSource.cs │ │ │ │ │ ├── Int32Collection.cs │ │ │ │ │ ├── Int32CollectionConverter.cs │ │ │ │ │ ├── LineGeometry.cs │ │ │ │ │ ├── LineSegment.cs │ │ │ │ │ ├── LinearGradientBrush.cs │ │ │ │ │ ├── MatrixTransform.cs │ │ │ │ │ ├── MediaTimeline.cs │ │ │ │ │ ├── PathFigure.cs │ │ │ │ │ ├── PathFigureCollection.cs │ │ │ │ │ ├── PathFigureCollectionConverter.cs │ │ │ │ │ ├── PathGeometry.cs │ │ │ │ │ ├── PathSegment.cs │ │ │ │ │ ├── PathSegmentCollection.cs │ │ │ │ │ ├── Pen.cs │ │ │ │ │ ├── PenDashCap.cs │ │ │ │ │ ├── PenLineCap.cs │ │ │ │ │ ├── PenLineJoin.cs │ │ │ │ │ ├── PointCollection.cs │ │ │ │ │ ├── PointCollectionConverter.cs │ │ │ │ │ ├── PolyBezierSegment.cs │ │ │ │ │ ├── PolyBezierSegmentFigureLogic.cs │ │ │ │ │ ├── PolyLineSegment.cs │ │ │ │ │ ├── PolyLineSegmentFigureLogic.cs │ │ │ │ │ ├── PolyQuadraticBezierSegment.cs │ │ │ │ │ ├── PolyQuadraticBezierSegmentFigureLogic.cs │ │ │ │ │ ├── QuadraticBezierSegment.cs │ │ │ │ │ ├── RadialGradientBrush.cs │ │ │ │ │ ├── RectangleGeometry.cs │ │ │ │ │ ├── RenderData.cs │ │ │ │ │ ├── RenderDataDrawingContext.cs │ │ │ │ │ ├── RotateTransform.cs │ │ │ │ │ ├── Rotation.cs │ │ │ │ │ ├── ScaleTransform.cs │ │ │ │ │ ├── SkewTransform.cs │ │ │ │ │ ├── SolidColorBrush.cs │ │ │ │ │ ├── StreamGeometry.cs │ │ │ │ │ ├── Stretch.cs │ │ │ │ │ ├── SweepDirection.cs │ │ │ │ │ ├── TextEffect.cs │ │ │ │ │ ├── TextEffectCollection.cs │ │ │ │ │ ├── TextHintingMode.cs │ │ │ │ │ ├── TextRenderingMode.cs │ │ │ │ │ ├── TileBrush.cs │ │ │ │ │ ├── TileMode.cs │ │ │ │ │ ├── ToleranceType.cs │ │ │ │ │ ├── Transform.cs │ │ │ │ │ ├── TransformCollection.cs │ │ │ │ │ ├── TransformConverter.cs │ │ │ │ │ ├── TransformGroup.cs │ │ │ │ │ ├── TranslateTransform.cs │ │ │ │ │ ├── VectorCollection.cs │ │ │ │ │ ├── VectorCollectionConverter.cs │ │ │ │ │ ├── VideoDrawing.cs │ │ │ │ │ └── VisualBrush.cs │ │ │ │ ├── Geometry.cs │ │ │ │ ├── GeometryCollection.cs │ │ │ │ ├── GeometryDrawing.cs │ │ │ │ ├── GeometryGroup.cs │ │ │ │ ├── GeometryHitTestParameters.cs │ │ │ │ ├── GeometryHitTestResult.cs │ │ │ │ ├── GlyphCache.cs │ │ │ │ ├── GlyphRun.cs │ │ │ │ ├── GlyphRunDrawing.cs │ │ │ │ ├── GlyphTypeface.cs │ │ │ │ ├── GlyphsSerializer.cs │ │ │ │ ├── GradientBrush.cs │ │ │ │ ├── GradientStop.cs │ │ │ │ ├── GuidelineCollection.cs │ │ │ │ ├── HitTestDrawingContextWalker.cs │ │ │ │ ├── HitTestFilterBehavior.cs │ │ │ │ ├── HitTestParameters.cs │ │ │ │ ├── HitTestResult.cs │ │ │ │ ├── HitTestResultBehavior.cs │ │ │ │ ├── HitTestWithGeometryDrawingContextWalker.cs │ │ │ │ ├── HitTestWithPointDrawingContextWalker.cs │ │ │ │ ├── HostVisual.cs │ │ │ │ ├── ICompositionTarget.cs │ │ │ │ ├── ICyclicBrush.cs │ │ │ │ ├── IDrawingContent.cs │ │ │ │ ├── IFreezeFreezables.cs │ │ │ │ ├── ImageBrush.cs │ │ │ │ ├── ImageDrawing.cs │ │ │ │ ├── ImageMetadata.cs │ │ │ │ ├── ImageSource.cs │ │ │ │ ├── ImageSourceConverter.cs │ │ │ │ ├── ImageSourceValueSerializer.cs │ │ │ │ ├── Imaging │ │ │ │ │ ├── BitmapCacheOption.cs │ │ │ │ │ ├── BitmapCodecInfo.cs │ │ │ │ │ ├── BitmapCodecInfoInternal.cs │ │ │ │ │ ├── BitmapCreateOptions.cs │ │ │ │ │ ├── BitmapDecoder.cs │ │ │ │ │ ├── BitmapDownload.cs │ │ │ │ │ ├── BitmapEncoder.cs │ │ │ │ │ ├── BitmapFrame.cs │ │ │ │ │ ├── BitmapFrameDecode.cs │ │ │ │ │ ├── BitmapFrameEncode.cs │ │ │ │ │ ├── BitmapImage.cs │ │ │ │ │ ├── BitmapInitialize.cs │ │ │ │ │ ├── BitmapMetadata.cs │ │ │ │ │ ├── BitmapMetadataBlob.cs │ │ │ │ │ ├── BitmapMetadataEnumerator.cs │ │ │ │ │ ├── BitmapPalette.cs │ │ │ │ │ ├── BitmapPalettes.cs │ │ │ │ │ ├── BitmapSizeOptions.cs │ │ │ │ │ ├── BitmapSource.cs │ │ │ │ │ ├── BitmapSourceSafeMILHandle.cs │ │ │ │ │ ├── BitmapVisualManager.cs │ │ │ │ │ ├── BmpBitmapDecoder.cs │ │ │ │ │ ├── BmpBitmapEncoder.cs │ │ │ │ │ ├── CachedBitmap.cs │ │ │ │ │ ├── ColorConvertedBitmap.cs │ │ │ │ │ ├── CroppedBitmap.cs │ │ │ │ │ ├── DownloadProgressEventArgs.cs │ │ │ │ │ ├── FormatConvertedBitmap.cs │ │ │ │ │ ├── Generated │ │ │ │ │ │ ├── BitmapImage.cs │ │ │ │ │ │ ├── ColorConvertedBitmap.cs │ │ │ │ │ │ ├── CroppedBitmap.cs │ │ │ │ │ │ ├── FormatConvertedBitmap.cs │ │ │ │ │ │ └── TransformedBitmap.cs │ │ │ │ │ ├── GifBitmapDecoder.cs │ │ │ │ │ ├── GifBitmapEncoder.cs │ │ │ │ │ ├── IconBitmapDecoder.cs │ │ │ │ │ ├── ImagingCache.cs │ │ │ │ │ ├── InplaceBitmapMetadataWriter.cs │ │ │ │ │ ├── InteropBitmapSource.cs │ │ │ │ │ ├── JpegBitmapDecoder.cs │ │ │ │ │ ├── JpegBitmapEncoder.cs │ │ │ │ │ ├── LateBoundBitmapDecoder.cs │ │ │ │ │ ├── PngBitmapDecoder.cs │ │ │ │ │ ├── PngBitmapEncoder.cs │ │ │ │ │ ├── PropVariant.cs │ │ │ │ │ ├── RenderTargetBitmap.cs │ │ │ │ │ ├── TiffBitmapDecoder.cs │ │ │ │ │ ├── TiffBitmapEncoder.cs │ │ │ │ │ ├── TransformedBitmap.cs │ │ │ │ │ ├── UnknownBitmapDecoder.cs │ │ │ │ │ ├── UnknownBitmapEncoder.cs │ │ │ │ │ ├── UnmanagedBitmapWrapper.cs │ │ │ │ │ ├── WmpBitmapDecoder.cs │ │ │ │ │ ├── WmpBitmapEncoder.cs │ │ │ │ │ └── WriteableBitmap.cs │ │ │ │ ├── IntersectionDetail.cs │ │ │ │ ├── InvalidWMPVersionException.cs │ │ │ │ ├── Invokable.cs │ │ │ │ ├── Knowncolors.cs │ │ │ │ ├── LineGeometry.cs │ │ │ │ ├── LineSegment.cs │ │ │ │ ├── LinearGradientBrush.cs │ │ │ │ ├── MILUtilities.cs │ │ │ │ ├── MatrixStack.cs │ │ │ │ ├── MatrixTransform.cs │ │ │ │ ├── MediaContext.cs │ │ │ │ ├── MediaContextNotificationWindow.cs │ │ │ │ ├── MediaPlayer.cs │ │ │ │ ├── MediaPlayerState.cs │ │ │ │ ├── MediaSystem.cs │ │ │ │ ├── MediaTimeline.cs │ │ │ │ ├── NativeMethodsMilCoreApi.cs │ │ │ │ ├── Parsers.cs │ │ │ │ ├── ParsersCommon.cs │ │ │ │ ├── PathFigure.cs │ │ │ │ ├── PathFigureCollection.cs │ │ │ │ ├── PathGeometry.cs │ │ │ │ ├── PathSegment.cs │ │ │ │ ├── PathSegmentCollection.cs │ │ │ │ ├── PathStreamGeometryContext.cs │ │ │ │ ├── Pen.cs │ │ │ │ ├── PixelFormat.cs │ │ │ │ ├── PixelFormatConverter.cs │ │ │ │ ├── PixelFormats.cs │ │ │ │ ├── PointCollection.cs │ │ │ │ ├── PointHitTestParameters.cs │ │ │ │ ├── PointHitTestResult.cs │ │ │ │ ├── PolyBezierSegment.cs │ │ │ │ ├── PolyLineSegment.cs │ │ │ │ ├── PolyQuadraticBezierSegment.cs │ │ │ │ ├── QuadraticBezierSegment.cs │ │ │ │ ├── RadialGradientBrush.cs │ │ │ │ ├── RectangleGeometry.cs │ │ │ │ ├── RenderCapability.cs │ │ │ │ ├── RenderContext.cs │ │ │ │ ├── RenderData.cs │ │ │ │ ├── RenderDataDrawingContext.cs │ │ │ │ ├── RenderOptions.cs │ │ │ │ ├── Renderer.cs │ │ │ │ ├── RenderingEventArgs.cs │ │ │ │ ├── RequestCachePolicyConverter.cs │ │ │ │ ├── Resources │ │ │ │ │ └── ColorProfiles │ │ │ │ │ │ ├── ColorProfiles.resx │ │ │ │ │ │ └── sRGB.icm │ │ │ │ ├── RotateTransform.cs │ │ │ │ ├── SafeMILHandle.cs │ │ │ │ ├── SafeMILHandleMemoryPressure.cs │ │ │ │ ├── SafeNativeMethodsMilCoreApi.cs │ │ │ │ ├── SafeReversePInvokeHandle.cs │ │ │ │ ├── ScaleTransform.cs │ │ │ │ ├── SkewTransform.cs │ │ │ │ ├── SolidColorBrush.cs │ │ │ │ ├── StreamAsIStream.cs │ │ │ │ ├── StreamGeometry.cs │ │ │ │ ├── StreamGeometryContext.cs │ │ │ │ ├── StyleSimulations.cs │ │ │ │ ├── TextEffect.cs │ │ │ │ ├── TextEffectCollection.cs │ │ │ │ ├── TileBrush.cs │ │ │ │ ├── Transform.cs │ │ │ │ ├── TransformGroup.cs │ │ │ │ ├── TranslateTransform.cs │ │ │ │ ├── Typeface.cs │ │ │ │ ├── UniqueEventHelper.cs │ │ │ │ ├── UnsafeNativeMethodsMilCoreApi.cs │ │ │ │ ├── VideoDrawing.cs │ │ │ │ ├── Visual.cs │ │ │ │ ├── VisualBrush.cs │ │ │ │ ├── VisualCollection.cs │ │ │ │ ├── VisualFlags.cs │ │ │ │ ├── VisualProxy.cs │ │ │ │ ├── VisualProxyFlags.cs │ │ │ │ ├── VisualTarget.cs │ │ │ │ ├── VisualTreeHelper.cs │ │ │ │ ├── brushes.cs │ │ │ │ ├── mediaclock.cs │ │ │ │ ├── mediaeventargs.cs │ │ │ │ ├── mediaeventshelper.cs │ │ │ │ ├── printcontext.cs │ │ │ │ ├── safemediahandle.cs │ │ │ │ └── textformatting │ │ │ │ │ ├── CharacterBufferReference.cs │ │ │ │ │ ├── CharacterHit.cs │ │ │ │ │ ├── CharacterString.cs │ │ │ │ │ ├── CultureSpecificCharacterBufferRange.cs │ │ │ │ │ ├── IndexedGlyphRun.cs │ │ │ │ │ ├── MinMaxParagraphWidth.cs │ │ │ │ │ ├── NumberSubstitution.cs │ │ │ │ │ ├── TextBounds.cs │ │ │ │ │ ├── TextBreakpoint.cs │ │ │ │ │ ├── TextCharacters.cs │ │ │ │ │ ├── TextCollapsingProperties.cs │ │ │ │ │ ├── TextEmbeddedObject.cs │ │ │ │ │ ├── TextEndOfLine.cs │ │ │ │ │ ├── TextEndOfParagraph.cs │ │ │ │ │ ├── TextEndOfSegment.cs │ │ │ │ │ ├── TextFormatter.cs │ │ │ │ │ ├── TextFormatterContext.cs │ │ │ │ │ ├── TextHidden.cs │ │ │ │ │ ├── TextLexicalBreaks.cs │ │ │ │ │ ├── TextLexicalService.cs │ │ │ │ │ ├── TextLine.cs │ │ │ │ │ ├── TextLineBreak.cs │ │ │ │ │ ├── TextMarkerProperties.cs │ │ │ │ │ ├── TextModifier.cs │ │ │ │ │ ├── TextModifierScope.cs │ │ │ │ │ ├── TextParagraphCache.cs │ │ │ │ │ ├── TextParagraphProperties.cs │ │ │ │ │ ├── TextRun.cs │ │ │ │ │ ├── TextRunCache.cs │ │ │ │ │ ├── TextRunProperties.cs │ │ │ │ │ ├── TextRunTypographyProperties.cs │ │ │ │ │ ├── TextSimpleMarkerProperties.cs │ │ │ │ │ ├── TextSource.cs │ │ │ │ │ ├── TextSpan.cs │ │ │ │ │ ├── TextTabProperties.cs │ │ │ │ │ ├── TextTrailingCharacterEllipsis.cs │ │ │ │ │ └── TextTrailingWordEllipsis.cs │ │ │ │ ├── Media3D │ │ │ │ ├── AffineTransform3D.cs │ │ │ │ ├── AmbientLight.cs │ │ │ │ ├── AxisAngleRotation3D.cs │ │ │ │ ├── Camera.cs │ │ │ │ ├── ContainerUIElement3D.cs │ │ │ │ ├── Converters │ │ │ │ │ └── Generated │ │ │ │ │ │ ├── Matrix3DValueSerializer.cs │ │ │ │ │ │ ├── Point3DCollectionValueSerializer.cs │ │ │ │ │ │ ├── Point3DValueSerializer.cs │ │ │ │ │ │ ├── Point4DValueSerializer.cs │ │ │ │ │ │ ├── QuaternionValueSerializer.cs │ │ │ │ │ │ ├── Rect3DValueSerializer.cs │ │ │ │ │ │ ├── Size3DValueSerializer.cs │ │ │ │ │ │ ├── Vector3DCollectionValueSerializer.cs │ │ │ │ │ │ └── Vector3DValueSerializer.cs │ │ │ │ ├── DiffuseMaterial.cs │ │ │ │ ├── DirectionalLight.cs │ │ │ │ ├── EmissiveMaterial.cs │ │ │ │ ├── GeneralTransform2DTo3D.cs │ │ │ │ ├── GeneralTransform3D.cs │ │ │ │ ├── GeneralTransform3DGroup.cs │ │ │ │ ├── GeneralTransform3DTo2D.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── AffineTransform3D.cs │ │ │ │ │ ├── AmbientLight.cs │ │ │ │ │ ├── AxisAngleRotation3D.cs │ │ │ │ │ ├── Camera.cs │ │ │ │ │ ├── DiffuseMaterial.cs │ │ │ │ │ ├── DirectionalLight.cs │ │ │ │ │ ├── EmissiveMaterial.cs │ │ │ │ │ ├── GeneralTransform3D.cs │ │ │ │ │ ├── GeneralTransform3DCollection.cs │ │ │ │ │ ├── GeneralTransform3DGroup.cs │ │ │ │ │ ├── Geometry3D.cs │ │ │ │ │ ├── GeometryModel3D.cs │ │ │ │ │ ├── Light.cs │ │ │ │ │ ├── Material.cs │ │ │ │ │ ├── MaterialCollection.cs │ │ │ │ │ ├── MaterialGroup.cs │ │ │ │ │ ├── Matrix3D.cs │ │ │ │ │ ├── Matrix3DConverter.cs │ │ │ │ │ ├── MatrixCamera.cs │ │ │ │ │ ├── MatrixTransform3D.cs │ │ │ │ │ ├── MeshGeometry3D.cs │ │ │ │ │ ├── Model3D.cs │ │ │ │ │ ├── Model3DCollection.cs │ │ │ │ │ ├── Model3DGroup.cs │ │ │ │ │ ├── OrthographicCamera.cs │ │ │ │ │ ├── PerspectiveCamera.cs │ │ │ │ │ ├── Point3D.cs │ │ │ │ │ ├── Point3DCollection.cs │ │ │ │ │ ├── Point3DCollectionConverter.cs │ │ │ │ │ ├── Point3DConverter.cs │ │ │ │ │ ├── Point4D.cs │ │ │ │ │ ├── Point4DConverter.cs │ │ │ │ │ ├── PointLight.cs │ │ │ │ │ ├── PointLightBase.cs │ │ │ │ │ ├── ProjectionCamera.cs │ │ │ │ │ ├── Quaternion.cs │ │ │ │ │ ├── QuaternionConverter.cs │ │ │ │ │ ├── QuaternionRotation3D.cs │ │ │ │ │ ├── Rect3D.cs │ │ │ │ │ ├── Rect3DConverter.cs │ │ │ │ │ ├── RotateTransform3D.cs │ │ │ │ │ ├── Rotation3D.cs │ │ │ │ │ ├── ScaleTransform3D.cs │ │ │ │ │ ├── Size3D.cs │ │ │ │ │ ├── Size3DConverter.cs │ │ │ │ │ ├── SpecularMaterial.cs │ │ │ │ │ ├── SpotLight.cs │ │ │ │ │ ├── Transform3D.cs │ │ │ │ │ ├── Transform3DCollection.cs │ │ │ │ │ ├── Transform3DGroup.cs │ │ │ │ │ ├── TranslateTransform3D.cs │ │ │ │ │ ├── Vector3D.cs │ │ │ │ │ ├── Vector3DCollection.cs │ │ │ │ │ ├── Vector3DCollectionConverter.cs │ │ │ │ │ ├── Vector3DConverter.cs │ │ │ │ │ └── Visual3D.cs │ │ │ │ ├── Geometry3D.cs │ │ │ │ ├── GeometryModel3D.cs │ │ │ │ ├── HitTestParameters3D.cs │ │ │ │ ├── Light.cs │ │ │ │ ├── Material.cs │ │ │ │ ├── MaterialGroup.cs │ │ │ │ ├── Matrix3D.cs │ │ │ │ ├── Matrix3DStack.cs │ │ │ │ ├── MatrixCamera.cs │ │ │ │ ├── MatrixTransform3D.cs │ │ │ │ ├── MeshGeometry3D.cs │ │ │ │ ├── Model3D.cs │ │ │ │ ├── Model3DGroup.cs │ │ │ │ ├── ModelUIElement3D.cs │ │ │ │ ├── ModelVisual3D.cs │ │ │ │ ├── OrthographicCamera.cs │ │ │ │ ├── PerspectiveCamera.cs │ │ │ │ ├── Point3D.cs │ │ │ │ ├── Point3DCollection.cs │ │ │ │ ├── Point4D.cs │ │ │ │ ├── PointLight.cs │ │ │ │ ├── PointLightBase.cs │ │ │ │ ├── ProjectionCamera.cs │ │ │ │ ├── Quaternion.cs │ │ │ │ ├── QuaternionRotation3D.cs │ │ │ │ ├── Ray3DHitTestResult.cs │ │ │ │ ├── RayHitTestParameters.cs │ │ │ │ ├── RayMeshGeometry3DHitTestResult.cs │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Rect3D.cs │ │ │ │ ├── RotateTransform3D.cs │ │ │ │ ├── Rotation3D.cs │ │ │ │ ├── ScaleTransform3D.cs │ │ │ │ ├── Size3D.cs │ │ │ │ ├── SpecularMaterial.cs │ │ │ │ ├── SpotLight.cs │ │ │ │ ├── Transform3D.cs │ │ │ │ ├── Transform3DGroup.cs │ │ │ │ ├── TranslateTransform3D.cs │ │ │ │ ├── Vector3D.cs │ │ │ │ ├── Vector3dCollection.cs │ │ │ │ ├── Viewport2DVisual3D.cs │ │ │ │ ├── Viewport3DVisual.cs │ │ │ │ ├── Visual3D.cs │ │ │ │ └── Visual3DCollection.cs │ │ │ │ ├── Modifiability.cs │ │ │ │ ├── MouseCaptureWithinProperty.cs │ │ │ │ ├── MouseOverProperty.cs │ │ │ │ ├── Navigation │ │ │ │ └── BaseUriHelper.cs │ │ │ │ ├── Nrbf │ │ │ │ ├── SerializationRecordExtensions.cs │ │ │ │ └── WpfNrbfSerializer.cs │ │ │ │ ├── Ole │ │ │ │ ├── DataObjectAdapter.cs │ │ │ │ └── WpfOleServices.cs │ │ │ │ ├── OleServicesContext.cs │ │ │ │ ├── PresentationSource.cs │ │ │ │ ├── QueryContinueDragEventArgs.cs │ │ │ │ ├── QueryContinueDragEventHandler.cs │ │ │ │ ├── ReadOnlyPropertyMetadata.cs │ │ │ │ ├── Readability.cs │ │ │ │ ├── Resources │ │ │ │ └── AssemblyAssociatedContentFileAttribute.cs │ │ │ │ ├── ReverseInheritProperty.cs │ │ │ │ ├── RouteItem.cs │ │ │ │ ├── RoutedEvent.cs │ │ │ │ ├── RoutedEventArgs.cs │ │ │ │ ├── RoutedEventHandlerInfo.cs │ │ │ │ ├── RoutingStrategy.cs │ │ │ │ ├── SizeChangedInfo.cs │ │ │ │ ├── SizeToContent.cs │ │ │ │ ├── SourceChangedEventArgs.cs │ │ │ │ ├── SourceChangedEventHandler.cs │ │ │ │ ├── SourceItem.cs │ │ │ │ ├── StylusCaptureWithinProperty.cs │ │ │ │ ├── StylusOverProperty.cs │ │ │ │ ├── TextAndFontProperties.cs │ │ │ │ ├── TextDataFormat.cs │ │ │ │ ├── TextDecoration.cs │ │ │ │ ├── TextDecorationCollection.cs │ │ │ │ ├── TextDecorationCollectionConverter.cs │ │ │ │ ├── TextDecorations.cs │ │ │ │ ├── UIElement.cs │ │ │ │ ├── UIElement3D.cs │ │ │ │ ├── UIPropertyMetadata.cs │ │ │ │ ├── clipboard.cs │ │ │ │ └── dataobject.cs │ │ ├── cstemplate.pl │ │ └── ref │ │ │ ├── PresentationCore-ref.csproj │ │ │ └── PresentationCore.cs │ ├── PresentationFramework │ │ ├── AvTraceMessages.txt │ │ ├── AvTraceMessages.xml │ │ ├── GlobalUsings.cs │ │ ├── HashHelper.cs │ │ ├── LibraryAssemblyInfo.cs │ │ ├── MS │ │ │ ├── Internal │ │ │ │ ├── AnimatedTypeHelpers.cs │ │ │ │ ├── Annotations │ │ │ │ │ ├── Anchoring │ │ │ │ │ │ ├── AttachedAnnotation.cs │ │ │ │ │ │ ├── DataIdProcessor.cs │ │ │ │ │ │ ├── FixedPageProcessor.cs │ │ │ │ │ │ ├── FixedTextSelectionProcessor.cs │ │ │ │ │ │ ├── LocatorManager.cs │ │ │ │ │ │ ├── PathNode.cs │ │ │ │ │ │ ├── SelectionProcessor.cs │ │ │ │ │ │ ├── SubTreeProcessor.cs │ │ │ │ │ │ ├── TextSelectionHelper.cs │ │ │ │ │ │ ├── TextSelectionProcessor.cs │ │ │ │ │ │ ├── TextViewSelectionProcessor.cs │ │ │ │ │ │ └── TreeNodeSelectionProcessor.cs │ │ │ │ │ ├── AnnotationMap.cs │ │ │ │ │ ├── AnnotationObservableCollection.cs │ │ │ │ │ ├── AnnotationResourceCollection.cs │ │ │ │ │ ├── AnnotationXmlConstants.cs │ │ │ │ │ ├── AttachedAnnotation.cs │ │ │ │ │ ├── AttachedAnnotationChangedEventArgs.cs │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── AdornerPresentationContext.cs │ │ │ │ │ │ ├── AnnotationAdorner.cs │ │ │ │ │ │ ├── AnnotationComponentManager.cs │ │ │ │ │ │ ├── AnnotationHighlightLayer.cs │ │ │ │ │ │ ├── HighlightComponent.cs │ │ │ │ │ │ ├── IAnnotationComponent.cs │ │ │ │ │ │ ├── IHighlightRange.cs │ │ │ │ │ │ ├── MarkedHighlightComponent.cs │ │ │ │ │ │ └── PresentationContext.cs │ │ │ │ │ ├── ObservableDictionary.cs │ │ │ │ │ ├── OwnedObject.cs │ │ │ │ │ ├── Serializer.cs │ │ │ │ │ ├── Storage │ │ │ │ │ │ └── StoreAnnotationsMap.cs │ │ │ │ │ ├── TextAnchor.cs │ │ │ │ │ └── XmlElementCollection.cs │ │ │ │ ├── AppModel │ │ │ │ │ ├── AppModelKnownContentFactory.cs │ │ │ │ │ ├── AppSecurityManager.cs │ │ │ │ │ ├── BamlStream.cs │ │ │ │ │ ├── ComGuids.cs │ │ │ │ │ ├── ContentFilePart.cs │ │ │ │ │ ├── IBrowserHostServices.cs │ │ │ │ │ ├── IContentContainer.cs │ │ │ │ │ ├── INavigator.cs │ │ │ │ │ ├── IconHelper.cs │ │ │ │ │ ├── JournalNavigationScope.cs │ │ │ │ │ ├── Journaling.cs │ │ │ │ │ ├── MimeObjectFactory.cs │ │ │ │ │ ├── NavigationHelper.cs │ │ │ │ │ ├── ProgressPage.cs │ │ │ │ │ ├── RequestStatusBarUpdateEventArgs.cs │ │ │ │ │ ├── ResourceContainer.cs │ │ │ │ │ ├── ResourcePart.cs │ │ │ │ │ ├── ReturnEventSaver.cs │ │ │ │ │ └── ShellProvider.cs │ │ │ │ ├── Commands │ │ │ │ │ └── CommandHelpers.cs │ │ │ │ ├── Controls │ │ │ │ │ ├── ActiveXContainer.cs │ │ │ │ │ ├── ActiveXHelper.cs │ │ │ │ │ ├── ActiveXSite.cs │ │ │ │ │ ├── ConnectionPointCookie.cs │ │ │ │ │ ├── CustomCategoryAttribute.cs │ │ │ │ │ ├── EmptyEnumerable.cs │ │ │ │ │ ├── EmptyEnumerator.cs │ │ │ │ │ ├── EnumUnknown.cs │ │ │ │ │ ├── IGeneratorHost.cs │ │ │ │ │ ├── InkCanvasFeedbackAdorner.cs │ │ │ │ │ ├── InkCanvasInnerCanvas.cs │ │ │ │ │ ├── InkCanvasSelectionAdorner.cs │ │ │ │ │ ├── InnerItemCollectionView.cs │ │ │ │ │ ├── ModelTreeEnumerator.cs │ │ │ │ │ ├── StickyNote │ │ │ │ │ │ ├── StickyNoteAnnotations.cs │ │ │ │ │ │ ├── StickyNoteContentControl.cs │ │ │ │ │ │ └── StickyNoteHelper.cs │ │ │ │ │ ├── TemplatedAdorner.cs │ │ │ │ │ ├── ValidationErrorCollection.cs │ │ │ │ │ ├── ValidationRuleCollection.cs │ │ │ │ │ ├── WebBrowserEvent.cs │ │ │ │ │ └── WebBrowserSite.cs │ │ │ │ ├── Data │ │ │ │ │ ├── AccessorTable.cs │ │ │ │ │ ├── AsyncDataRequest.cs │ │ │ │ │ ├── BindingCollection.cs │ │ │ │ │ ├── BindingExpressionUncommonField.cs │ │ │ │ │ ├── BindingValueChangedEventArgs.cs │ │ │ │ │ ├── BindingWorker.cs │ │ │ │ │ ├── ClrBindingWorker.cs │ │ │ │ │ ├── CollectionViewGroupInternal.cs │ │ │ │ │ ├── CollectionViewGroupRoot.cs │ │ │ │ │ ├── CollectionViewProxy.cs │ │ │ │ │ ├── CommitManager.cs │ │ │ │ │ ├── CompositeCollectionView.cs │ │ │ │ │ ├── DataBindEngine.cs │ │ │ │ │ ├── DataBindOperation.cs │ │ │ │ │ ├── DataExtensionMethods.cs │ │ │ │ │ ├── DefaultAsyncDataDispatcher.cs │ │ │ │ │ ├── DefaultValueConverter.cs │ │ │ │ │ ├── DifferencingCollection.cs │ │ │ │ │ ├── DisplayMemberTemplateSelector.cs │ │ │ │ │ ├── DynamicObjectAccessor.cs │ │ │ │ │ ├── DynamicValueConverter.cs │ │ │ │ │ ├── EnumerableCollectionView.cs │ │ │ │ │ ├── IAsyncDataDispatcher.cs │ │ │ │ │ ├── IndexedEnumerable.cs │ │ │ │ │ ├── IndexerPropertyInfo.cs │ │ │ │ │ ├── LiveShapingBlock.cs │ │ │ │ │ ├── LiveShapingItem.cs │ │ │ │ │ ├── LiveShapingList.cs │ │ │ │ │ ├── LiveShapingTree.cs │ │ │ │ │ ├── ObjectRef.cs │ │ │ │ │ ├── ParameterCollection.cs │ │ │ │ │ ├── PathParser.cs │ │ │ │ │ ├── PropertyPathWorker.cs │ │ │ │ │ ├── RBFinger.cs │ │ │ │ │ ├── RBNode.cs │ │ │ │ │ ├── RBTree.cs │ │ │ │ │ ├── SortFieldComparer.cs │ │ │ │ │ ├── StaticPropertyChangedEventManager.cs │ │ │ │ │ ├── ValueChangedEventManager.cs │ │ │ │ │ ├── ValueTable.cs │ │ │ │ │ ├── ViewManager.cs │ │ │ │ │ ├── XDeferredAxisSource.cs │ │ │ │ │ ├── XmlBindingWorker.cs │ │ │ │ │ ├── XmlDataCollection.cs │ │ │ │ │ └── XmlNodeChangedEventManager.cs │ │ │ │ ├── DataStreams.cs │ │ │ │ ├── FrameworkAppContextSwitches.cs │ │ │ │ ├── FrameworkObject.cs │ │ │ │ ├── Generated │ │ │ │ │ └── AvTraceMessages.cs │ │ │ │ ├── Globalization │ │ │ │ │ ├── BamlConst.cs │ │ │ │ │ ├── BamlResourceContent.cs │ │ │ │ │ ├── BamlResourceDeserializer.cs │ │ │ │ │ ├── BamlResourceSerializer.cs │ │ │ │ │ ├── BamlTreeMap.cs │ │ │ │ │ ├── BamlTreeNode.cs │ │ │ │ │ ├── BamlTreeUpdater.cs │ │ │ │ │ ├── LocalizableResourceBuilder.cs │ │ │ │ │ └── LocalizationComments.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── IO │ │ │ │ │ └── Packaging │ │ │ │ │ │ ├── ByteStream.cs │ │ │ │ │ │ ├── ContentDescriptor.cs │ │ │ │ │ │ ├── CorePropertiesFilter.cs │ │ │ │ │ │ ├── EncryptedPackageFilter.cs │ │ │ │ │ │ ├── FixedPageContentExtractor.cs │ │ │ │ │ │ ├── IndexingContentUnit.cs │ │ │ │ │ │ ├── ManagedFilter.cs │ │ │ │ │ │ ├── ManagedIStream.cs │ │ │ │ │ │ ├── PackageFilter.cs │ │ │ │ │ │ ├── UnsafeIndexingFilterStream.cs │ │ │ │ │ │ ├── XamlFilter.cs │ │ │ │ │ │ ├── XmlFixedPageInfo.cs │ │ │ │ │ │ ├── XmlGlyphRunInfo.cs │ │ │ │ │ │ ├── XpsFilter.cs │ │ │ │ │ │ ├── indexingfiltermarshaler.cs │ │ │ │ │ │ └── initElementDictionary.cs │ │ │ │ ├── IWeakHashtable.cs │ │ │ │ ├── InheritedPropertyChangedEventArgs.cs │ │ │ │ ├── Ink │ │ │ │ │ ├── ClipboardData.cs │ │ │ │ │ ├── ClipboardProcessor.cs │ │ │ │ │ ├── DrawingAttributesDefaultValueFactory.cs │ │ │ │ │ ├── EditBehavior.cs │ │ │ │ │ ├── EditingCoordinator.cs │ │ │ │ │ ├── ElementsClipboardData.cs │ │ │ │ │ ├── EraserBehavior.cs │ │ │ │ │ ├── HighContrastHelper.cs │ │ │ │ │ ├── ISFClipboardData.cs │ │ │ │ │ ├── InkCanvasSelection.cs │ │ │ │ │ ├── InkCollectionBehavior.cs │ │ │ │ │ ├── LassoHelper.cs │ │ │ │ │ ├── LassoSelectionBehavior.cs │ │ │ │ │ ├── PenCursorManager.cs │ │ │ │ │ ├── SelectionEditingBehavior.cs │ │ │ │ │ ├── SelectionEditor.cs │ │ │ │ │ ├── StrokeCollectionDefaultValueFactory.cs │ │ │ │ │ ├── StylusEditingBehavior.cs │ │ │ │ │ ├── TextClipboardData.cs │ │ │ │ │ └── XamlClipboardData.cs │ │ │ │ ├── Interop │ │ │ │ │ ├── IndexingFilter.cs │ │ │ │ │ └── InternalDispatchObject.cs │ │ │ │ ├── KnownBoxes.cs │ │ │ │ ├── LayoutDump.cs │ │ │ │ ├── ListOfObject.cs │ │ │ │ ├── Markup │ │ │ │ │ └── StaticExtension.cs │ │ │ │ ├── MatchedTextInfo.cs │ │ │ │ ├── Navigation │ │ │ │ │ ├── BindStream.cs │ │ │ │ │ └── JournalEntryStack.cs │ │ │ │ ├── PrePostDescendentsWalker.cs │ │ │ │ ├── Printing │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── PrintDlgExMarshaler.cs │ │ │ │ │ ├── UnsafeNativeMethods.cs │ │ │ │ │ └── Win32PrintDialog.cs │ │ │ │ ├── Progressivity │ │ │ │ │ └── IByteRangeDownloaderService.cs │ │ │ │ ├── PtsHost │ │ │ │ │ ├── BackgroundFormatInfo.cs │ │ │ │ │ ├── BaseParaClient.cs │ │ │ │ │ ├── BaseParagraph.cs │ │ │ │ │ ├── BreakRecordTable.cs │ │ │ │ │ ├── CellParaClient.cs │ │ │ │ │ ├── CellParagraph.cs │ │ │ │ │ ├── ColumnPropertiesGroup.cs │ │ │ │ │ ├── ContainerParaClient.cs │ │ │ │ │ ├── ContainerParagraph.cs │ │ │ │ │ ├── DirtyTextRange.cs │ │ │ │ │ ├── DtrList.cs │ │ │ │ │ ├── EmbeddedObject.cs │ │ │ │ │ ├── ErrorHandler.cs │ │ │ │ │ ├── FigureHelper.cs │ │ │ │ │ ├── FigureParaClient.cs │ │ │ │ │ ├── FigureParagraph.cs │ │ │ │ │ ├── FloaterBaseParaClient.cs │ │ │ │ │ ├── FloaterBaseParagraph.cs │ │ │ │ │ ├── FloaterParaClient.cs │ │ │ │ │ ├── FloaterParagraph.cs │ │ │ │ │ ├── FlowDocumentPage.cs │ │ │ │ │ ├── Line.cs │ │ │ │ │ ├── LineBase.cs │ │ │ │ │ ├── LineBreakRecord.cs │ │ │ │ │ ├── LineVisual.cs │ │ │ │ │ ├── ListItemParagraph.cs │ │ │ │ │ ├── ListMarkerLine.cs │ │ │ │ │ ├── ListMarkerSourceInfo.cs │ │ │ │ │ ├── ListParaClient.cs │ │ │ │ │ ├── ListParagraph.cs │ │ │ │ │ ├── MarginCollapsingState.cs │ │ │ │ │ ├── MbpInfo.cs │ │ │ │ │ ├── OptimalBreakSession.cs │ │ │ │ │ ├── OptimalTextSource.cs │ │ │ │ │ ├── PageBreakRecord.cs │ │ │ │ │ ├── PageVisual.cs │ │ │ │ │ ├── ParagraphElementVisual.cs │ │ │ │ │ ├── ParagraphVisual.cs │ │ │ │ │ ├── Pts.cs │ │ │ │ │ ├── PtsCache.cs │ │ │ │ │ ├── PtsContext.cs │ │ │ │ │ ├── PtsHelper.cs │ │ │ │ │ ├── PtsHost.cs │ │ │ │ │ ├── PtsPage.cs │ │ │ │ │ ├── RowParagraph.cs │ │ │ │ │ ├── RowVisual.cs │ │ │ │ │ ├── RunClient.cs │ │ │ │ │ ├── Section.cs │ │ │ │ │ ├── SectionVisual.cs │ │ │ │ │ ├── Segment.cs │ │ │ │ │ ├── StructuralCache.cs │ │ │ │ │ ├── SubpageParaClient.cs │ │ │ │ │ ├── SubpageParagraph.cs │ │ │ │ │ ├── TableParaClient.cs │ │ │ │ │ ├── TableParagraph.cs │ │ │ │ │ ├── TextFormatterHost.cs │ │ │ │ │ ├── TextPanelDebug.cs │ │ │ │ │ ├── TextParaClient.cs │ │ │ │ │ ├── TextParaLineResult.cs │ │ │ │ │ ├── TextParagraph.cs │ │ │ │ │ ├── UIElementParaClient.cs │ │ │ │ │ ├── UIElementParagraph.cs │ │ │ │ │ ├── UnmanagedHandle.cs │ │ │ │ │ └── UpdateRecord.cs │ │ │ │ ├── PtsTable │ │ │ │ │ ├── CalculatedColumn.cs │ │ │ │ │ └── RowSpanVector.cs │ │ │ │ ├── SystemCoreHelper.cs │ │ │ │ ├── SystemDataHelper.cs │ │ │ │ ├── SystemXmlHelper.cs │ │ │ │ ├── SystemXmlLinqHelper.cs │ │ │ │ ├── Text │ │ │ │ │ ├── ComplexLine.cs │ │ │ │ │ ├── DynamicPropertyReader.cs │ │ │ │ │ ├── InlineObject.cs │ │ │ │ │ ├── Line.cs │ │ │ │ │ ├── LineMetrics.cs │ │ │ │ │ ├── LineProperties.cs │ │ │ │ │ ├── MarkerProperties.cs │ │ │ │ │ ├── SimpleLine.cs │ │ │ │ │ ├── TextDpi.cs │ │ │ │ │ ├── TextLineResult.cs │ │ │ │ │ ├── TextProperties.cs │ │ │ │ │ ├── TextSpanModifier.cs │ │ │ │ │ └── TypographyProperties.cs │ │ │ │ ├── TraceData.cs │ │ │ │ ├── TraceHwndHost.cs │ │ │ │ ├── TraceShell.cs │ │ │ │ ├── UncommonValueTable.cs │ │ │ │ ├── Utility │ │ │ │ │ ├── BindUriHelper.cs │ │ │ │ │ ├── MonitorWrapper.cs │ │ │ │ │ └── TraceLog.cs │ │ │ │ ├── WeakDictionary.cs │ │ │ │ ├── WeakHashSet.cs │ │ │ │ ├── WeakHashtable.cs │ │ │ │ ├── WeakObjectHashtable.cs │ │ │ │ ├── WindowsRuntime │ │ │ │ │ ├── Generated │ │ │ │ │ │ ├── WinRT.cs │ │ │ │ │ │ ├── WinRT │ │ │ │ │ │ │ ├── Attributes.cs │ │ │ │ │ │ │ ├── ComWrappersSupport.cs │ │ │ │ │ │ │ ├── ComWrappersSupport.net5.cs │ │ │ │ │ │ │ ├── Context.cs │ │ │ │ │ │ │ ├── ExceptionHelpers.cs │ │ │ │ │ │ │ ├── FundamentalMarshalers.cs │ │ │ │ │ │ │ ├── GuidGenerator.cs │ │ │ │ │ │ │ ├── IInspectable.cs │ │ │ │ │ │ │ ├── Interop │ │ │ │ │ │ │ │ ├── ExceptionErrorInfo.cs │ │ │ │ │ │ │ │ ├── IContextCallback.cs │ │ │ │ │ │ │ │ ├── IUnknownVftbl.cs │ │ │ │ │ │ │ │ └── StandardDelegates.cs │ │ │ │ │ │ │ ├── Marshalers.cs │ │ │ │ │ │ │ ├── ObjectReference.cs │ │ │ │ │ │ │ ├── Projections.cs │ │ │ │ │ │ │ ├── Projections │ │ │ │ │ │ │ │ ├── IEnumerable.cs │ │ │ │ │ │ │ │ └── IReadOnlyList.cs │ │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ │ ├── WinRT_Interop.cs │ │ │ │ │ │ ├── Windows.Data.Text.cs │ │ │ │ │ │ └── Windows.Globalization.cs │ │ │ │ │ └── Windows │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── Text │ │ │ │ │ │ └── WordsSegmenter.cs │ │ │ │ └── documents │ │ │ │ │ ├── Application │ │ │ │ │ └── DocumentApplicationJournalEntry.cs │ │ │ │ │ ├── ColumnResult.cs │ │ │ │ │ ├── ContentElementCollection.cs │ │ │ │ │ ├── ContentHostHelper.cs │ │ │ │ │ ├── DocumentGrid.cs │ │ │ │ │ ├── DocumentGridContextMenu.cs │ │ │ │ │ ├── DocumentGridPage.cs │ │ │ │ │ ├── DocumentPageHost.cs │ │ │ │ │ ├── DocumentPageTextView.cs │ │ │ │ │ ├── DocumentViewerConstants.cs │ │ │ │ │ ├── DocumentViewerHelper.cs │ │ │ │ │ ├── DocumentsTrace.cs │ │ │ │ │ ├── FixedDocumentPaginator.cs │ │ │ │ │ ├── FixedDocumentSequencePaginator.cs │ │ │ │ │ ├── FlowDocumentFormatter.cs │ │ │ │ │ ├── FlowDocumentPaginator.cs │ │ │ │ │ ├── FlowDocumentView.cs │ │ │ │ │ ├── HostedElements.cs │ │ │ │ │ ├── IAcceptInsertion.cs │ │ │ │ │ ├── IDocumentScrollInfo.cs │ │ │ │ │ ├── IFlowDocumentFormatter.cs │ │ │ │ │ ├── IFlowDocumentViewer.cs │ │ │ │ │ ├── IIndexedChild.cs │ │ │ │ │ ├── IParentUndoUnit.cs │ │ │ │ │ ├── ITextBoxViewHost.cs │ │ │ │ │ ├── IUndoUnit.cs │ │ │ │ │ ├── LineResult.cs │ │ │ │ │ ├── MultiPageTextView.cs │ │ │ │ │ ├── PageCache.cs │ │ │ │ │ ├── ParagraphResult.cs │ │ │ │ │ ├── ParentUndoUnit.cs │ │ │ │ │ ├── RowCache.cs │ │ │ │ │ ├── ScrollData.cs │ │ │ │ │ ├── TableColumnCollectionInternal.cs │ │ │ │ │ ├── TableTextElementCollectionInternal.cs │ │ │ │ │ ├── TextBoxLine.cs │ │ │ │ │ ├── TextBoxLineDrawingVisual.cs │ │ │ │ │ ├── TextBoxView.cs │ │ │ │ │ ├── TextContainerHelper.cs │ │ │ │ │ ├── TextDocumentView.cs │ │ │ │ │ ├── TextParagraphView.cs │ │ │ │ │ ├── TextViewBase.cs │ │ │ │ │ ├── UIElementIsland.cs │ │ │ │ │ ├── UndoCloseAction.cs │ │ │ │ │ └── UndoManager.cs │ │ │ └── Win32 │ │ │ │ └── UxThemeWrapper.cs │ │ ├── Microsoft │ │ │ └── Win32 │ │ │ │ ├── CommonDialog.cs │ │ │ │ ├── CommonItemDialog.cs │ │ │ │ ├── FileDialog.cs │ │ │ │ ├── FileDialogCustomPlace.cs │ │ │ │ ├── FileDialogCustomPlaces.cs │ │ │ │ ├── OpenFileDialog.cs │ │ │ │ ├── OpenFolderDialog.cs │ │ │ │ └── SaveFileDialog.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── PresentationFramework.csproj │ │ ├── Resources │ │ │ ├── ExceptionStringTable.txt │ │ │ ├── Hyphenation │ │ │ │ ├── Hyphen_en.hdict │ │ │ │ └── Hyphen_en.lex │ │ │ ├── Strings.resx │ │ │ ├── win32res │ │ │ │ ├── split.cur │ │ │ │ └── splitopen.cur │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System │ │ │ ├── AppContextDefaultValues.cs │ │ │ ├── ComponentModel │ │ │ │ └── DesignerProperties.cs │ │ │ └── Windows │ │ │ │ ├── AccentColorHelper.cs │ │ │ │ ├── Annotations │ │ │ │ ├── AnchorInfo.cs │ │ │ │ ├── Annotation.cs │ │ │ │ ├── AnnotationAuthorChangedEventArgs.cs │ │ │ │ ├── AnnotationComponentChooser.cs │ │ │ │ ├── AnnotationDocumentPaginator.cs │ │ │ │ ├── AnnotationHelper.cs │ │ │ │ ├── AnnotationResource.cs │ │ │ │ ├── AnnotationResourceChangedEventArgs.cs │ │ │ │ ├── AnnotationService.cs │ │ │ │ ├── LocatorBase.cs │ │ │ │ ├── LocatorGroup.cs │ │ │ │ ├── LocatorPart.cs │ │ │ │ ├── LocatorPartList.cs │ │ │ │ └── Storage │ │ │ │ │ ├── AnnotationStore.cs │ │ │ │ │ ├── StoreContentChangedEventArgs.cs │ │ │ │ │ └── XmlStreamStore.cs │ │ │ │ ├── Appearance │ │ │ │ └── WindowBackdropManager.cs │ │ │ │ ├── Application.cs │ │ │ │ ├── AttachedPropertyBrowsableForChildrenAttribute.cs │ │ │ │ ├── Automation │ │ │ │ └── Peers │ │ │ │ │ ├── ButtonAutomationPeer.cs │ │ │ │ │ ├── ButtonBaseAutomationPeer.cs │ │ │ │ │ ├── CalendarAutomationPeer.cs │ │ │ │ │ ├── CalendarButtonAutomationPeer.cs │ │ │ │ │ ├── CheckBoxAutomationPeer.cs │ │ │ │ │ ├── ComboBoxAutomationPeer.cs │ │ │ │ │ ├── ContentTextAutomationPeer.cs │ │ │ │ │ ├── ContextMenuAutomationPeer.cs │ │ │ │ │ ├── DataGridAutomationPeer.cs │ │ │ │ │ ├── DataGridCellAutomationPeer.cs │ │ │ │ │ ├── DataGridCellItemAutomationPeer.cs │ │ │ │ │ ├── DataGridColumnHeaderAutomationPeer.cs │ │ │ │ │ ├── DataGridColumnHeaderItemAutomationPeer.cs │ │ │ │ │ ├── DataGridColumnHeadersPresenterAutomationPeer.cs │ │ │ │ │ ├── DataGridDetailsPresenterAutomationPeer.cs │ │ │ │ │ ├── DataGridItemAutomationPeer.cs │ │ │ │ │ ├── DataGridRowAutomationPeer.cs │ │ │ │ │ ├── DataGridRowHeaderAutomationPeer.cs │ │ │ │ │ ├── DatePickerAutomationPeer.cs │ │ │ │ │ ├── DateTimeAutomationPeer.cs │ │ │ │ │ ├── DocumentAutomationPeer.cs │ │ │ │ │ ├── DocumentPageViewAutomationPeer.cs │ │ │ │ │ ├── DocumentViewerAutomationPeer.cs │ │ │ │ │ ├── DocumentViewerBaseAutomationPeer.cs │ │ │ │ │ ├── ExpanderAutomationPeer.cs │ │ │ │ │ ├── FixedPageAutomationPeer.cs │ │ │ │ │ ├── FlowDocumentPageViewerAutomationPeer.cs │ │ │ │ │ ├── FlowDocumentReaderAutomationPeer.cs │ │ │ │ │ ├── FlowDocumentScrollViewerAutomationPeer.cs │ │ │ │ │ ├── FrameAutomationPeer.cs │ │ │ │ │ ├── FrameworkContentElementAutomationPeer.cs │ │ │ │ │ ├── FrameworkElementAutomationPeer.cs │ │ │ │ │ ├── GridSplitterAutomationPeer.cs │ │ │ │ │ ├── GridViewAutomationPeer.cs │ │ │ │ │ ├── GridViewCellAutomationPeer.cs │ │ │ │ │ ├── GridViewColumnHeaderAutomationPeer.cs │ │ │ │ │ ├── GridViewHeaderRowPresenterAutomationPeer.cs │ │ │ │ │ ├── GridViewItemAutomationPeer.cs │ │ │ │ │ ├── GroupBoxAutomationPeer.cs │ │ │ │ │ ├── GroupItemAutomationPeer.cs │ │ │ │ │ ├── HwndHostAutomationPeer.cs │ │ │ │ │ ├── HyperlinkAutomationPeer.cs │ │ │ │ │ ├── IViewAutomationPeer.cs │ │ │ │ │ ├── ImageAutomationPeer.cs │ │ │ │ │ ├── InkCanvasAutomationPeer.cs │ │ │ │ │ ├── InkPresenterAutomationPeer.cs │ │ │ │ │ ├── ItemAutomationPeer.cs │ │ │ │ │ ├── ItemsControlAutomationPeer.cs │ │ │ │ │ ├── ItemsControlItemAutomationPeer.cs │ │ │ │ │ ├── ItemsControlWrapperAutomationPeer.cs │ │ │ │ │ ├── LabelAutomationPeer.cs │ │ │ │ │ ├── ListBoxAutomationPeer.cs │ │ │ │ │ ├── ListBoxItemAutomationPeer.cs │ │ │ │ │ ├── ListBoxItemWrapperAutomationPeer.cs │ │ │ │ │ ├── ListViewAutomationPeer.cs │ │ │ │ │ ├── MediaElementAutomationPeer.cs │ │ │ │ │ ├── MenuAutomationPeer.cs │ │ │ │ │ ├── MenuItemAutomationPeer.cs │ │ │ │ │ ├── NavigationWindowAutomationPeer.cs │ │ │ │ │ ├── PasswordBoxAutomationPeer.cs │ │ │ │ │ ├── PopupRootAutomationPeer.cs │ │ │ │ │ ├── ProgressBarAutomationPeer.cs │ │ │ │ │ ├── RadioButtonAutomationPeer.cs │ │ │ │ │ ├── RangeBaseAutomationPeer.cs │ │ │ │ │ ├── RepeatButtonAutomationPeer.cs │ │ │ │ │ ├── RichTextBoxAutomationPeer.cs │ │ │ │ │ ├── ScrollBarAutomationPeer.cs │ │ │ │ │ ├── ScrollViewerAutomationPeer.cs │ │ │ │ │ ├── SelectorAutomationPeer.cs │ │ │ │ │ ├── SelectorItemAutomationPeer.cs │ │ │ │ │ ├── SeparatorAutomationPeer.cs │ │ │ │ │ ├── SliderAutomationPeer.cs │ │ │ │ │ ├── StatusBarAutomationPeer.cs │ │ │ │ │ ├── StatusBarItemAutomationPeer.cs │ │ │ │ │ ├── TabControlAutomationPeer.cs │ │ │ │ │ ├── TabItemAutomationPeer.cs │ │ │ │ │ ├── TabItemWrapperAutomationPeer.cs │ │ │ │ │ ├── TableAutomationPeer.cs │ │ │ │ │ ├── TableCellAutomationPeer.cs │ │ │ │ │ ├── TextAutomationPeer.cs │ │ │ │ │ ├── TextBlockAutomationPeer.cs │ │ │ │ │ ├── TextBoxAutomationPeer.cs │ │ │ │ │ ├── TextElementAutomationPeer.cs │ │ │ │ │ ├── ThumbAutomationPeer.cs │ │ │ │ │ ├── ToggleButtonAutomationPeer.cs │ │ │ │ │ ├── ToolBarAutomationPeer.cs │ │ │ │ │ ├── ToolTipAutomationPeer.cs │ │ │ │ │ ├── TreeViewAutomationPeer.cs │ │ │ │ │ ├── TreeViewDataItemAutomationPeer.cs │ │ │ │ │ ├── TreeViewItemAutomationPeer.cs │ │ │ │ │ ├── UserControlAutomationPeer.cs │ │ │ │ │ ├── Viewport3DAutomationPeer.cs │ │ │ │ │ └── WindowAutomationPeer.cs │ │ │ │ ├── BroadcastEventHelper.cs │ │ │ │ ├── ColorConvertedBitmapExtension.cs │ │ │ │ ├── ComponentResourceKey.cs │ │ │ │ ├── ComponentResourceKeyConverter.cs │ │ │ │ ├── Condition.cs │ │ │ │ ├── ConditionCollection.cs │ │ │ │ ├── ControlTemplate.cs │ │ │ │ ├── Controls │ │ │ │ ├── AVElementHelper.cs │ │ │ │ ├── AccessText.cs │ │ │ │ ├── AddingNewItemEventArgs.cs │ │ │ │ ├── AdornedElementPlaceholder.cs │ │ │ │ ├── AlternationConverter.cs │ │ │ │ ├── BooleanToSelectiveScrollingOrientationConverter.cs │ │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ │ ├── Border.cs │ │ │ │ ├── BorderGapMaskConverter.cs │ │ │ │ ├── Button.cs │ │ │ │ ├── Calendar.cs │ │ │ │ ├── CalendarBlackoutDatesCollection.cs │ │ │ │ ├── CalendarDateChangedEventArgs.cs │ │ │ │ ├── CalendarDateRange.cs │ │ │ │ ├── CalendarDateRangeChangingEventArgs.cs │ │ │ │ ├── CalendarKeyboardHelper.cs │ │ │ │ ├── CalendarMode.cs │ │ │ │ ├── CalendarModeChangedEventArgs.cs │ │ │ │ ├── CalendarSelectionChangedEventArgs.cs │ │ │ │ ├── CalendarSelectionMode.cs │ │ │ │ ├── CalendarVisualStates.cs │ │ │ │ ├── Canvas.cs │ │ │ │ ├── CharacterCasing.cs │ │ │ │ ├── CheckBox.cs │ │ │ │ ├── CleanUpVirtualizedItemEventArgs.cs │ │ │ │ ├── ClickMode.cs │ │ │ │ ├── ColumnDefinition.cs │ │ │ │ ├── ColumnDefinitionCollectionConverter.cs │ │ │ │ ├── ComboBox.cs │ │ │ │ ├── ComboBoxItem.cs │ │ │ │ ├── ContainerTracking.cs │ │ │ │ ├── ContentControl.cs │ │ │ │ ├── ContentPresenter.cs │ │ │ │ ├── ContextMenu.cs │ │ │ │ ├── ContextMenuService.cs │ │ │ │ ├── Control.cs │ │ │ │ ├── ConversionValidationRule.cs │ │ │ │ ├── CustomDictionarySources.cs │ │ │ │ ├── DataErrorValidationRule.cs │ │ │ │ ├── DataGrid.cs │ │ │ │ ├── DataGridAutoGeneratingColumnEventArgs.cs │ │ │ │ ├── DataGridBeginningEditEventArgs.cs │ │ │ │ ├── DataGridBoundColumn.cs │ │ │ │ ├── DataGridCell.cs │ │ │ │ ├── DataGridCellClipboardEventArgs.cs │ │ │ │ ├── DataGridCellEditEndingEventArgs.cs │ │ │ │ ├── DataGridCellInfo.cs │ │ │ │ ├── DataGridCellsPanel.cs │ │ │ │ ├── DataGridCheckBoxColumn.cs │ │ │ │ ├── DataGridClipboardCellContent.cs │ │ │ │ ├── DataGridClipboardCopyMode.cs │ │ │ │ ├── DataGridClipboardHelper.cs │ │ │ │ ├── DataGridColumn.cs │ │ │ │ ├── DataGridColumnCollection.cs │ │ │ │ ├── DataGridColumnDropSeparator.cs │ │ │ │ ├── DataGridColumnEventArgs.cs │ │ │ │ ├── DataGridColumnFloatingHeader.cs │ │ │ │ ├── DataGridColumnHeaderCollection.cs │ │ │ │ ├── DataGridColumnReorderingEventArgs.cs │ │ │ │ ├── DataGridComboBoxColumn.cs │ │ │ │ ├── DataGridEditAction.cs │ │ │ │ ├── DataGridEditingUnit.cs │ │ │ │ ├── DataGridGridLinesVisibility.cs │ │ │ │ ├── DataGridHeadersVisibility.cs │ │ │ │ ├── DataGridHeadersVisibilityToVisibilityConverter.cs │ │ │ │ ├── DataGridHelper.cs │ │ │ │ ├── DataGridHyperlinkColumn.cs │ │ │ │ ├── DataGridItemAttachedStorage.cs │ │ │ │ ├── DataGridLength.cs │ │ │ │ ├── DataGridLengthConverter.cs │ │ │ │ ├── DataGridLengthUnitType.cs │ │ │ │ ├── DataGridNotificationTarget.cs │ │ │ │ ├── DataGridPreparingCellForEditEventArgs.cs │ │ │ │ ├── DataGridRow.cs │ │ │ │ ├── DataGridRowClipboardEventArgs.cs │ │ │ │ ├── DataGridRowDetailsEventArgs.cs │ │ │ │ ├── DataGridRowDetailsVisibilityMode.cs │ │ │ │ ├── DataGridRowEventArgs.cs │ │ │ │ ├── DataGridSelectionMode.cs │ │ │ │ ├── DataGridSelectionUnit.cs │ │ │ │ ├── DataGridSortingEventArgs.cs │ │ │ │ ├── DataGridSortingEventHandler.cs │ │ │ │ ├── DataGridTemplateColumn.cs │ │ │ │ ├── DataGridTextColumn.cs │ │ │ │ ├── DataGridrowEditEndingEventArgs.cs │ │ │ │ ├── DataTemplateSelector.cs │ │ │ │ ├── DatePicker.cs │ │ │ │ ├── DatePickerDateValidationErrorEventArgs.cs │ │ │ │ ├── DatePickerFormat.cs │ │ │ │ ├── DateTimeHelper.cs │ │ │ │ ├── Decorator.cs │ │ │ │ ├── DeferredRunTextReference.cs │ │ │ │ ├── DeferredSelectedIndexReference.cs │ │ │ │ ├── DeferredTextReference.cs │ │ │ │ ├── DefinitionBase.cs │ │ │ │ ├── DockPanel.cs │ │ │ │ ├── DocumentViewer.cs │ │ │ │ ├── ExceptionRoutedEventArgs.cs │ │ │ │ ├── ExceptionValidationRule.cs │ │ │ │ ├── Expander.cs │ │ │ │ ├── FlowDocumentReader.cs │ │ │ │ ├── FlowDocumentScrollViewer.cs │ │ │ │ ├── Frame.cs │ │ │ │ ├── Grid.cs │ │ │ │ ├── GridSplitter.cs │ │ │ │ ├── GridView.cs │ │ │ │ ├── GridViewColumn.cs │ │ │ │ ├── GridViewColumnCollection.cs │ │ │ │ ├── GridViewColumnCollectionChangedEventArgs.cs │ │ │ │ ├── GridViewColumnHeader.cs │ │ │ │ ├── GridViewHeaderRowPresenter.cs │ │ │ │ ├── GridViewRowPresenter.cs │ │ │ │ ├── GroupBox.cs │ │ │ │ ├── GroupItem.cs │ │ │ │ ├── GroupStyle.cs │ │ │ │ ├── HeaderedContentControl.cs │ │ │ │ ├── HeaderedItemsControl.cs │ │ │ │ ├── IProvideDataGridColumn.cs │ │ │ │ ├── Image.cs │ │ │ │ ├── InitializingNewItemEventArgs.cs │ │ │ │ ├── InitializingNewItemEventHandler.cs │ │ │ │ ├── InkCanvas.cs │ │ │ │ ├── InkCanvasClipboardFormat.cs │ │ │ │ ├── InkCanvasSelectionHitResult.cs │ │ │ │ ├── InkPresenter.cs │ │ │ │ ├── ItemCollection.cs │ │ │ │ ├── ItemContainerGenerator.cs │ │ │ │ ├── ItemContainerTemplate.cs │ │ │ │ ├── ItemContainerTemplateKey.cs │ │ │ │ ├── ItemContainerTemplateSelector.cs │ │ │ │ ├── ItemsControl.cs │ │ │ │ ├── ItemsPanelTemplate.cs │ │ │ │ ├── ItemsPresenter.cs │ │ │ │ ├── Label.cs │ │ │ │ ├── ListBox.cs │ │ │ │ ├── ListBoxItem.cs │ │ │ │ ├── ListView.cs │ │ │ │ ├── ListViewItem.cs │ │ │ │ ├── MediaElement.cs │ │ │ │ ├── MediaScriptCommandRoutedEventArgs.cs │ │ │ │ ├── Menu.cs │ │ │ │ ├── MenuItem.cs │ │ │ │ ├── MenuScrollingVisibilityConverter.cs │ │ │ │ ├── MultipleCopiesCollection.cs │ │ │ │ ├── NotifyDataErrorValidationRule.cs │ │ │ │ ├── Orientation.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── PageRanges.cs │ │ │ │ ├── Panel.cs │ │ │ │ ├── PanningMode.cs │ │ │ │ ├── PasswordBox.cs │ │ │ │ ├── PasswordTextContainer.cs │ │ │ │ ├── PasswordTextNavigator.cs │ │ │ │ ├── PopupControlService.cs │ │ │ │ ├── Primitives │ │ │ │ │ ├── AutoToolTipPlacement.cs │ │ │ │ │ ├── BulletDecorator.cs │ │ │ │ │ ├── ButtonBase.cs │ │ │ │ │ ├── CalendarButton.cs │ │ │ │ │ ├── CalendarDayButton.cs │ │ │ │ │ ├── CalendarItem.cs │ │ │ │ │ ├── CustomPopupPlacement.cs │ │ │ │ │ ├── CustomPopupPlacementCallback.cs │ │ │ │ │ ├── DataGridCellsPresenter.cs │ │ │ │ │ ├── DataGridColumnHeader.cs │ │ │ │ │ ├── DataGridColumnHeadersPresenter.cs │ │ │ │ │ ├── DataGridDetailsPresenter.cs │ │ │ │ │ ├── DataGridRowHeader.cs │ │ │ │ │ ├── DataGridRowsPresenter.cs │ │ │ │ │ ├── DatePickerTextBox.cs │ │ │ │ │ ├── DocumentPageView.cs │ │ │ │ │ ├── DocumentViewerBase.cs │ │ │ │ │ ├── DragCompletedEventArgs.cs │ │ │ │ │ ├── DragDeltaEventArgs.cs │ │ │ │ │ ├── DragStartedEventArgs.cs │ │ │ │ │ ├── GridViewRowPresenterBase.cs │ │ │ │ │ ├── HierarchicalVirtualizationConstraints.cs │ │ │ │ │ ├── HierarchicalVirtualizationHeaderDesiredSizes.cs │ │ │ │ │ ├── HierarchicalVirtualizationItemDesiredSizes.cs │ │ │ │ │ ├── IContainItemStorage.cs │ │ │ │ │ ├── IHierarchicalVirtualizationAndScrollInfo.cs │ │ │ │ │ ├── IItemContainerGenerator.cs │ │ │ │ │ ├── IRecyclingItemContainerGenerator.cs │ │ │ │ │ ├── IScrollInfo.cs │ │ │ │ │ ├── ItemsChangedEventArgs.cs │ │ │ │ │ ├── LayoutInformation.cs │ │ │ │ │ ├── MenuBase.cs │ │ │ │ │ ├── MultiSelector.cs │ │ │ │ │ ├── PlacementMode.cs │ │ │ │ │ ├── Popup.cs │ │ │ │ │ ├── PopupAnimation.cs │ │ │ │ │ ├── PopupPrimaryAxis.cs │ │ │ │ │ ├── PopupRoot.cs │ │ │ │ │ ├── RangeBase.cs │ │ │ │ │ ├── RelativeHeaderPosition.cs │ │ │ │ │ ├── RepeatButton.cs │ │ │ │ │ ├── ResizeGrip.cs │ │ │ │ │ ├── ScrollBar.cs │ │ │ │ │ ├── ScrollContentPresenter.cs │ │ │ │ │ ├── ScrollEventArgs.cs │ │ │ │ │ ├── SelectiveScrollingGrid.cs │ │ │ │ │ ├── Selector.cs │ │ │ │ │ ├── StatusBar.cs │ │ │ │ │ ├── StatusBarItem.cs │ │ │ │ │ ├── TabPanel.cs │ │ │ │ │ ├── TextBoxBase.cs │ │ │ │ │ ├── Thumb.cs │ │ │ │ │ ├── TickBar.cs │ │ │ │ │ ├── TickPlacement.cs │ │ │ │ │ ├── ToggleButton.cs │ │ │ │ │ ├── ToolBarOverflowPanel.cs │ │ │ │ │ ├── ToolBarPanel.cs │ │ │ │ │ ├── Track.cs │ │ │ │ │ └── UniformGrid.cs │ │ │ │ ├── PrintDialog.cs │ │ │ │ ├── PrintDialogException.cs │ │ │ │ ├── ProgressBar.cs │ │ │ │ ├── RadioButton.cs │ │ │ │ ├── RealizedColumnsBlock.cs │ │ │ │ ├── RichTextBox.cs │ │ │ │ ├── RowDefinition.cs │ │ │ │ ├── RowDefinitionCollectionConverter.cs │ │ │ │ ├── ScrollChangedEventArgs.cs │ │ │ │ ├── ScrollUnit.cs │ │ │ │ ├── ScrollViewer.cs │ │ │ │ ├── SelectedCellsChangedEventArgs.cs │ │ │ │ ├── SelectedCellsChangedEventHandler.cs │ │ │ │ ├── SelectedCellsCollection.cs │ │ │ │ ├── SelectedDatesCollection.cs │ │ │ │ ├── SelectedItemCollection.cs │ │ │ │ ├── SelectionChangedEventArgs.cs │ │ │ │ ├── SelectiveScrollingOrientation.cs │ │ │ │ ├── Separator.cs │ │ │ │ ├── SinglePageViewer.cs │ │ │ │ ├── Slider.cs │ │ │ │ ├── SoundPlayerAction.cs │ │ │ │ ├── SpellCheck.cs │ │ │ │ ├── SpellingReform.cs │ │ │ │ ├── Stack.cs │ │ │ │ ├── StickyNote.cs │ │ │ │ ├── StyleSelector.cs │ │ │ │ ├── TabControl.cs │ │ │ │ ├── TabItem.cs │ │ │ │ ├── TextAdaptor.cs │ │ │ │ ├── TextBlock.cs │ │ │ │ ├── TextBox.cs │ │ │ │ ├── TextChange.cs │ │ │ │ ├── TextChangedEventArgs.cs │ │ │ │ ├── TextRangeAdaptor.cs │ │ │ │ ├── TextSearch.cs │ │ │ │ ├── ToolBar.cs │ │ │ │ ├── ToolBarTray.cs │ │ │ │ ├── ToolTip.cs │ │ │ │ ├── ToolTipService.cs │ │ │ │ ├── TreeView.cs │ │ │ │ ├── TreeViewItem.cs │ │ │ │ ├── UIElementCollection.cs │ │ │ │ ├── UserControl.cs │ │ │ │ ├── Validation.cs │ │ │ │ ├── ValidationError.cs │ │ │ │ ├── ValidationErrorEventArgs.cs │ │ │ │ ├── ValidationResult.cs │ │ │ │ ├── ValidationRule.cs │ │ │ │ ├── ValidationStep.cs │ │ │ │ ├── ViewBase.cs │ │ │ │ ├── ViewBox.cs │ │ │ │ ├── ViewPort3D.cs │ │ │ │ ├── VirtualizationCacheLength.cs │ │ │ │ ├── VirtualizationCacheLengthConverter.cs │ │ │ │ ├── VirtualizationMode.cs │ │ │ │ ├── VirtualizedCellInfoCollection.cs │ │ │ │ ├── VirtualizingPanel.cs │ │ │ │ ├── VirtualizingStackPanel.cs │ │ │ │ ├── VisualStates.cs │ │ │ │ ├── WebBrowser.cs │ │ │ │ └── WrapPanel.cs │ │ │ │ ├── CornerRadius.cs │ │ │ │ ├── CornerRadiusConverter.cs │ │ │ │ ├── Data │ │ │ │ ├── Binding.cs │ │ │ │ ├── BindingBase.cs │ │ │ │ ├── BindingExpression.cs │ │ │ │ ├── BindingExpressionBase.cs │ │ │ │ ├── BindingGroup.cs │ │ │ │ ├── BindingListCollectionView.cs │ │ │ │ ├── BindingOperations.cs │ │ │ │ ├── CollectionContainer.cs │ │ │ │ ├── CollectionRegisteringEventArgs.cs │ │ │ │ ├── CollectionSynchronizationCallback.cs │ │ │ │ ├── CollectionView.cs │ │ │ │ ├── CollectionViewGroup.cs │ │ │ │ ├── CollectionViewRegisteringEventArgs.cs │ │ │ │ ├── CollectionViewSource.cs │ │ │ │ ├── CompositeCollection.cs │ │ │ │ ├── DataChangedEventManager.cs │ │ │ │ ├── DataTransferEventArgs.cs │ │ │ │ ├── FilterEventArgs.cs │ │ │ │ ├── IMultiValueConverter.cs │ │ │ │ ├── IValueConverter.cs │ │ │ │ ├── ListCollectionView.cs │ │ │ │ ├── MultiBinding.cs │ │ │ │ ├── MultiBindingExpression.cs │ │ │ │ ├── ObjectDataProvider.cs │ │ │ │ ├── PriorityBinding.cs │ │ │ │ ├── PriorityBindingExpression.cs │ │ │ │ ├── PropertyGroupDescription.cs │ │ │ │ ├── RelativeSource.cs │ │ │ │ ├── ValueConversionAttribute.cs │ │ │ │ ├── ValueUnavailableException.cs │ │ │ │ ├── XmlDataProvider.cs │ │ │ │ ├── XmlNamespaceMapping.cs │ │ │ │ └── XmlNamespaceMappingCollection.cs │ │ │ │ ├── DataTemplate.cs │ │ │ │ ├── DataTemplateKey.cs │ │ │ │ ├── DataTrigger.cs │ │ │ │ ├── DeferrableContent.cs │ │ │ │ ├── DeferrableContentConverter.cs │ │ │ │ ├── DependencyPropertyHelper.cs │ │ │ │ ├── DescendentsWalker.cs │ │ │ │ ├── DescendentsWalkerBase.cs │ │ │ │ ├── Design │ │ │ │ └── AdornerHitTestResult.cs │ │ │ │ ├── Diagnostics │ │ │ │ ├── BindingDiagnostics.cs │ │ │ │ ├── BindingFailedEventArgs.cs │ │ │ │ ├── ResourceDictionaryDiagnostics.cs │ │ │ │ ├── ResourceDictionaryEventArgs.cs │ │ │ │ ├── ResourceDictionaryInfo.cs │ │ │ │ └── StaticResourceResolvedEventArgs.cs │ │ │ │ ├── DialogResultConverter.cs │ │ │ │ ├── Documents │ │ │ │ ├── Adorner.cs │ │ │ │ ├── AdornerDecorator.cs │ │ │ │ ├── AdornerHitTestResult.cs │ │ │ │ ├── AdornerLayer.cs │ │ │ │ ├── AnchoredBlock.cs │ │ │ │ ├── Block.cs │ │ │ │ ├── BlockCollection.cs │ │ │ │ ├── BlockUIContainer.cs │ │ │ │ ├── Bold.cs │ │ │ │ ├── CaretElement.cs │ │ │ │ ├── CaretScrollMethod.cs │ │ │ │ ├── ChangeBlockUndoRecord.cs │ │ │ │ ├── ChildDocumentBlock.cs │ │ │ │ ├── ColumnResizeAdorner.cs │ │ │ │ ├── ColumnResizeUndoUnit.cs │ │ │ │ ├── CompositionAdorner.cs │ │ │ │ ├── DPTypeDescriptorContext.cs │ │ │ │ ├── DisplayAttributeHighlightLayer.cs │ │ │ │ ├── DocumentReference.cs │ │ │ │ ├── DocumentReferenceCollection.cs │ │ │ │ ├── DocumentSequence.cs │ │ │ │ ├── DocumentSequenceHighlightLayer.cs │ │ │ │ ├── DocumentSequenceTextContainer.cs │ │ │ │ ├── DocumentSequenceTextPointer.cs │ │ │ │ ├── DocumentSequenceTextView.cs │ │ │ │ ├── DocumentStructures │ │ │ │ │ ├── NamedElement.cs │ │ │ │ │ ├── SemanticBasicElement.cs │ │ │ │ │ └── StoryFragments.cs │ │ │ │ ├── EditingCommands.cs │ │ │ │ ├── ElementEdge.cs │ │ │ │ ├── Figure.cs │ │ │ │ ├── FixedDSBuilder.cs │ │ │ │ ├── FixedDocument.cs │ │ │ │ ├── FixedElement.cs │ │ │ │ ├── FixedFindEngine.cs │ │ │ │ ├── FixedFlowMap.cs │ │ │ │ ├── FixedHighlight.cs │ │ │ │ ├── FixedHyperlink.cs │ │ │ │ ├── FixedLineResult.cs │ │ │ │ ├── FixedNode.cs │ │ │ │ ├── FixedPage.cs │ │ │ │ ├── FixedPageStructure.cs │ │ │ │ ├── FixedPosition.cs │ │ │ │ ├── FixedSOMContainer.cs │ │ │ │ ├── FixedSOMElement.cs │ │ │ │ ├── FixedSOMFixedBlock.cs │ │ │ │ ├── FixedSOMGroup.cs │ │ │ │ ├── FixedSOMImage.cs │ │ │ │ ├── FixedSOMLineCollection.cs │ │ │ │ ├── FixedSOMLineRanges.cs │ │ │ │ ├── FixedSOMPage.cs │ │ │ │ ├── FixedSOMPageConstructor.cs │ │ │ │ ├── FixedSOMPageElement.cs │ │ │ │ ├── FixedSOMSemanticBox.cs │ │ │ │ ├── FixedSOMTable.cs │ │ │ │ ├── FixedSOMTableCell.cs │ │ │ │ ├── FixedSOMTableRow.cs │ │ │ │ ├── FixedSOMTextRun.cs │ │ │ │ ├── FixedSchema.cs │ │ │ │ ├── FixedTextBuilder.cs │ │ │ │ ├── FixedTextContainer.cs │ │ │ │ ├── FixedTextPointer.cs │ │ │ │ ├── FixedTextView.cs │ │ │ │ ├── Floater.cs │ │ │ │ ├── FlowDocument.cs │ │ │ │ ├── FlowNode.cs │ │ │ │ ├── FlowPosition.cs │ │ │ │ ├── FrameworkRichTextComposition.cs │ │ │ │ ├── FrameworkTextComposition.cs │ │ │ │ ├── Glyphs.cs │ │ │ │ ├── HighlightChangedEventArgs.cs │ │ │ │ ├── HighlightChangedEventHandler.cs │ │ │ │ ├── HighlightLayer.cs │ │ │ │ ├── HighlightVisual.cs │ │ │ │ ├── Highlights.cs │ │ │ │ ├── Hyperlink.cs │ │ │ │ ├── ITextContainer.cs │ │ │ │ ├── ITextPointer.cs │ │ │ │ ├── ITextRange.cs │ │ │ │ ├── ITextSelection.cs │ │ │ │ ├── ITextView.cs │ │ │ │ ├── IXamlAttributes.cs │ │ │ │ ├── IXamlContentHandler.cs │ │ │ │ ├── IXamlErrorHandler.cs │ │ │ │ ├── ImmComposition.cs │ │ │ │ ├── InkInteropObject.cs │ │ │ │ ├── Inline.cs │ │ │ │ ├── InlineCollection.cs │ │ │ │ ├── InlineUIContainer.cs │ │ │ │ ├── InputScopeAttribute.cs │ │ │ │ ├── Italic.cs │ │ │ │ ├── LineBreak.cs │ │ │ │ ├── LinkTarget.cs │ │ │ │ ├── List.cs │ │ │ │ ├── ListItem.cs │ │ │ │ ├── ListItemCollection.cs │ │ │ │ ├── LogicalDirection.cs │ │ │ │ ├── MoveSizeWinEventHandler.cs │ │ │ │ ├── MsSpellCheckLib │ │ │ │ │ ├── RCW.cs │ │ │ │ │ ├── SpellChecker │ │ │ │ │ │ ├── OptionDescription.cs │ │ │ │ │ │ ├── SpellChecker.cs │ │ │ │ │ │ ├── SpellCheckerChangedEventArgs.cs │ │ │ │ │ │ ├── SpellCheckerChangedEventHandler.cs │ │ │ │ │ │ └── SpellingError.cs │ │ │ │ │ ├── SpellCheckerFactory │ │ │ │ │ │ ├── SpellCheckerCreationHelper.cs │ │ │ │ │ │ └── SpellCheckerFactory.cs │ │ │ │ │ └── Utils │ │ │ │ │ │ ├── ChangeNotifyWrapper.cs │ │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ │ └── RetryHelper.cs │ │ │ │ ├── NLGSpellerInterop.cs │ │ │ │ ├── NaturalLanguageHyphenator.cs │ │ │ │ ├── NullTextContainer.cs │ │ │ │ ├── NullTextNavigator.cs │ │ │ │ ├── PageContent.cs │ │ │ │ ├── PageContentAsyncResult.cs │ │ │ │ ├── PageContentCollection.cs │ │ │ │ ├── Paragraph.cs │ │ │ │ ├── PrecursorTextChangeType.cs │ │ │ │ ├── PropertyRecord.cs │ │ │ │ ├── PropertyValueAction.cs │ │ │ │ ├── RangeContentEnumerator.cs │ │ │ │ ├── RtfControlWord.cs │ │ │ │ ├── RtfControlWordInfo.cs │ │ │ │ ├── RtfControls.cs │ │ │ │ ├── RtfDestination.cs │ │ │ │ ├── RtfFormatStack.cs │ │ │ │ ├── RtfImageFormat.cs │ │ │ │ ├── RtfSuperSubscript.cs │ │ │ │ ├── RtfToXamlError.cs │ │ │ │ ├── RtfToXamlLexer.cs │ │ │ │ ├── RtfToXamlReader.cs │ │ │ │ ├── RtfToken.cs │ │ │ │ ├── RtfTokenType.cs │ │ │ │ ├── RubberbandSelector.cs │ │ │ │ ├── Run.cs │ │ │ │ ├── Section.cs │ │ │ │ ├── SelectionHighlightInfo.cs │ │ │ │ ├── SelectionWordBreaker.cs │ │ │ │ ├── Serialization │ │ │ │ │ ├── ISerializerFactory.cs │ │ │ │ │ ├── SerializerDescriptor.cs │ │ │ │ │ ├── SerializerProvider.cs │ │ │ │ │ ├── SerializerWriter.cs │ │ │ │ │ ├── SerializerWriterCollator.cs │ │ │ │ │ └── SerializerWriterEventHandlers.cs │ │ │ │ ├── Span.cs │ │ │ │ ├── Speller.cs │ │ │ │ ├── SpellerError.cs │ │ │ │ ├── SpellerHighlightLayer.cs │ │ │ │ ├── SpellerInteropBase.cs │ │ │ │ ├── SpellerStatusTable.cs │ │ │ │ ├── SplayTreeNode.cs │ │ │ │ ├── SplayTreeNodeRole.cs │ │ │ │ ├── StaticTextPointer.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TableCell.cs │ │ │ │ ├── TableCellCollection.cs │ │ │ │ ├── TableColumn.cs │ │ │ │ ├── TableColumnCollection.cs │ │ │ │ ├── TableRow.cs │ │ │ │ ├── TableRowCollection.cs │ │ │ │ ├── TableRowGroup.cs │ │ │ │ ├── TableRowGroupCollection.cs │ │ │ │ ├── TextChangeType.cs │ │ │ │ ├── TextContainer.cs │ │ │ │ ├── TextContainerChangeEventArgs.cs │ │ │ │ ├── TextContainerChangeEventHandler.cs │ │ │ │ ├── TextContainerChangedEventArgs.cs │ │ │ │ ├── TextContainerChangedEventHandler.cs │ │ │ │ ├── TextEditor.cs │ │ │ │ ├── TextEditorCharacters.cs │ │ │ │ ├── TextEditorContextMenu.cs │ │ │ │ ├── TextEditorCopyPaste.cs │ │ │ │ ├── TextEditorDragDrop.cs │ │ │ │ ├── TextEditorLists.cs │ │ │ │ ├── TextEditorMouse.cs │ │ │ │ ├── TextEditorParagraphs.cs │ │ │ │ ├── TextEditorSelection.cs │ │ │ │ ├── TextEditorSpelling.cs │ │ │ │ ├── TextEditorTables.cs │ │ │ │ ├── TextEditorThreadLocalStore.cs │ │ │ │ ├── TextEditorTyping.cs │ │ │ │ ├── TextEffectResolver.cs │ │ │ │ ├── TextElement.cs │ │ │ │ ├── TextElementCollection.cs │ │ │ │ ├── TextElementCollectionHelper.cs │ │ │ │ ├── TextElementEditingBehaviorAttribute.cs │ │ │ │ ├── TextElementEnumerator.cs │ │ │ │ ├── TextFindEngine.cs │ │ │ │ ├── TextFlow.cs │ │ │ │ ├── TextMapOffsetErrorLogger.cs │ │ │ │ ├── TextParentUndoUnit.cs │ │ │ │ ├── TextPointer.cs │ │ │ │ ├── TextPointerBase.cs │ │ │ │ ├── TextPointerContext.cs │ │ │ │ ├── TextRange.cs │ │ │ │ ├── TextRangeBase.cs │ │ │ │ ├── TextRangeEdit.cs │ │ │ │ ├── TextRangeEditLists.cs │ │ │ │ ├── TextRangeEditTables.cs │ │ │ │ ├── TextRangeSerialization.cs │ │ │ │ ├── TextSchema.cs │ │ │ │ ├── TextSegment.cs │ │ │ │ ├── TextSelection.cs │ │ │ │ ├── TextSelectionHighlightLayer.cs │ │ │ │ ├── TextServicesDisplayAttribute.cs │ │ │ │ ├── TextServicesDisplayAttributePropertyRanges.cs │ │ │ │ ├── TextServicesHost.cs │ │ │ │ ├── TextServicesProperty.cs │ │ │ │ ├── TextServicesPropertyRanges.cs │ │ │ │ ├── TextStore.cs │ │ │ │ ├── TextTreeDeleteContentUndoUnit.cs │ │ │ │ ├── TextTreeDumper.cs │ │ │ │ ├── TextTreeExtractElementUndoUnit.cs │ │ │ │ ├── TextTreeFixupNode.cs │ │ │ │ ├── TextTreeInsertElementUndoUnit.cs │ │ │ │ ├── TextTreeInsertUndoUnit.cs │ │ │ │ ├── TextTreeNode.cs │ │ │ │ ├── TextTreeObjectNode.cs │ │ │ │ ├── TextTreePropertyUndoUnit.cs │ │ │ │ ├── TextTreeRootNode.cs │ │ │ │ ├── TextTreeRootTextBlock.cs │ │ │ │ ├── TextTreeText.cs │ │ │ │ ├── TextTreeTextBlock.cs │ │ │ │ ├── TextTreeTextElementNode.cs │ │ │ │ ├── TextTreeTextNode.cs │ │ │ │ ├── TextTreeUndo.cs │ │ │ │ ├── TextTreeUndoUnit.cs │ │ │ │ ├── Tracing │ │ │ │ │ └── SpellerCOMActionTraceLogger.cs │ │ │ │ ├── Typography.cs │ │ │ │ ├── UIElementPropertyUndoUnit.cs │ │ │ │ ├── Underline.cs │ │ │ │ ├── ValidationHelper.cs │ │ │ │ ├── WinEventHandler.cs │ │ │ │ ├── WinRTSpellerInterop.cs │ │ │ │ ├── WinRTSpellerInteropExtensions.cs │ │ │ │ ├── WpfPayload.cs │ │ │ │ ├── XPSS0ValidatingLoader.cs │ │ │ │ ├── XamlAttribute.cs │ │ │ │ ├── XamlRtfConverter.cs │ │ │ │ ├── XamlToRtfError.cs │ │ │ │ ├── XamlToRtfParser.cs │ │ │ │ ├── XamlToRtfWriter.cs │ │ │ │ ├── XamlTokenType.cs │ │ │ │ └── ZoomPercentageConverter.cs │ │ │ │ ├── DynamicResourceExtension.cs │ │ │ │ ├── DynamicResourceExtensionConverter.cs │ │ │ │ ├── EventSetter.cs │ │ │ │ ├── EventSetterHandlerConverter.cs │ │ │ │ ├── EventTrigger.cs │ │ │ │ ├── ExitEventArgs.cs │ │ │ │ ├── FigureLength.cs │ │ │ │ ├── FigureLengthConverter.cs │ │ │ │ ├── FluentThemeState.cs │ │ │ │ ├── FontSizeConverter.cs │ │ │ │ ├── FrameworkCompatibilityPreferences.cs │ │ │ │ ├── FrameworkContentElement.cs │ │ │ │ ├── FrameworkContextData.cs │ │ │ │ ├── FrameworkElement.cs │ │ │ │ ├── FrameworkElementFactory.cs │ │ │ │ ├── FrameworkPropertyMetadata.cs │ │ │ │ ├── FrameworkReadOnlyPropertyMetadata.cs │ │ │ │ ├── FrameworkTemplate.cs │ │ │ │ ├── Generated │ │ │ │ ├── FrameworkContentElement.cs │ │ │ │ └── FrameworkElement.cs │ │ │ │ ├── GridLength.cs │ │ │ │ ├── GridLengthConverter.cs │ │ │ │ ├── HierarchicalDataTemplate.cs │ │ │ │ ├── IFrameworkInputElement.cs │ │ │ │ ├── IWindowService.cs │ │ │ │ ├── InheritablePropertyChangeInfo.cs │ │ │ │ ├── InheritanceBehavior.cs │ │ │ │ ├── Ink │ │ │ │ ├── EditingMode.cs │ │ │ │ └── Events.cs │ │ │ │ ├── Input │ │ │ │ ├── Command │ │ │ │ │ ├── CommandConverter.cs │ │ │ │ │ └── CommandValueSerializer.cs │ │ │ │ └── KeyboardNavigation.cs │ │ │ │ ├── Interop │ │ │ │ ├── ActiveXHost.cs │ │ │ │ ├── BrowserInteropHelper.cs │ │ │ │ ├── DynamicScriptObject.cs │ │ │ │ ├── HwndHost.cs │ │ │ │ ├── IErrorPage.cs │ │ │ │ ├── IProgressPage.cs │ │ │ │ └── WindowInteropHelper.cs │ │ │ │ ├── LengthConverter.cs │ │ │ │ ├── Localization.cs │ │ │ │ ├── LogicalTreeHelper.cs │ │ │ │ ├── LostFocusEventManager.cs │ │ │ │ ├── Markup │ │ │ │ ├── AttributeData.cs │ │ │ │ ├── Baml2006 │ │ │ │ │ ├── Baml2006KeyRecord.cs │ │ │ │ │ ├── Baml2006KnownTypes.cs │ │ │ │ │ ├── Baml2006Reader.cs │ │ │ │ │ ├── Baml2006ReaderContext.cs │ │ │ │ │ ├── Baml2006ReaderFrame.cs │ │ │ │ │ ├── Baml2006ReaderInternal.cs │ │ │ │ │ ├── Baml2006ReaderSettings.cs │ │ │ │ │ ├── Baml2006RecordType.cs │ │ │ │ │ ├── Baml2006SchemaContext.cs │ │ │ │ │ ├── Baml6Assembly.cs │ │ │ │ │ ├── Baml6ConstructorInfo.cs │ │ │ │ │ ├── BamlBinaryReader.cs │ │ │ │ │ ├── DeferredBinaryDeserializerExtension.cs │ │ │ │ │ ├── SharedStream.cs │ │ │ │ │ ├── ThemeKnownTypeHelper.cs │ │ │ │ │ ├── TypeConverterMarkupExtension.cs │ │ │ │ │ ├── WpfGeneratedKnownProperties.cs │ │ │ │ │ ├── WpfGeneratedKnownTypes.cs │ │ │ │ │ ├── WpfKnownMember.cs │ │ │ │ │ ├── WpfKnownMemberInvoker.cs │ │ │ │ │ ├── WpfKnownType.cs │ │ │ │ │ ├── WpfKnownTypeInvoker.cs │ │ │ │ │ ├── WpfMemberInvoker.cs │ │ │ │ │ ├── WpfSharedBamlSchemaContext.cs │ │ │ │ │ ├── WpfSharedXamlSchemaContext.cs │ │ │ │ │ ├── WpfXamlMember.cs │ │ │ │ │ └── WpfXamlType.cs │ │ │ │ ├── BamlBinaryReader.cs │ │ │ │ ├── BamlBinaryWriter.cs │ │ │ │ ├── BamlCollectionHolder.cs │ │ │ │ ├── BamlMapTable.cs │ │ │ │ ├── BamlReader.cs │ │ │ │ ├── BamlRecordHelper.cs │ │ │ │ ├── BamlRecordReader.cs │ │ │ │ ├── BamlRecordWriter.cs │ │ │ │ ├── BamlRecords.cs │ │ │ │ ├── BamlVersionHeader.cs │ │ │ │ ├── BamlWriter.cs │ │ │ │ ├── DependencyPropertyConverter.cs │ │ │ │ ├── FilteredXmlReader.cs │ │ │ │ ├── IHaveResources.cs │ │ │ │ ├── IStreamInfo.cs │ │ │ │ ├── IStyleConnector.cs │ │ │ │ ├── KnownTypes.cs │ │ │ │ ├── KnownTypesHelper.cs │ │ │ │ ├── Localizer │ │ │ │ │ ├── BamlLocalizabilityResolver.cs │ │ │ │ │ ├── BamlLocalizableResource.cs │ │ │ │ │ ├── BamlLocalizableResourceKey.cs │ │ │ │ │ ├── BamlLocalizationDictionary.cs │ │ │ │ │ ├── BamlLocalizer.cs │ │ │ │ │ ├── BamlLocalizerError.cs │ │ │ │ │ └── BamlLocalizerErrorNotifyEventArgs.cs │ │ │ │ ├── MarkupExtensionParser.cs │ │ │ │ ├── ParserContext.cs │ │ │ │ ├── ParserHooks.cs │ │ │ │ ├── ParserStack.cs │ │ │ │ ├── Primitives │ │ │ │ │ ├── ElementMarkupObject.cs │ │ │ │ │ ├── ExtensionSimplifierMarkupObject.cs │ │ │ │ │ ├── FrameworkElementFactoryMarkupObject.cs │ │ │ │ │ └── MarkupWriter.cs │ │ │ │ ├── ProvideValueServiceProvider.cs │ │ │ │ ├── ReaderContextStackData.cs │ │ │ │ ├── RestrictiveXamlXmlReader.cs │ │ │ │ ├── RoutedEventConverter.cs │ │ │ │ ├── RoutedEventValueSerializer.cs │ │ │ │ ├── SetterTriggerConditionValueConverter.cs │ │ │ │ ├── StyleModeStack.cs │ │ │ │ ├── StyleXamlParser.cs │ │ │ │ ├── TemplateComponentConnector.cs │ │ │ │ ├── TemplateKeyConverter.cs │ │ │ │ ├── TemplateXamlParser.cs │ │ │ │ ├── TreeBuilder.cs │ │ │ │ ├── TypeContext.cs │ │ │ │ ├── WpfXamlLoader.cs │ │ │ │ ├── XamlBrushSerializer.cs │ │ │ │ ├── XamlDesignerSerializationManager.cs │ │ │ │ ├── XamlFigureLengthSerializer.cs │ │ │ │ ├── XamlGridLengthSerializer.cs │ │ │ │ ├── XamlInstanceCreator.cs │ │ │ │ ├── XamlInt32CollectionSerializer.cs │ │ │ │ ├── XamlNodes.cs │ │ │ │ ├── XamlParseException.cs │ │ │ │ ├── XamlParser.cs │ │ │ │ ├── XamlPathDataSerializer.cs │ │ │ │ ├── XamlPoint3DCollectionSerializer.cs │ │ │ │ ├── XamlPointCollectionSerializer.cs │ │ │ │ ├── XamlReader.cs │ │ │ │ ├── XamlReaderConstants.cs │ │ │ │ ├── XamlReaderHelper.cs │ │ │ │ ├── XamlSerializer.cs │ │ │ │ ├── XamlSerializerUtil.cs │ │ │ │ ├── XamlStream.cs │ │ │ │ ├── XamlStyleSerializer.cs │ │ │ │ ├── XamlTemplateSerializer.cs │ │ │ │ ├── XamlTypeMapper.cs │ │ │ │ ├── XamlTypeMapperSchemaContext.cs │ │ │ │ ├── XamlVector3DCollectionSerializer.cs │ │ │ │ ├── XamlWriter.cs │ │ │ │ ├── XamlWriterMode.cs │ │ │ │ ├── XamlWriterState.cs │ │ │ │ ├── XmlAttributeProperties.cs │ │ │ │ ├── XmlnsCache.cs │ │ │ │ └── XmlnsDictionary.cs │ │ │ │ ├── Media │ │ │ │ ├── Animation │ │ │ │ │ ├── BeginStoryboard.cs │ │ │ │ │ ├── ControllableStoryboardAction.cs │ │ │ │ │ ├── Generated │ │ │ │ │ │ ├── DiscreteKeyFrames.cs │ │ │ │ │ │ ├── EasingKeyFrames.cs │ │ │ │ │ │ ├── KeyFrames.cs │ │ │ │ │ │ ├── LinearKeyFrames.cs │ │ │ │ │ │ ├── SplineKeyFrames.cs │ │ │ │ │ │ ├── ThicknessAnimation.cs │ │ │ │ │ │ ├── ThicknessAnimationBase.cs │ │ │ │ │ │ ├── ThicknessAnimationUsingKeyFrames.cs │ │ │ │ │ │ └── ThicknessKeyFrameCollection.cs │ │ │ │ │ ├── PauseStoryboard.cs │ │ │ │ │ ├── RemoveStoryboard.cs │ │ │ │ │ ├── ResumeStoryboard.cs │ │ │ │ │ ├── SeekStoryboard.cs │ │ │ │ │ ├── SetStoryboardSpeedRatio.cs │ │ │ │ │ ├── SkipStoryboardToFill.cs │ │ │ │ │ ├── StopStoryboard.cs │ │ │ │ │ └── Storyboard.cs │ │ │ │ └── TextOptions.cs │ │ │ │ ├── MessageBox.cs │ │ │ │ ├── MultiDataTrigger.cs │ │ │ │ ├── MultiTrigger.cs │ │ │ │ ├── Navigation │ │ │ │ ├── FragmentNavigationEventArgs.cs │ │ │ │ ├── Journal.cs │ │ │ │ ├── JournalEntry.cs │ │ │ │ ├── JournalEntryListConverter.cs │ │ │ │ ├── NavigatingCancelEventArgs.cs │ │ │ │ ├── NavigationEventArgs.cs │ │ │ │ ├── NavigationFailedEventArgs.cs │ │ │ │ ├── NavigationMode.cs │ │ │ │ ├── NavigationProgressEventArgs.cs │ │ │ │ ├── NavigationService.cs │ │ │ │ ├── NavigationWindow.cs │ │ │ │ ├── PageFunction.cs │ │ │ │ ├── RequestNavigateEventArgs.cs │ │ │ │ └── ReturnEventArgs.cs │ │ │ │ ├── NullableBoolConverter.cs │ │ │ │ ├── PropertyPath.cs │ │ │ │ ├── PropertyPathConverter.cs │ │ │ │ ├── RequestBringIntoViewEventArgs.cs │ │ │ │ ├── RequestBringIntoViewEventHandler.cs │ │ │ │ ├── ResourceDictionary.cs │ │ │ │ ├── ResourceDictionaryCollection.cs │ │ │ │ ├── ResourceDictionaryLocation.cs │ │ │ │ ├── ResourceKey.cs │ │ │ │ ├── ResourceReferenceExpression.cs │ │ │ │ ├── ResourceReferenceExpressionConverter.cs │ │ │ │ ├── ResourceReferenceKeyNotFoundException.cs │ │ │ │ ├── Resources │ │ │ │ └── StreamResourceInfo.cs │ │ │ │ ├── ResourcesChangeInfo.cs │ │ │ │ ├── RoutedPropertyChangedEventArgs.cs │ │ │ │ ├── SessionEndingCancelEventArgs.cs │ │ │ │ ├── Setter.cs │ │ │ │ ├── SetterBase.cs │ │ │ │ ├── SetterBaseCollection.cs │ │ │ │ ├── Shapes │ │ │ │ ├── Ellipse.cs │ │ │ │ ├── Line.cs │ │ │ │ ├── Path.cs │ │ │ │ ├── Polygon.cs │ │ │ │ ├── Polyline.cs │ │ │ │ ├── Rectangle.cs │ │ │ │ └── Shape.cs │ │ │ │ ├── SharedDp.cs │ │ │ │ ├── Shell │ │ │ │ ├── JumpItem.cs │ │ │ │ ├── JumpList.cs │ │ │ │ ├── JumpPath.cs │ │ │ │ ├── JumpTask.cs │ │ │ │ ├── TaskbarItemInfo.cs │ │ │ │ ├── ThumbButtonInfo.cs │ │ │ │ ├── ThumbButtonInfoCollection.cs │ │ │ │ ├── WindowChrome.cs │ │ │ │ └── WindowChromeWorker.cs │ │ │ │ ├── SizeChangedEventArgs.cs │ │ │ │ ├── SizeChangedEventHandler.cs │ │ │ │ ├── SourceUriTypeConverterMarkupExtension.cs │ │ │ │ ├── Standard │ │ │ │ ├── ComGuids.cs │ │ │ │ ├── Debug.cs │ │ │ │ ├── DoubleUtil.cs │ │ │ │ ├── DpiHelper.cs │ │ │ │ ├── ErrorCodes.cs │ │ │ │ ├── MessageWindow.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── ShellProvider.cs │ │ │ │ ├── Utilities.cs │ │ │ │ └── Verify.cs │ │ │ │ ├── StartupEventArgs.cs │ │ │ │ ├── StaticResourceExtension.cs │ │ │ │ ├── Style.cs │ │ │ │ ├── StyleHelper.cs │ │ │ │ ├── StyleTypedPropertyAttribute.cs │ │ │ │ ├── SystemColors.cs │ │ │ │ ├── SystemCommands.cs │ │ │ │ ├── SystemFonts.cs │ │ │ │ ├── SystemKeyConverter.cs │ │ │ │ ├── SystemParameters.cs │ │ │ │ ├── SystemResourceHost.cs │ │ │ │ ├── SystemResourceKey.cs │ │ │ │ ├── SystemResources.cs │ │ │ │ ├── SystemThemeKey.cs │ │ │ │ ├── TemplateBindingExpression.cs │ │ │ │ ├── TemplateBindingExpressionConverter.cs │ │ │ │ ├── TemplateBindingExtension.cs │ │ │ │ ├── TemplateBindingExtensionConverter.cs │ │ │ │ ├── TemplateContent.cs │ │ │ │ ├── TemplateContentLoader.cs │ │ │ │ ├── TemplateKey.cs │ │ │ │ ├── TemplateNameScope.cs │ │ │ │ ├── TemplatePartAttribute.cs │ │ │ │ ├── TemplateVisualStateAttribute.cs │ │ │ │ ├── TextPanelProperties.cs │ │ │ │ ├── ThemeDictionaryExtension.cs │ │ │ │ ├── ThemeInfoAttribute.cs │ │ │ │ ├── ThemeManager.cs │ │ │ │ ├── ThemeMode.cs │ │ │ │ ├── ThemeModeConverter.cs │ │ │ │ ├── Thickness.cs │ │ │ │ ├── ThicknessConverter.cs │ │ │ │ ├── TreeChangeInfo.cs │ │ │ │ ├── TreeWalkHelper.cs │ │ │ │ ├── Trigger.cs │ │ │ │ ├── TriggerAction.cs │ │ │ │ ├── TriggerActionCollection.cs │ │ │ │ ├── TriggerBase.cs │ │ │ │ ├── TriggerCollection.cs │ │ │ │ ├── VisualState.cs │ │ │ │ ├── VisualStateChangedEventArgs.cs │ │ │ │ ├── VisualStateGroup.cs │ │ │ │ ├── VisualStateManager.cs │ │ │ │ ├── VisualTransition.cs │ │ │ │ ├── Window.cs │ │ │ │ ├── WindowBackdropType.cs │ │ │ │ └── WindowCollection.cs │ │ └── ref │ │ │ ├── PresentationFramework-ref.csproj │ │ │ └── PresentationFramework.cs │ ├── PresentationUI │ │ ├── InstallationError.xaml │ │ ├── InstallationError.xaml.cs │ │ ├── MS │ │ │ └── Internal │ │ │ │ └── Documents │ │ │ │ ├── AccountType.cs │ │ │ │ ├── Application │ │ │ │ ├── AddressUtility.cs │ │ │ │ ├── ChainOfDependencies.cs │ │ │ │ ├── ChainOfResponsibility.cs │ │ │ │ ├── CommandEnforcer.cs │ │ │ │ ├── CriticalFileToken.cs │ │ │ │ ├── Document.cs │ │ │ │ ├── DocumentApplicationJournalEntryEventArgs.cs │ │ │ │ ├── DocumentApplicationState.cs │ │ │ │ ├── DocumentManager.cs │ │ │ │ ├── DocumentProperties.cs │ │ │ │ ├── DocumentPropertiesDialog.Designer.cs │ │ │ │ ├── DocumentPropertiesDialog.cs │ │ │ │ ├── DocumentStream.cs │ │ │ │ ├── FileController.cs │ │ │ │ ├── FileDocument.cs │ │ │ │ ├── FilePresentation.cs │ │ │ │ ├── HostedController.cs │ │ │ │ ├── IChainOfDependenciesNode.cs │ │ │ │ ├── IChainOfResponsibiltyNode.cs │ │ │ │ ├── IDocumentController.cs │ │ │ │ ├── NativeDirectoryServicesQueryAPIs.cs │ │ │ │ ├── NavigationHelper.cs │ │ │ │ ├── PackageController.cs │ │ │ │ ├── PackageDocument.cs │ │ │ │ ├── PageTextBox.cs │ │ │ │ ├── RestrictedTransactionalPackage.cs │ │ │ │ ├── RightsController.cs │ │ │ │ ├── RightsDocument.cs │ │ │ │ ├── RightsManagementErrorHandler.cs │ │ │ │ ├── RightsManagementSuppressedStream.cs │ │ │ │ ├── StatusInfoItem.cs │ │ │ │ ├── StreamDocument.cs │ │ │ │ ├── StreamHelper.cs │ │ │ │ ├── StreamProxy.cs │ │ │ │ ├── SuppressedPackageProperties.cs │ │ │ │ ├── Trace.cs │ │ │ │ ├── TransactionalPackage.cs │ │ │ │ ├── WriteableOnDemandPackagePart.cs │ │ │ │ ├── WriteableOnDemandStream.cs │ │ │ │ ├── XpsViewerException.cs │ │ │ │ └── ZoomComboBox.cs │ │ │ │ ├── CertificatePriorityStatus.cs │ │ │ │ ├── CredentialManagerDialog.Designer.cs │ │ │ │ ├── CredentialManagerDialog.cs │ │ │ │ ├── DialogBaseForm.cs │ │ │ │ ├── DialogDivider.cs │ │ │ │ ├── DigitalSignature.cs │ │ │ │ ├── DigitalSignatureProvider.cs │ │ │ │ ├── DocumentApplicationDocumentViewer.cs │ │ │ │ ├── DocumentSignatureManager.cs │ │ │ │ ├── DocumentStatusResources.cs │ │ │ │ ├── FindToolBar.xaml │ │ │ │ ├── FindToolBar.xaml.cs │ │ │ │ ├── IDigitalSignatureProvider.cs │ │ │ │ ├── IRightsManagementProvider.cs │ │ │ │ ├── PeoplePickerWrapper.cs │ │ │ │ ├── RMEnrollmentPage1.Designer.cs │ │ │ │ ├── RMEnrollmentPage1.cs │ │ │ │ ├── RMEnrollmentPage2.Designer.cs │ │ │ │ ├── RMEnrollmentPage2.cs │ │ │ │ ├── RMEnrollmentPage3.Designer.cs │ │ │ │ ├── RMEnrollmentPage3.cs │ │ │ │ ├── RMPermissions.Designer.cs │ │ │ │ ├── RMPermissions.cs │ │ │ │ ├── RMPublishingDialog.Designer.cs │ │ │ │ ├── RMPublishingDialog.RightsTable.cs │ │ │ │ ├── RMPublishingDialog.cs │ │ │ │ ├── RequestedSignatureDialog.Designer.cs │ │ │ │ ├── RequestedSignatureDialog.cs │ │ │ │ ├── RightsManagementLicense.cs │ │ │ │ ├── RightsManagementManager.cs │ │ │ │ ├── RightsManagementPermissions.cs │ │ │ │ ├── RightsManagementPolicy.cs │ │ │ │ ├── RightsManagementProvider.cs │ │ │ │ ├── RightsManagementResourceHelper.cs │ │ │ │ ├── RightsManagementStatus.cs │ │ │ │ ├── RightsManagementUser.cs │ │ │ │ ├── SignaturePolicy.cs │ │ │ │ ├── SignatureResourceHelper.cs │ │ │ │ ├── SignatureStatus.cs │ │ │ │ ├── SignatureSummaryDialog.Designer.cs │ │ │ │ ├── SignatureSummaryDialog.cs │ │ │ │ ├── SigningDialog.Designer.cs │ │ │ │ ├── SigningDialog.cs │ │ │ │ ├── SigningProgress.Designer.cs │ │ │ │ └── SigningProgress.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── PresentationUI.csproj │ │ ├── PresentationUIStyleResources.cs │ │ ├── Resources │ │ │ ├── DocumentApplication.ico │ │ │ ├── Documents.resx │ │ │ ├── Everyone.ico │ │ │ ├── Invalid_35x35.png │ │ │ ├── Invalid_48x48.png │ │ │ ├── NotSigned_35x35.png │ │ │ ├── NotSigned_48x48.png │ │ │ ├── PeoplePicker.ico │ │ │ ├── Remove.ico │ │ │ ├── StringTable.txt │ │ │ ├── Strings.resx │ │ │ ├── Undetermined_35x35.png │ │ │ ├── Undetermined_48x48.png │ │ │ ├── Unverifiable_35x35.png │ │ │ ├── Unverifiable_48x48.png │ │ │ ├── Valid_35x35.png │ │ │ ├── Valid_48x48.png │ │ │ ├── win32res.rc │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── TenFeetInstallationError.xaml │ │ ├── TenFeetInstallationError.xaml.cs │ │ ├── TenFeetInstallationProgress.xaml │ │ ├── TenFeetInstallationProgress.xaml.cs │ │ ├── ThemeGenerator.pl │ │ ├── Themes │ │ │ ├── Aero.NormalColor.xaml │ │ │ ├── Aero2.NormalColor.xaml │ │ │ ├── AeroLite.NormalColor.xaml │ │ │ ├── Classic.xaml │ │ │ ├── Generic.xaml │ │ │ ├── Luna.HomeStead.xaml │ │ │ ├── Luna.Metallic.xaml │ │ │ ├── Luna.NormalColor.xaml │ │ │ └── MediaCenterTheme.xaml │ │ └── ref │ │ │ ├── PresentationUI-ref.cs │ │ │ └── PresentationUI-ref.csproj │ ├── ReachFramework │ │ ├── AlphaFlattener │ │ │ ├── BrushProxy.cs │ │ │ ├── DrawingContext.cs │ │ │ ├── Flattener.cs │ │ │ ├── ImageProxy.cs │ │ │ ├── Interfaces.cs │ │ │ ├── MetroDevice.cs │ │ │ ├── Optimizer.cs │ │ │ ├── Primitive.cs │ │ │ ├── PrimitiveList.cs │ │ │ ├── PrimitiveRenderer.cs │ │ │ ├── SegmentTree.cs │ │ │ └── Utility.cs │ │ ├── Exceptions │ │ │ ├── ReachException.cs │ │ │ ├── ReachExceptionStringTable.txt │ │ │ ├── ReachPackagingException.cs │ │ │ ├── ReachSerializationException.cs │ │ │ ├── XpsException.cs │ │ │ ├── XpsPackagingException.cs │ │ │ └── XpsSerializationException.cs │ │ ├── GlobalUsings.cs │ │ ├── ILLinkTrim.xml │ │ ├── MS │ │ │ └── Internal │ │ │ │ └── Printing │ │ │ │ ├── Configuration │ │ │ │ ├── COMPSTUISRID.cs │ │ │ │ ├── DevMode.cs │ │ │ │ ├── DevModeCollate.cs │ │ │ │ ├── DevModeColor.cs │ │ │ │ ├── DevModeDitherTypes.cs │ │ │ │ ├── DevModeDuplex.cs │ │ │ │ ├── DevModeFields.cs │ │ │ │ ├── DevModeICMIntents.cs │ │ │ │ ├── DevModeICMMethod.cs │ │ │ │ ├── DevModeMediaTypes.cs │ │ │ │ ├── DevModeNUp.cs │ │ │ │ ├── DevModeOrientation.cs │ │ │ │ ├── DevModePaperSizes.cs │ │ │ │ ├── DevModePaperSources.cs │ │ │ │ ├── DevModeResolutions.cs │ │ │ │ ├── DevModeTrueTypeOption.cs │ │ │ │ ├── DeviceCap.cs │ │ │ │ ├── DeviceCapability.cs │ │ │ │ ├── DocumentPropertiesFlags.cs │ │ │ │ ├── GdiPrintTicketProviderPaperSizes.cs │ │ │ │ ├── HGlobalBuffer.cs │ │ │ │ ├── LoadLibraryExFlags.cs │ │ │ │ ├── PRINTER_INFO_2.cs │ │ │ │ ├── PRINTER_INFO_8_AND_9.cs │ │ │ │ ├── SafeModuleHandle.cs │ │ │ │ ├── SafeWinSpoolPrinterHandle.cs │ │ │ │ ├── UnsafeNativeMethods.cs │ │ │ │ └── WinSpoolPrinterCapabilities.cs │ │ │ │ ├── MostFrequentlyUsedCache.cs │ │ │ │ └── TestHook.cs │ │ ├── Packaging │ │ │ ├── DocumentStructureProvider.cs │ │ │ ├── PartEditor.cs │ │ │ ├── XPSSignatureDefinition.cs │ │ │ ├── XpsColorContext.cs │ │ │ ├── XpsDigitalSignature.cs │ │ │ ├── XpsDocument.cs │ │ │ ├── XpsFixedDocumentReaderWriter.cs │ │ │ ├── XpsFixedDocumentSequenceReaderWriter.cs │ │ │ ├── XpsFixedPageReaderWriter.cs │ │ │ ├── XpsFont.cs │ │ │ ├── XpsImage.cs │ │ │ ├── XpsInterleavingPolicy.cs │ │ │ ├── XpsManager.cs │ │ │ ├── XpsPartBase.cs │ │ │ ├── XpsResource.cs │ │ │ ├── XpsResourceDictionary.cs │ │ │ ├── XpsResourcePolicy.cs │ │ │ ├── XpsStructure.cs │ │ │ └── XpsThumbnail.cs │ │ ├── PrintConfig │ │ │ ├── DocumentNUp.cs │ │ │ ├── FallbackPTProvider.cs │ │ │ ├── JobCollate.cs │ │ │ ├── JobDuplex.cs │ │ │ ├── JobInputBins.cs │ │ │ ├── JobPageOrder.cs │ │ │ ├── JobStaple.cs │ │ │ ├── JobTicketManager.rc │ │ │ ├── PTConverter.cs │ │ │ ├── PTManager.cs │ │ │ ├── PTProvider.cs │ │ │ ├── PTProviderBase.cs │ │ │ ├── PTUtility.cs │ │ │ ├── PageBorderless.cs │ │ │ ├── PageCanvasSize.cs │ │ │ ├── PageCopyCount.cs │ │ │ ├── PageDeviceFont.cs │ │ │ ├── PageMediaSize.cs │ │ │ ├── PageMediaType.cs │ │ │ ├── PageOrientation.cs │ │ │ ├── PageOutputColor.cs │ │ │ ├── PageOutputQuality.cs │ │ │ ├── PageResolution.cs │ │ │ ├── PageScaling.cs │ │ │ ├── PageTrueTypeFont.cs │ │ │ ├── ParameterRefs.cs │ │ │ ├── PhotoPrintingIntent.cs │ │ │ ├── PrintCapabilitesWriter.cs │ │ │ ├── PrintSchema.cs │ │ │ ├── PrintSchemaShim.cs │ │ │ ├── PrtCap_Base.cs │ │ │ ├── PrtCap_Builder.cs │ │ │ ├── PrtCap_Public.cs │ │ │ ├── PrtCap_Public_Simple.cs │ │ │ ├── PrtCap_Reader.cs │ │ │ ├── PrtTicket_Base.cs │ │ │ ├── PrtTicket_Editor.cs │ │ │ ├── PrtTicket_Public.cs │ │ │ └── PrtTicket_Public_Simple.cs │ │ ├── PrintSystemExceptions │ │ │ ├── InteropWin32ApiThunk.cs │ │ │ └── PrintSystemException.cs │ │ ├── ReachFramework.csproj │ │ ├── Resources │ │ │ ├── Strings.resx │ │ │ ├── documentation.txt │ │ │ ├── generated │ │ │ │ ├── Schemas_ContentTypes.resources │ │ │ │ ├── Schemas_CoreProperties.resources │ │ │ │ ├── Schemas_DiscardControl.resources │ │ │ │ ├── Schemas_DocStructure.resources │ │ │ │ ├── Schemas_OPC_DigSig.resources │ │ │ │ ├── Schemas_Relationships.resources │ │ │ │ ├── Schemas_S0.resources │ │ │ │ ├── Schemas_SignatureDefinitions.resources │ │ │ │ ├── Schemas_Versioning.resources │ │ │ │ └── Schemas_xmldsig-core-schema.resources │ │ │ ├── generator │ │ │ │ ├── SchemaGen.cs │ │ │ │ ├── SchemaPP.cs │ │ │ │ └── generate.cmd │ │ │ ├── schemas │ │ │ │ ├── Master │ │ │ │ │ ├── ContentTypes.xsd │ │ │ │ │ ├── ContentTypes.xsd.src │ │ │ │ │ ├── OPC_DigSig.xsd │ │ │ │ │ ├── OPC_DigSig.xsd.src │ │ │ │ │ ├── SignatureDefinitions.xsd │ │ │ │ │ ├── coreproperties.xsd │ │ │ │ │ ├── dc.xsd │ │ │ │ │ ├── dcmitype.xsd │ │ │ │ │ ├── dcterms.xsd │ │ │ │ │ ├── discardcontrol.xsd │ │ │ │ │ ├── docstructure.xsd │ │ │ │ │ ├── rdkey.xsd │ │ │ │ │ ├── relationships.xsd │ │ │ │ │ ├── s0schema.xsd │ │ │ │ │ ├── s0schema.xsd.src │ │ │ │ │ ├── versioning.xsd │ │ │ │ │ └── xmldsig-core-schema.xsd │ │ │ │ └── Validation │ │ │ │ │ ├── __ContentTypes.xsd │ │ │ │ │ ├── __OPC_DigSig.xsd │ │ │ │ │ ├── __SignatureDefinitions.xsd │ │ │ │ │ ├── __coreproperties.xsd │ │ │ │ │ ├── __dc.xsd │ │ │ │ │ ├── __dcmitype.xsd │ │ │ │ │ ├── __dcterms.xsd │ │ │ │ │ ├── __discardcontrol.xsd │ │ │ │ │ ├── __docstructure.xsd │ │ │ │ │ ├── __rdkey.xsd │ │ │ │ │ ├── __relationships.xsd │ │ │ │ │ ├── __s0schema.xsd │ │ │ │ │ ├── __versioning.xsd │ │ │ │ │ └── __xmldsig-core-schema.xsd │ │ │ ├── win32res.rc │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── Serialization │ │ │ ├── ColorTypeConverter.cs │ │ │ ├── Crc32.cs │ │ │ ├── DrawingContextFlattener.cs │ │ │ ├── FontTypeConverter.cs │ │ │ ├── ImageSourceTypeConverter.cs │ │ │ ├── RCW │ │ │ │ ├── IOpcPartUri.cs │ │ │ │ ├── IOpcUri.cs │ │ │ │ ├── IPrintDocumentPackageStatusEvent.cs │ │ │ │ ├── IPrintDocumentPackageTarget.cs │ │ │ │ ├── ISequentialStream.cs │ │ │ │ ├── IUri.cs │ │ │ │ ├── IXpsDocumentPackageTarget.cs │ │ │ │ ├── IXpsOMBrush.cs │ │ │ │ ├── IXpsOMCanvas.cs │ │ │ │ ├── IXpsOMColorProfileResource.cs │ │ │ │ ├── IXpsOMColorProfileResourceCollection.cs │ │ │ │ ├── IXpsOMCoreProperties.cs │ │ │ │ ├── IXpsOMDashCollection.cs │ │ │ │ ├── IXpsOMDictionary.cs │ │ │ │ ├── IXpsOMDocument.cs │ │ │ │ ├── IXpsOMDocumentCollection.cs │ │ │ │ ├── IXpsOMDocumentSequence.cs │ │ │ │ ├── IXpsOMDocumentStructureResource.cs │ │ │ │ ├── IXpsOMFontResource.cs │ │ │ │ ├── IXpsOMFontResourceCollection.cs │ │ │ │ ├── IXpsOMGeometry.cs │ │ │ │ ├── IXpsOMGeometryFigure.cs │ │ │ │ ├── IXpsOMGeometryFigureCollection.cs │ │ │ │ ├── IXpsOMGlyphs.cs │ │ │ │ ├── IXpsOMGlyphsEditor.cs │ │ │ │ ├── IXpsOMGradientBrush.cs │ │ │ │ ├── IXpsOMGradientStop.cs │ │ │ │ ├── IXpsOMGradientStopCollection.cs │ │ │ │ ├── IXpsOMImageBrush.cs │ │ │ │ ├── IXpsOMImageResource.cs │ │ │ │ ├── IXpsOMImageResourceCollection.cs │ │ │ │ ├── IXpsOMLinearGradientBrush.cs │ │ │ │ ├── IXpsOMMatrixTransform.cs │ │ │ │ ├── IXpsOMNameCollection.cs │ │ │ │ ├── IXpsOMObjectFactory.cs │ │ │ │ ├── IXpsOMPackage.cs │ │ │ │ ├── IXpsOMPackageWriter.cs │ │ │ │ ├── IXpsOMPage.cs │ │ │ │ ├── IXpsOMPageReference.cs │ │ │ │ ├── IXpsOMPageReferenceCollection.cs │ │ │ │ ├── IXpsOMPart.cs │ │ │ │ ├── IXpsOMPartResources.cs │ │ │ │ ├── IXpsOMPartUriCollection.cs │ │ │ │ ├── IXpsOMPath.cs │ │ │ │ ├── IXpsOMPrintTicketResource.cs │ │ │ │ ├── IXpsOMRadialGradientBrush.cs │ │ │ │ ├── IXpsOMRemoteDictionaryResource.cs │ │ │ │ ├── IXpsOMRemoteDictionaryResourceCollection.cs │ │ │ │ ├── IXpsOMResource.cs │ │ │ │ ├── IXpsOMShareable.cs │ │ │ │ ├── IXpsOMSignatureBlockResource.cs │ │ │ │ ├── IXpsOMSignatureBlockResourceCollection.cs │ │ │ │ ├── IXpsOMSolidColorBrush.cs │ │ │ │ ├── IXpsOMStoryFragmentsResource.cs │ │ │ │ ├── IXpsOMThumbnailGenerator.cs │ │ │ │ ├── IXpsOMTileBrush.cs │ │ │ │ ├── IXpsOMVisual.cs │ │ │ │ ├── IXpsOMVisualBrush.cs │ │ │ │ ├── IXpsOMVisualCollection.cs │ │ │ │ ├── PrintDocumentPackageCompletion.cs │ │ │ │ ├── PrintDocumentPackageStatus.cs │ │ │ │ ├── PrintDocumentPackageStatusProvider.cs │ │ │ │ ├── Uri_PROPERTY.cs │ │ │ │ ├── XPS_COLOR.cs │ │ │ │ ├── XPS_COLOR_INTERPOLATION.cs │ │ │ │ ├── XPS_COLOR_TYPE.cs │ │ │ │ ├── XPS_COLOR_TYPE_UNION.cs │ │ │ │ ├── XPS_DASH.cs │ │ │ │ ├── XPS_DASH_CAP.cs │ │ │ │ ├── XPS_DOCUMENT_TYPE.cs │ │ │ │ ├── XPS_FILL_RULE.cs │ │ │ │ ├── XPS_FONT_EMBEDDING.cs │ │ │ │ ├── XPS_GLYPH_INDEX.cs │ │ │ │ ├── XPS_GLYPH_MAPPING.cs │ │ │ │ ├── XPS_IMAGE_TYPE.cs │ │ │ │ ├── XPS_INTERLEAVING.cs │ │ │ │ ├── XPS_LINE_CAP.cs │ │ │ │ ├── XPS_LINE_JOIN.cs │ │ │ │ ├── XPS_MATRIX.cs │ │ │ │ ├── XPS_OBJECT_TYPE.cs │ │ │ │ ├── XPS_POINT.cs │ │ │ │ ├── XPS_RECT.cs │ │ │ │ ├── XPS_SCRGB_COLOR.cs │ │ │ │ ├── XPS_SEGMENT_STROKE_PATTERN.cs │ │ │ │ ├── XPS_SEGMENT_TYPE.cs │ │ │ │ ├── XPS_SIZE.cs │ │ │ │ ├── XPS_SPREAD_METHOD.cs │ │ │ │ ├── XPS_SRGB_COLOR.cs │ │ │ │ ├── XPS_STYLE_SIMULATION.cs │ │ │ │ ├── XPS_THUMBNAIL_SIZE.cs │ │ │ │ ├── XPS_TILE_MODE.cs │ │ │ │ ├── XpsOMThumbnailGenerator.cs │ │ │ │ ├── XpsOMThumbnailGeneratorClass.cs │ │ │ │ ├── _FILETIME.cs │ │ │ │ ├── _LARGE_INTEGER.cs │ │ │ │ ├── _SECURITY_ATTRIBUTES.cs │ │ │ │ ├── _SYSTEMTIME.cs │ │ │ │ ├── _ULARGE_INTEGER.cs │ │ │ │ └── tagSTATSTG.cs │ │ │ ├── TreeWalkProgress.cs │ │ │ ├── VisualSerializer.cs │ │ │ ├── VisualTreeFlattener.cs │ │ │ ├── XpsFontSerializationService.cs │ │ │ ├── XpsFontSubsetter.cs │ │ │ ├── XpsImageSerializationService.cs │ │ │ └── manager │ │ │ │ ├── IXpsSerializationManager.cs │ │ │ │ ├── IXpsSerializationManagerAsync.cs │ │ │ │ ├── MetroSerializationManager.cs │ │ │ │ ├── NGCPageContentCollectionSerializerAsync.cs │ │ │ │ ├── NGCPageContentSerializerAsync.cs │ │ │ │ ├── NGCSerializationManager.cs │ │ │ │ ├── NGCSerializationManagerAsync.cs │ │ │ │ ├── NGCSerializer.cs │ │ │ │ ├── NGCSerializerAsync.cs │ │ │ │ ├── NGCUIElementCollectionSerializerAsync.cs │ │ │ │ ├── NullPackagingPolicy.cs │ │ │ │ ├── ReachBasicContext.cs │ │ │ │ ├── ReachDocumentPageSerializer.cs │ │ │ │ ├── ReachDocumentPageSerializerAsync.cs │ │ │ │ ├── ReachDocumentReferenceCollectionSerializer.cs │ │ │ │ ├── ReachDocumentReferenceCollectionSerializerAsync.cs │ │ │ │ ├── ReachDocumentReferenceSerializer.cs │ │ │ │ ├── ReachDocumentReferenceSerializerAsync.cs │ │ │ │ ├── ReachDocumentSequenceSerializer.cs │ │ │ │ ├── ReachDocumentSequenceSerializerAsync.cs │ │ │ │ ├── ReachFixedDocumentSerializer.cs │ │ │ │ ├── ReachFixedDocumentSerializerAsync.cs │ │ │ │ ├── ReachFixedPageSerializer.cs │ │ │ │ ├── ReachFixedPageSerializerAsync.cs │ │ │ │ ├── ReachIDocumentPaginatorSerializer.cs │ │ │ │ ├── ReachIDocumentPaginatorSerializerAsync.cs │ │ │ │ ├── ReachNamespaceInfo.cs │ │ │ │ ├── ReachObjectContext.cs │ │ │ │ ├── ReachPageContentCollectionSerializer.cs │ │ │ │ ├── ReachPageContentCollectionSerializerAsync.cs │ │ │ │ ├── ReachPageContentSerializer.cs │ │ │ │ ├── ReachPageContentSerializerAsync.cs │ │ │ │ ├── ReachPrintTicketSerializer.cs │ │ │ │ ├── ReachPrintTicketSerializerAsync.cs │ │ │ │ ├── ReachSerializableProperties.cs │ │ │ │ ├── ReachSerializationCacheItems.cs │ │ │ │ ├── ReachSerializationUtils.cs │ │ │ │ ├── ReachSerializer.cs │ │ │ │ ├── ReachSerializerAsync.cs │ │ │ │ ├── ReachTokenContext.cs │ │ │ │ ├── ReachUIElementCollectionSerializer.cs │ │ │ │ ├── ReachUIElementCollectionSerializerAsync.cs │ │ │ │ ├── ReachVisualSerializer.cs │ │ │ │ ├── ReachVisualSerializerAsync.cs │ │ │ │ ├── XpsDocumentEvent.cs │ │ │ │ ├── XpsLiterals.cs │ │ │ │ ├── XpsOMDocumentPageSerializer.cs │ │ │ │ ├── XpsOMDocumentPageSerializerAsync.cs │ │ │ │ ├── XpsOMDocumentPaginatorSerializer.cs │ │ │ │ ├── XpsOMDocumentPaginatorSerializerAsync.cs │ │ │ │ ├── XpsOMDocumentSequenceSerializer.cs │ │ │ │ ├── XpsOMDocumentSequenceSerializerAsync.cs │ │ │ │ ├── XpsOMFixedDocumentSerializer.cs │ │ │ │ ├── XpsOMFixedDocumentSerializerAsync.cs │ │ │ │ ├── XpsOMFixedPageSerializer.cs │ │ │ │ ├── XpsOMFixedPageSerializerAsync.cs │ │ │ │ ├── XpsOMHierarchySimulator.cs │ │ │ │ ├── XpsOMPackagingPolicy.cs │ │ │ │ ├── XpsOMSerializationManager.cs │ │ │ │ ├── XpsOMSerializationManagerAsync.cs │ │ │ │ ├── XpsPackagingPolicy.cs │ │ │ │ ├── XpsSerializationManager.cs │ │ │ │ ├── XpsSerializationManagerAsync.cs │ │ │ │ └── XpsTokenContext.cs │ │ ├── SerializerFactory │ │ │ ├── XpsSerializerFactory.cs │ │ │ ├── XpsSerializerWriter.cs │ │ │ └── XpsSerializerWriterCollator.cs │ │ └── ref │ │ │ ├── ReachFramework-ref.csproj │ │ │ └── ReachFramework.cs │ ├── Shared │ │ ├── MS │ │ │ ├── Internal │ │ │ │ ├── AppDomainShutdownMonitor.cs │ │ │ │ ├── CharacterBuffer.cs │ │ │ │ ├── Commands │ │ │ │ │ └── CommandLibraryHelper.cs │ │ │ │ ├── CommonDependencyPropertyAttribute.cs │ │ │ │ ├── CopyOnWriteList.cs │ │ │ │ ├── CriticalExceptions.cs │ │ │ │ ├── CulturePreservingExecutionContext.cs │ │ │ │ ├── DecoderFallbackWithFailureFlag.cs │ │ │ │ ├── DoubleUtil.cs │ │ │ │ ├── FixedPageInfo.cs │ │ │ │ ├── FloatUtil.cs │ │ │ │ ├── FreezableOperations.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── AlignmentXValidation.cs │ │ │ │ │ ├── AlignmentYValidation.cs │ │ │ │ │ ├── BitmapScalingModeValidation.cs │ │ │ │ │ ├── BrushMappingModeValidation.cs │ │ │ │ │ ├── CachingHintValidation.cs │ │ │ │ │ ├── ClearTypeHintValidation.cs │ │ │ │ │ ├── ColorInterpolationModeValidation.cs │ │ │ │ │ ├── EdgeModeValidation.cs │ │ │ │ │ ├── EdgeProfileValidation.cs │ │ │ │ │ ├── FillRuleValidation.cs │ │ │ │ │ ├── GeometryCombineModeValidation.cs │ │ │ │ │ ├── GradientSpreadMethodValidation.cs │ │ │ │ │ ├── KernelTypeValidation.cs │ │ │ │ │ ├── PenLineCapValidation.cs │ │ │ │ │ ├── PenLineJoinValidation.cs │ │ │ │ │ ├── RenderingBiasValidation.cs │ │ │ │ │ ├── RotationValidation.cs │ │ │ │ │ ├── ShaderRenderModeValidation.cs │ │ │ │ │ ├── StretchValidation.cs │ │ │ │ │ ├── SweepDirectionValidation.cs │ │ │ │ │ ├── TextDecorationLocationValidation.cs │ │ │ │ │ ├── TextDecorationUnitValidation.cs │ │ │ │ │ ├── TextHintingModeValidation.cs │ │ │ │ │ ├── TextRenderingModeValidation.cs │ │ │ │ │ ├── TileModeValidation.cs │ │ │ │ │ └── ToleranceTypeValidation.cs │ │ │ │ ├── IO │ │ │ │ │ ├── Packaging │ │ │ │ │ │ ├── CompoundFile │ │ │ │ │ │ │ └── ContainerFlags.cs │ │ │ │ │ │ ├── PackagePartExtensions.cs │ │ │ │ │ │ └── PackagingUtilities.cs │ │ │ │ │ └── SynchronizingStream.cs │ │ │ │ ├── Ink │ │ │ │ │ ├── BitStream.cs │ │ │ │ │ └── Native.cs │ │ │ │ ├── Invariant.cs │ │ │ │ ├── LegacyPriorityQueue.cs │ │ │ │ ├── MatrixUtil.cs │ │ │ │ ├── MimeTypeMapper.cs │ │ │ │ ├── PartialList.cs │ │ │ │ ├── PointUtil.cs │ │ │ │ ├── PriorityQueue.cs │ │ │ │ ├── ReaderWriterLockSlimWrapper.cs │ │ │ │ ├── ReaderWriterLockWrapper.cs │ │ │ │ ├── ReflectionUtils.cs │ │ │ │ ├── Registry.cs │ │ │ │ ├── ResourceIDHelper.cs │ │ │ │ ├── SafeSecurityHelper.cs │ │ │ │ ├── SafeSecurityHelperAvalon.cs │ │ │ │ ├── SecurityHelper.cs │ │ │ │ ├── SequentialUshortCollection.cs │ │ │ │ ├── SizeLimitedCache.cs │ │ │ │ ├── Text │ │ │ │ │ └── InternalEncoding.cs │ │ │ │ ├── TextServicesLoader.cs │ │ │ │ ├── TokenizerHelper.cs │ │ │ │ ├── UriComparer.cs │ │ │ │ ├── WeakReferenceEnumerator.cs │ │ │ │ ├── WeakReferenceList.cs │ │ │ │ └── Xaml │ │ │ │ │ ├── Context │ │ │ │ │ ├── XamlContextStack.cs │ │ │ │ │ └── XamlFrame.cs │ │ │ │ │ └── Parser │ │ │ │ │ └── SpecialBracketCharacters.cs │ │ │ ├── Utility │ │ │ │ ├── BindUriHelper.cs │ │ │ │ ├── DpiAwarenessContext │ │ │ │ │ ├── DpiAwarenessContextHandle+DpiUtil.cs │ │ │ │ │ ├── DpiAwarenessContextHandle.cs │ │ │ │ │ └── DpiAwarenessContextValue.cs │ │ │ │ ├── FrugalList.cs │ │ │ │ ├── FrugalMap.cs │ │ │ │ ├── ItemList.cs │ │ │ │ ├── ItemMap.cs │ │ │ │ ├── Maps.cs │ │ │ │ ├── PerfService.cs │ │ │ │ ├── Trace.cs │ │ │ │ └── TraceProvider.cs │ │ │ └── Win32 │ │ │ │ ├── ExternDll.cs │ │ │ │ ├── HandleCollector.cs │ │ │ │ ├── HwndSubclass.cs │ │ │ │ ├── HwndWrapper.cs │ │ │ │ ├── HwndWrapperHook.cs │ │ │ │ ├── LoadLibraryHelper.cs │ │ │ │ ├── ManagedWndProcTracker.cs │ │ │ │ ├── MessageOnlyHwndWrapper.cs │ │ │ │ ├── NativeMethodsCLR.cs │ │ │ │ ├── NativeMethodsOther.cs │ │ │ │ ├── NativeMethodsSetLastError.cs │ │ │ │ ├── SafeNativeMethodsCLR.cs │ │ │ │ ├── SafeNativeMethodsOther.cs │ │ │ │ ├── SafeSystemMetrics.cs │ │ │ │ ├── UnsafeNativeMethodsCLR.cs │ │ │ │ ├── UnsafeNativeMethodsCompiler.cs │ │ │ │ ├── UnsafeNativeMethodsEventTrace.cs │ │ │ │ ├── UnsafeNativeMethodsOther.cs │ │ │ │ ├── UnsafeNativeMethodsTextServices.cs │ │ │ │ └── WinInet.cs │ │ ├── OSVersionHelper │ │ │ ├── OSVersionHelper.sln │ │ │ ├── OSVersionHelper.vcxproj │ │ │ ├── osversionhelper.cpp │ │ │ ├── watsonreportinghelper.cpp │ │ │ ├── wpfntddk.h │ │ │ └── wpfsdkddkver.h │ │ ├── README.md │ │ ├── RefAssemblyAttrs.cs │ │ ├── System │ │ │ ├── IO │ │ │ │ └── FileHelper.cs │ │ │ └── Windows │ │ │ │ ├── Ink │ │ │ │ └── KnownIds.cs │ │ │ │ ├── Interop │ │ │ │ ├── OSVersionHelper.cs │ │ │ │ └── OperatingSystemVersion.cs │ │ │ │ ├── Markup │ │ │ │ ├── ReflectionHelper.cs │ │ │ │ ├── Replacements │ │ │ │ │ └── TypeUriConverter.cs │ │ │ │ ├── RuntimeIdentifierPropertyAttribute.cs │ │ │ │ ├── TypeConverterHelper.cs │ │ │ │ ├── XmlCompatibilityReader.cs │ │ │ │ └── XmlWrappingReader.cs │ │ │ │ └── Media │ │ │ │ └── TypeConverterHelper.cs │ │ ├── Telemetry │ │ │ └── Managed │ │ │ │ ├── EventSourceActivity.cs │ │ │ │ ├── TelemetryEventSource.cs │ │ │ │ ├── TraceLoggers │ │ │ │ ├── ControlsTraceLogger.cs │ │ │ │ └── XpsOMPrintingTraceLogger.cs │ │ │ │ └── TraceLoggingProvider.cs │ │ ├── Tracing │ │ │ ├── EventTraceCodeGen.cmd │ │ │ ├── managed │ │ │ │ ├── wpf-etw-xaml.cs │ │ │ │ └── wpf-etw.cs │ │ │ ├── mcwpf │ │ │ │ ├── CommandLineParser.cs │ │ │ │ ├── mcwpf.cs │ │ │ │ ├── mcwpf.csproj │ │ │ │ └── wpf_template.cs │ │ │ ├── native │ │ │ │ ├── wpf-etw-valuemaps.h │ │ │ │ ├── wpf-etw.h │ │ │ │ └── wpf-etw.mof.txt │ │ │ ├── resources │ │ │ │ ├── MSG00001.bin │ │ │ │ ├── wpf-etw.rc │ │ │ │ └── wpf-etwTEMP.BIN │ │ │ ├── wpf-etw.evxml │ │ │ ├── wpf-etw.man │ │ │ └── wpf-etw.proj │ │ ├── cpp │ │ │ ├── Utils.cxx │ │ │ └── dwriteloader.cpp │ │ ├── inc │ │ │ ├── BuildInfo.hxx │ │ │ ├── MiscMacros.hxx │ │ │ ├── Utils.hxx │ │ │ ├── WPFEventTrace.h │ │ │ ├── WPFSDL.h │ │ │ ├── ddbanned.h │ │ │ ├── dwriteloader.h │ │ │ └── osversionhelper.h │ │ ├── internal │ │ │ └── multimedia │ │ │ │ └── inc │ │ │ │ ├── attributesbase.h │ │ │ │ └── crescent │ │ │ │ └── wmpdll_i.c │ │ └── ref │ │ │ └── AttributesForReferenceAssemblies.cs │ ├── System.Printing │ │ ├── CPP │ │ │ ├── Win32Inc.cpp │ │ │ ├── Win32Inc.hpp │ │ │ ├── inc │ │ │ │ ├── AsyncNotify.hpp │ │ │ │ ├── AsyncNotifyUnmanaged.hpp │ │ │ │ ├── Driver.hpp │ │ │ │ ├── DriverDataTypes.hpp │ │ │ │ ├── EnumDataThunkObject.hpp │ │ │ │ ├── Filter.hpp │ │ │ │ ├── GDIExporter │ │ │ │ │ ├── FontInfo.hpp │ │ │ │ │ ├── gdibitmap.h │ │ │ │ │ ├── gdidevice.h │ │ │ │ │ ├── gdipath.h │ │ │ │ │ ├── gdirt.h │ │ │ │ │ ├── nativemethods.h │ │ │ │ │ ├── precomp.hpp │ │ │ │ │ ├── printmsg.h │ │ │ │ │ └── utils.h │ │ │ │ ├── GenericDataThunkObjects.hpp │ │ │ │ ├── GenericDriverLevelThunk.hpp │ │ │ │ ├── GenericDriverThunkFilter.hpp │ │ │ │ ├── GenericJobLevelThunk.hpp │ │ │ │ ├── GenericJobThunkFilter.hpp │ │ │ │ ├── GenericPrinterLevelThunk.hpp │ │ │ │ ├── GenericPrinterThunkFilter.hpp │ │ │ │ ├── GenericThunkingInc.hpp │ │ │ │ ├── GenericTypeMappings.hpp │ │ │ │ ├── GetDataThunkObject.hpp │ │ │ │ ├── InternalPrintSystemException.hpp │ │ │ │ ├── InteropAsyncNotify.hpp │ │ │ │ ├── InteropAttributeValueDictionary.hpp │ │ │ │ ├── InteropDevMode.hpp │ │ │ │ ├── InteropDocInfo.hpp │ │ │ │ ├── InteropInfoLevelProfile.hpp │ │ │ │ ├── InteropInterfaces.hpp │ │ │ │ ├── InteropJobInfo.hpp │ │ │ │ ├── InteropLevelCoverageList.hpp │ │ │ │ ├── InteropNameSpaceUsage.hpp │ │ │ │ ├── InteropPrinterDefaults.hpp │ │ │ │ ├── InteropPrinterHandler.hpp │ │ │ │ ├── InteropPrinterHandlerBase.hpp │ │ │ │ ├── InteropPrinterInfo.hpp │ │ │ │ ├── InteropPrinterInfoUnmanagedBuilder.hpp │ │ │ │ ├── InteropWin32ApiThunk.hpp │ │ │ │ ├── LegacyDevice.hpp │ │ │ │ ├── LocalPrintQueue.hpp │ │ │ │ ├── LocalPrintServer.hpp │ │ │ │ ├── Monitor.hpp │ │ │ │ ├── ObjectsAttributesValuesFactory.hpp │ │ │ │ ├── Port.hpp │ │ │ │ ├── PremiumPrintStream.hpp │ │ │ │ ├── PrintDocumentImageableArea.hpp │ │ │ │ ├── PrintJobSettings.hpp │ │ │ │ ├── PrintProcessor.hpp │ │ │ │ ├── PrintQueue.hpp │ │ │ │ ├── PrintQueueComponent.hpp │ │ │ │ ├── PrintServer.hpp │ │ │ │ ├── PrintSystemAttributeValue.hpp │ │ │ │ ├── PrintSystemAttributeValueFactory.hpp │ │ │ │ ├── PrintSystemDefs.hpp │ │ │ │ ├── PrintSystemDelegates.hpp │ │ │ │ ├── PrintSystemDirectInterop.hpp │ │ │ │ ├── PrintSystemException.hpp │ │ │ │ ├── PrintSystemForwardDecl.hpp │ │ │ │ ├── PrintSystemInc.hpp │ │ │ │ ├── PrintSystemInteropInc.hpp │ │ │ │ ├── PrintSystemJobInfo.hpp │ │ │ │ ├── PrintSystemNotifications.hpp │ │ │ │ ├── PrintSystemObject.hpp │ │ │ │ ├── PrintSystemObjectDataTypes.hpp │ │ │ │ ├── PrintSystemObjectFactory.hpp │ │ │ │ ├── PrintSystemPathResolver.hpp │ │ │ │ ├── PrintSystemSecurity.hpp │ │ │ │ ├── PrintSystemUtil.hpp │ │ │ │ ├── PrintSystemWin32InteropInc.hpp │ │ │ │ ├── PrintSystemXPSJob.hpp │ │ │ │ ├── PrintableArchivableDocument.hpp │ │ │ │ ├── PrinterDataTypes.hpp │ │ │ │ ├── PrintersEnumeration.hpp │ │ │ │ ├── SerializeReachAsyncResult.hpp │ │ │ │ ├── SerializeReachInterface.hpp │ │ │ │ ├── SetDataThunkObject.hpp │ │ │ │ ├── XPSDocumentWriter.hpp │ │ │ │ ├── XPSEventHandlers.hpp │ │ │ │ ├── XpsCompatiblePrinter.hpp │ │ │ │ ├── XpsDeviceSimulatingInteropPrinterHandler.hpp │ │ │ │ ├── XpsPrintJobStream.hpp │ │ │ │ ├── XpsPrintStream.hpp │ │ │ │ ├── compstui.h │ │ │ │ ├── printsystemjobenums.hpp │ │ │ │ └── winddiui.h │ │ │ └── src │ │ │ │ ├── AsyncNotify.cpp │ │ │ │ ├── AsyncNotifyUnmanaged.cpp │ │ │ │ ├── Driver.cpp │ │ │ │ ├── EnumDataThunkObject.cpp │ │ │ │ ├── Filter.cpp │ │ │ │ ├── GDIExporter │ │ │ │ ├── FontInfo.cpp │ │ │ │ ├── gdibitmap.cpp │ │ │ │ ├── gdibrush.cpp │ │ │ │ ├── gdidevice.cpp │ │ │ │ ├── gdipath.cpp │ │ │ │ ├── gdipen.cpp │ │ │ │ ├── gdiprintcontext.cpp │ │ │ │ ├── gdirt.cpp │ │ │ │ ├── gditextrt.cpp │ │ │ │ ├── printmsg.cpp │ │ │ │ └── utils.cpp │ │ │ │ ├── GenericDriverLevelThunk.cpp │ │ │ │ ├── GenericDriverThunkFilter.cpp │ │ │ │ ├── GenericJobLevelThunk.cpp │ │ │ │ ├── GenericJobThunkFilter.cpp │ │ │ │ ├── GenericPrinterLevelThunk.cpp │ │ │ │ ├── GenericPrinterThunkFilter.cpp │ │ │ │ ├── GenericTypeMappings.cpp │ │ │ │ ├── GetDataThunkObject.cpp │ │ │ │ ├── InternalPrintSystemException.cpp │ │ │ │ ├── InteropAttributeValueDictionary.cpp │ │ │ │ ├── InteropDevMode.cpp │ │ │ │ ├── InteropDocInfo.cpp │ │ │ │ ├── InteropInfoLevelProfile.cpp │ │ │ │ ├── InteropJobInfo.cpp │ │ │ │ ├── InteropLevelCoverageList.cpp │ │ │ │ ├── InteropPrinterDefaults.cpp │ │ │ │ ├── InteropPrinterHandler.cpp │ │ │ │ ├── InteropPrinterInfo.cpp │ │ │ │ ├── InteropPrinterInfoUnmanagedBuilder.cpp │ │ │ │ ├── LegacyDevice.cpp │ │ │ │ ├── LocalPrintServer.cpp │ │ │ │ ├── ObjectsAttributesValuesFactory.cpp │ │ │ │ ├── Port.cpp │ │ │ │ ├── PremiumPrintStream.cpp │ │ │ │ ├── PrintDocumentImageableArea.cpp │ │ │ │ ├── PrintJobSettings.cpp │ │ │ │ ├── PrintProcessor.cpp │ │ │ │ ├── PrintQueue.cpp │ │ │ │ ├── PrintServer.cpp │ │ │ │ ├── PrintSystemAssemblyInfo.cpp │ │ │ │ ├── PrintSystemAttributeValue.cpp │ │ │ │ ├── PrintSystemAttributeValueFactory.cpp │ │ │ │ ├── PrintSystemJobInfo.cpp │ │ │ │ ├── PrintSystemNotifications.cpp │ │ │ │ ├── PrintSystemObject.cpp │ │ │ │ ├── PrintSystemObjectFactory.cpp │ │ │ │ ├── PrintSystemPathResolver.cpp │ │ │ │ ├── PrintSystemUtil.cpp │ │ │ │ ├── PrintSystemXPSJob.cpp │ │ │ │ ├── SerializeReachAsyncResult.cpp │ │ │ │ ├── SetDataThunkObject.cpp │ │ │ │ ├── System.Printing.rc │ │ │ │ ├── System.PrintingCPP.cpp │ │ │ │ ├── XPSDocumentWriter.cpp │ │ │ │ ├── XPSEventHandlers.cpp │ │ │ │ ├── XpsCompatiblePrinter.cpp │ │ │ │ ├── XpsDeviceSimulatingInteropPrinterHandler.cpp │ │ │ │ ├── XpsPrintJobStream.cpp │ │ │ │ ├── XpsPrintStream.cpp │ │ │ │ └── gdiexporter.cpp │ │ ├── Resources │ │ │ ├── System.Printing.resx │ │ │ └── xlf │ │ │ │ ├── System.Printing.cs.xlf │ │ │ │ ├── System.Printing.de.xlf │ │ │ │ ├── System.Printing.es.xlf │ │ │ │ ├── System.Printing.fr.xlf │ │ │ │ ├── System.Printing.it.xlf │ │ │ │ ├── System.Printing.ja.xlf │ │ │ │ ├── System.Printing.ko.xlf │ │ │ │ ├── System.Printing.pl.xlf │ │ │ │ ├── System.Printing.pt-BR.xlf │ │ │ │ ├── System.Printing.ru.xlf │ │ │ │ ├── System.Printing.tr.xlf │ │ │ │ ├── System.Printing.zh-Hans.xlf │ │ │ │ └── System.Printing.zh-Hant.xlf │ │ ├── System.Printing.vcxproj │ │ └── ref │ │ │ ├── System.Printing-ref.csproj │ │ │ ├── System.Printing.cs │ │ │ └── System.Printing.internals.cs │ ├── System.Windows.Controls.Ribbon │ │ ├── AssemblyAttrs.cs │ │ ├── Images │ │ │ ├── DefaultSystemIcon.png │ │ │ └── GlassyDefaultSystemIcon.png │ │ ├── MS │ │ │ └── Internal │ │ │ │ └── Generated │ │ │ │ └── DoubleUtil.cs │ │ ├── Microsoft │ │ │ └── Windows │ │ │ │ ├── Automation │ │ │ │ └── Peers │ │ │ │ │ ├── InRibbonGalleryAutomationPeer.cs │ │ │ │ │ ├── RibbonApplicationMenuAutomationPeer.cs │ │ │ │ │ ├── RibbonAutomationPeer.cs │ │ │ │ │ ├── RibbonButtonAutomationPeer.cs │ │ │ │ │ ├── RibbonCheckBoxAutomationPeer.cs │ │ │ │ │ ├── RibbonComboBoxAutomationPeer.cs │ │ │ │ │ ├── RibbonContextMenuAutomationPeer.cs │ │ │ │ │ ├── RibbonContextualTabGroupAutomationPeer.cs │ │ │ │ │ ├── RibbonContextualTabGroupDataAutomationPeer.cs │ │ │ │ │ ├── RibbonContextualTabGroupItemsControlAutomationPeer.cs │ │ │ │ │ ├── RibbonControlAutomationPeer.cs │ │ │ │ │ ├── RibbonControlDataAutomationPeer.cs │ │ │ │ │ ├── RibbonControlGroupAutomationPeer.cs │ │ │ │ │ ├── RibbonGalleryAutomationPeer.cs │ │ │ │ │ ├── RibbonGalleryCategoryAutomationPeer.cs │ │ │ │ │ ├── RibbonGalleryCategoryDataAutomationPeer.cs │ │ │ │ │ ├── RibbonGalleryItemAutomationPeer.cs │ │ │ │ │ ├── RibbonGalleryItemDataAutomationPeer.cs │ │ │ │ │ ├── RibbonGroupAutomationPeer.cs │ │ │ │ │ ├── RibbonGroupDataAutomationPeer.cs │ │ │ │ │ ├── RibbonGroupHeaderAutomationPeer.cs │ │ │ │ │ ├── RibbonMenuButtonAutomationPeer.cs │ │ │ │ │ ├── RibbonMenuItemAutomationPeer.cs │ │ │ │ │ ├── RibbonMenuItemDataAutomationPeer.cs │ │ │ │ │ ├── RibbonQuickAccessToolBarAutomationPeer.cs │ │ │ │ │ ├── RibbonRadioButtonAutomationPeer.cs │ │ │ │ │ ├── RibbonSeparatorAutomationPeer.cs │ │ │ │ │ ├── RibbonSplitButtonAutomationPeer.cs │ │ │ │ │ ├── RibbonTabAutomationPeer.cs │ │ │ │ │ ├── RibbonTabDataAutomationPeer.cs │ │ │ │ │ ├── RibbonTabHeaderAutomationPeer.cs │ │ │ │ │ ├── RibbonTabHeaderDataAutomationPeer.cs │ │ │ │ │ ├── RibbonTabHeaderItemsControlAutomationPeer.cs │ │ │ │ │ ├── RibbonTextBoxAutomationPeer.cs │ │ │ │ │ ├── RibbonTitleAutomationPeer.cs │ │ │ │ │ ├── RibbonToggleButtonAutomationPeer.cs │ │ │ │ │ ├── RibbonToolTipAutomationPeer.cs │ │ │ │ │ └── RibbonTwoLineTextAutomationPeer.cs │ │ │ │ ├── Controls │ │ │ │ ├── ActivatingKeyTipEventArgs.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── PropertyHelper.cs │ │ │ │ │ └── TreeHelper.cs │ │ │ │ ├── GenericValueConverters.cs │ │ │ │ ├── KeyTipAccessedEventArgs.cs │ │ │ │ ├── KeyTipAdorner.cs │ │ │ │ ├── KeyTipControl.cs │ │ │ │ ├── KeyTipHorizontalPlacement.cs │ │ │ │ ├── KeyTipService.cs │ │ │ │ ├── KeyTipVerticalPlacement.cs │ │ │ │ ├── Ribbon │ │ │ │ │ ├── InRibbonGallery.cs │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── Primitives │ │ │ │ │ │ ├── IContainsStarLayoutManager.cs │ │ │ │ │ │ ├── IProvideStarLayoutInfo.cs │ │ │ │ │ │ ├── IProvideStarLayoutInfoBase.cs │ │ │ │ │ │ ├── ISupportStarLayout.cs │ │ │ │ │ │ ├── RibbonContextualTabGroupsPanel.cs │ │ │ │ │ │ ├── RibbonGalleryCategoriesPanel.cs │ │ │ │ │ │ ├── RibbonGalleryItemsPanel.cs │ │ │ │ │ │ ├── RibbonGroupItemsPanel.cs │ │ │ │ │ │ ├── RibbonGroupsPanel.cs │ │ │ │ │ │ ├── RibbonMenuItemsPanel.cs │ │ │ │ │ │ ├── RibbonQuickAccessToolBarOverflowPanel.cs │ │ │ │ │ │ ├── RibbonQuickAccessToolBarPanel.cs │ │ │ │ │ │ ├── RibbonScrollButtonVisibilityConverter.cs │ │ │ │ │ │ ├── RibbonTabHeadersPanel.cs │ │ │ │ │ │ ├── RibbonTabsPanel.cs │ │ │ │ │ │ ├── RibbonTitlePanel.cs │ │ │ │ │ │ ├── RibbonWindowSmallIconConverter.cs │ │ │ │ │ │ └── StarLayoutInfo.cs │ │ │ │ │ ├── Ribbon.cs │ │ │ │ │ ├── RibbonApplicationMenu.cs │ │ │ │ │ ├── RibbonApplicationMenuItem.cs │ │ │ │ │ ├── RibbonApplicationMenuItemLevel.cs │ │ │ │ │ ├── RibbonApplicationSplitMenuItem.cs │ │ │ │ │ ├── RibbonButton.cs │ │ │ │ │ ├── RibbonCheckBox.cs │ │ │ │ │ ├── RibbonComboBox.cs │ │ │ │ │ ├── RibbonCommands.cs │ │ │ │ │ ├── RibbonContentPresenter.cs │ │ │ │ │ ├── RibbonContextMenu.cs │ │ │ │ │ ├── RibbonContextualTabGroup.cs │ │ │ │ │ ├── RibbonContextualTabGroupItemsControl.cs │ │ │ │ │ ├── RibbonControl.cs │ │ │ │ │ ├── RibbonControlGroup.cs │ │ │ │ │ ├── RibbonControlLength.cs │ │ │ │ │ ├── RibbonControlLengthConverter.cs │ │ │ │ │ ├── RibbonControlLengthUnitType.cs │ │ │ │ │ ├── RibbonControlService.cs │ │ │ │ │ ├── RibbonControlSizeDefinition.cs │ │ │ │ │ ├── RibbonControlSizeDefinitionCollection.cs │ │ │ │ │ ├── RibbonDismissPopupEventArgs.cs │ │ │ │ │ ├── RibbonDismissPopupEventHandler.cs │ │ │ │ │ ├── RibbonDismissPopupMode.cs │ │ │ │ │ ├── RibbonDropDownHelper.cs │ │ │ │ │ ├── RibbonFilterMenuButton.cs │ │ │ │ │ ├── RibbonGallery.cs │ │ │ │ │ ├── RibbonGalleryCategory.cs │ │ │ │ │ ├── RibbonGalleryItem.cs │ │ │ │ │ ├── RibbonGroup.cs │ │ │ │ │ ├── RibbonGroupSizeDefinition.cs │ │ │ │ │ ├── RibbonGroupSizeDefinitionBase.cs │ │ │ │ │ ├── RibbonGroupSizeDefinitionBaseCollection.cs │ │ │ │ │ ├── RibbonGroupTemplateSizeDefinition.cs │ │ │ │ │ ├── RibbonHelper.cs │ │ │ │ │ ├── RibbonImageSize.cs │ │ │ │ │ ├── RibbonKeyTipAndContentSyncHelper.cs │ │ │ │ │ ├── RibbonMenuButton.cs │ │ │ │ │ ├── RibbonMenuItem.cs │ │ │ │ │ ├── RibbonQuickAccessToolBar.cs │ │ │ │ │ ├── RibbonQuickAccessToolBarCloneEventArgs.cs │ │ │ │ │ ├── RibbonQuickAccessToolBarCloneEventHandler.cs │ │ │ │ │ ├── RibbonRadioButton.cs │ │ │ │ │ ├── RibbonSeparator.cs │ │ │ │ │ ├── RibbonSplitButton.cs │ │ │ │ │ ├── RibbonSplitButtonLabelPosition.cs │ │ │ │ │ ├── RibbonSplitMenuItem.cs │ │ │ │ │ ├── RibbonTab.cs │ │ │ │ │ ├── RibbonTabHeader.cs │ │ │ │ │ ├── RibbonTabHeaderItemsControl.cs │ │ │ │ │ ├── RibbonTextBox.cs │ │ │ │ │ ├── RibbonToggleButton.cs │ │ │ │ │ ├── RibbonToolTip.cs │ │ │ │ │ ├── RibbonToolTipService.cs │ │ │ │ │ ├── RibbonTwoLineText.cs │ │ │ │ │ ├── RibbonWindow.cs │ │ │ │ │ └── StringCollectionConverter.cs │ │ │ │ └── TextSearchInternal.cs │ │ │ │ └── Input │ │ │ │ ├── CommandHelpers.cs │ │ │ │ ├── IPreviewCommand.cs │ │ │ │ └── IPreviewCommandSource.cs │ │ ├── Resources │ │ │ ├── ExceptionStringTable.txt │ │ │ ├── Strings.resx │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System.Windows.Controls.Ribbon.csproj │ │ ├── Themes │ │ │ ├── Aero.NormalColor.xaml │ │ │ ├── Aero.NormalColor.xaml.sdk │ │ │ ├── Aero2.NormalColor.xaml │ │ │ ├── Aero2.NormalColor.xaml.sdk │ │ │ ├── AeroLite.NormalColor.xaml │ │ │ ├── AeroLite.NormalColor.xaml.sdk │ │ │ ├── Generator │ │ │ │ ├── PreprocessXAML.pl │ │ │ │ ├── ThemeGenerator.pl │ │ │ │ └── ThemeGenerator.proj │ │ │ ├── Generic.xaml │ │ │ ├── Generic.xaml.sdk │ │ │ └── XAML │ │ │ │ ├── InRibbonGallery.xaml │ │ │ │ ├── KeyTipControl.xaml │ │ │ │ ├── Ribbon.xaml │ │ │ │ ├── RibbonApplicationMenu.xaml │ │ │ │ ├── RibbonApplicationMenuItem.xaml │ │ │ │ ├── RibbonApplicationSplitMenuItem.xaml │ │ │ │ ├── RibbonButton.xaml │ │ │ │ ├── RibbonCheckBox.xaml │ │ │ │ ├── RibbonComboBox.xaml │ │ │ │ ├── RibbonContextMenu.xaml │ │ │ │ ├── RibbonContextualTabGroup.xaml │ │ │ │ ├── RibbonControl.xaml │ │ │ │ ├── RibbonControlGroup.xaml │ │ │ │ ├── RibbonFilterMenuButton.xaml │ │ │ │ ├── RibbonGallery.xaml │ │ │ │ ├── RibbonGalleryCategory.xaml │ │ │ │ ├── RibbonGalleryItem.xaml │ │ │ │ ├── RibbonGroup.xaml │ │ │ │ ├── RibbonMenuButton.xaml │ │ │ │ ├── RibbonMenuItem.xaml │ │ │ │ ├── RibbonQuickAccessToolBar.xaml │ │ │ │ ├── RibbonRadioButton.xaml │ │ │ │ ├── RibbonSeparator.xaml │ │ │ │ ├── RibbonSharedResources.xaml │ │ │ │ ├── RibbonSplitButton.xaml │ │ │ │ ├── RibbonSplitMenuItem.xaml │ │ │ │ ├── RibbonTab.xaml │ │ │ │ ├── RibbonTabHeader.xaml │ │ │ │ ├── RibbonTabHeaderItemsControl.xaml │ │ │ │ ├── RibbonTabScrollViewer.xaml │ │ │ │ ├── RibbonTextBox.xaml │ │ │ │ ├── RibbonToggleButton.xaml │ │ │ │ ├── RibbonToolTip.xaml │ │ │ │ ├── RibbonTwoLineText.xaml │ │ │ │ └── RibbonWindow.xaml │ │ └── ref │ │ │ ├── System.Windows.Controls.Ribbon-ref.csproj │ │ │ └── System.Windows.Controls.Ribbon.cs │ ├── System.Windows.Input.Manipulations │ │ ├── Resources │ │ │ ├── Strings.resx │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System.Windows.Input.Manipulations.csproj │ │ ├── System │ │ │ └── Windows │ │ │ │ └── Input │ │ │ │ └── Manipulations │ │ │ │ ├── DoubleUtil.cs │ │ │ │ ├── Exceptions.cs │ │ │ │ ├── InertiaExpansionBehavior2D.cs │ │ │ │ ├── InertiaParameters2D.cs │ │ │ │ ├── InertiaProcessor2D.cs │ │ │ │ ├── InertiaRotationBehavior2D.cs │ │ │ │ ├── InertiaTranslationBehavior2D.cs │ │ │ │ ├── Lazy.cs │ │ │ │ ├── Manipulation2DCompletedEventArgs.cs │ │ │ │ ├── Manipulation2DDeltaEventArgs.cs │ │ │ │ ├── Manipulation2DStartedEventArgs.cs │ │ │ │ ├── ManipulationDelta2D.cs │ │ │ │ ├── ManipulationParameters2D.cs │ │ │ │ ├── ManipulationPivot2D.cs │ │ │ │ ├── ManipulationProcessor2D.cs │ │ │ │ ├── ManipulationSequence.cs │ │ │ │ ├── ManipulationVelocities2D.cs │ │ │ │ ├── Manipulations2D.cs │ │ │ │ ├── Manipulator2D.cs │ │ │ │ ├── PointF.cs │ │ │ │ ├── Validations.cs │ │ │ │ ├── VectorD.cs │ │ │ │ └── VectorF.cs │ │ └── ref │ │ │ ├── System.Windows.Input.Manipulations-ref.csproj │ │ │ └── System.Windows.Input.Manipulations.cs │ ├── System.Windows.Presentation │ │ ├── Resources │ │ │ └── ExceptionStringTable.txt │ │ ├── System.Windows.Presentation.csproj │ │ ├── System │ │ │ └── Windows │ │ │ │ ├── Presentation │ │ │ │ └── placeholder.cs │ │ │ │ └── Threading │ │ │ │ ├── DispatcherExtensions.cs │ │ │ │ └── TaskExtensions.cs │ │ └── ref │ │ │ ├── System.Windows.Presentation-ref.csproj │ │ │ └── System.Windows.Presentation.cs │ ├── System.Windows.Primitives │ │ ├── AssemblyInfo.cs │ │ ├── NativeMethods.json │ │ ├── NativeMethods.txt │ │ ├── System.Windows.Primitives.csproj │ │ └── ref │ │ │ └── System.Windows.Primitives-ref.csproj │ ├── System.Xaml │ │ ├── Directory.Build.Props │ │ ├── GlobalSuppressions.cs │ │ ├── GlobalUsings.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── Resources │ │ │ ├── ExceptionStringTable.txt │ │ │ ├── Strings.resx │ │ │ ├── win32res.rc │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System.Xaml.csproj │ │ ├── System.Xaml.sln │ │ ├── System │ │ │ ├── Windows │ │ │ │ └── Markup │ │ │ │ │ ├── AcceptedMarkupExtensionExpressionTypeAttribute.cs │ │ │ │ │ ├── AmbientAttribute.cs │ │ │ │ │ ├── ArrayExtension.cs │ │ │ │ │ ├── ConstructorArgumentAttribute.cs │ │ │ │ │ ├── ContentPropertyAttribute.cs │ │ │ │ │ ├── ContentWrapperAttribute.cs │ │ │ │ │ ├── DateTimeValueSerializer.cs │ │ │ │ │ ├── DependsOnAttribute.cs │ │ │ │ │ ├── DictionaryKeyPropertyAttribute.cs │ │ │ │ │ ├── IComponentConnector.cs │ │ │ │ │ ├── INameScope.cs │ │ │ │ │ ├── INameScopeDictionary.cs │ │ │ │ │ ├── IProvideValueTarget.cs │ │ │ │ │ ├── IQueryAmbient.cs │ │ │ │ │ ├── IUriContext.cs │ │ │ │ │ ├── IValueSerializerContext.cs │ │ │ │ │ ├── IXamlTypeResolver.cs │ │ │ │ │ ├── MarkupExtension.cs │ │ │ │ │ ├── MarkupExtensionBracketCharactersAttribute.cs │ │ │ │ │ ├── MarkupExtensionReturnTypeAttribute.cs │ │ │ │ │ ├── MemberDefinition.cs │ │ │ │ │ ├── NameReferenceConverter.cs │ │ │ │ │ ├── NameScopePropertyAttribute.cs │ │ │ │ │ ├── NullExtension.cs │ │ │ │ │ ├── PropertyDefinition.cs │ │ │ │ │ ├── Reference.cs │ │ │ │ │ ├── RootNamespaceAttribute.cs │ │ │ │ │ ├── StaticExtension.cs │ │ │ │ │ ├── StaticExtensionsToInstanceDescriptorsConverter.cs │ │ │ │ │ ├── TrimSurroundingWhitespaceAttribute.cs │ │ │ │ │ ├── TypeExtension.cs │ │ │ │ │ ├── TypeExtensionConverter.cs │ │ │ │ │ ├── UidPropertyAttribute.cs │ │ │ │ │ ├── UsableDuringInitializationAttribute.cs │ │ │ │ │ ├── ValueSerializer.cs │ │ │ │ │ ├── WhitespaceSignificantCollectionAttribute.cs │ │ │ │ │ ├── XData.cs │ │ │ │ │ ├── XamlDeferLoadAttribute.cs │ │ │ │ │ ├── XamlSetMarkupExtensionAttribute.cs │ │ │ │ │ ├── XamlSetMarkupExtensionEventArgs.cs │ │ │ │ │ ├── XamlSetTypeConverterAttribute.cs │ │ │ │ │ ├── XamlSetTypeConverterEventArgs.cs │ │ │ │ │ ├── XamlSetValueEventArgs.cs │ │ │ │ │ ├── XmlLangPropertyAttribute.cs │ │ │ │ │ ├── XmlnsCompatibleWithAttribute.cs │ │ │ │ │ ├── XmlnsDefinitionAttribute.cs │ │ │ │ │ └── XmlnsPrefixAttribute.cs │ │ │ └── Xaml │ │ │ │ ├── AttachableMemberIdentifier.cs │ │ │ │ ├── AttachablePropertyServices.cs │ │ │ │ ├── Context │ │ │ │ ├── ContextServices.cs │ │ │ │ ├── HashSet.cs │ │ │ │ ├── ICheckIfInitialized.cs │ │ │ │ ├── NameFixupGraph.cs │ │ │ │ ├── NameFixupToken.cs │ │ │ │ ├── ObjectWriterContext.cs │ │ │ │ ├── ObjectWriterFrame.cs │ │ │ │ ├── SavedContext.cs │ │ │ │ ├── ServiceProviderContext.cs │ │ │ │ ├── XamlCommonFrame.cs │ │ │ │ ├── XamlContext.cs │ │ │ │ ├── XamlObjectWriterFactory.cs │ │ │ │ ├── XamlParserContext.cs │ │ │ │ └── XamlParserFrame.cs │ │ │ │ ├── EventConverter.cs │ │ │ │ ├── Events │ │ │ │ ├── ObjectCreatedEventArgs.cs │ │ │ │ └── XamlObjectEventArgs.cs │ │ │ │ ├── IAmbientProvider.cs │ │ │ │ ├── IAttachedPropertyStore.cs │ │ │ │ ├── IDestinationTypeProvider.cs │ │ │ │ ├── INamespacePrefixLookup.cs │ │ │ │ ├── IRootObjectProvider.cs │ │ │ │ ├── IXamlLineInfo.cs │ │ │ │ ├── IXamlLineInfoConsumer.cs │ │ │ │ ├── IXamlNameProvider.cs │ │ │ │ ├── IXamlNameResolver.cs │ │ │ │ ├── IXamlNamespaceResolver.cs │ │ │ │ ├── IXamlObjectWriterFactory.cs │ │ │ │ ├── IXamlSavedContextProvider.cs │ │ │ │ ├── IXamlSchemaContextProvider.cs │ │ │ │ ├── IXamlTemplate.cs │ │ │ │ ├── InfosetObjects │ │ │ │ ├── DeferredWriter.cs │ │ │ │ ├── ObjectWriterSettings.cs │ │ │ │ ├── XamlNodes.cs │ │ │ │ ├── XamlObjectWriter.cs │ │ │ │ ├── XamlObjectWriterSettings.cs │ │ │ │ ├── XamlReaderSettings.cs │ │ │ │ ├── XamlTextReader.cs │ │ │ │ ├── XamlTextReaderSettings.cs │ │ │ │ ├── XamlXmlReader.cs │ │ │ │ └── XamlXmlReaderSettings.cs │ │ │ │ ├── LineInfo.cs │ │ │ │ ├── MS │ │ │ │ └── Impl │ │ │ │ │ ├── AssemblyNamespacePair.cs │ │ │ │ │ ├── ConcurrentDictionary.cs │ │ │ │ │ ├── KnownStrings.cs │ │ │ │ │ ├── PositionalParameterDescriptor.cs │ │ │ │ │ ├── XamlDirectiveCollection.cs │ │ │ │ │ ├── XamlPropertyInfoKey.cs │ │ │ │ │ └── XmlNsInfo.cs │ │ │ │ ├── NameScope.cs │ │ │ │ ├── NameScopeDictionary.cs │ │ │ │ ├── NameValidationHelper.cs │ │ │ │ ├── NamespaceDeclaration.cs │ │ │ │ ├── ObjectReaderSettings.cs │ │ │ │ ├── Parser │ │ │ │ ├── GenericTypeNameParser.cs │ │ │ │ ├── GenericTypeNameScanner.cs │ │ │ │ ├── MePullParser.cs │ │ │ │ ├── MeScanner.cs │ │ │ │ ├── NamespacePrefixLookup.cs │ │ │ │ ├── NodeStreamSorter.cs │ │ │ │ ├── ScannerNodeType.cs │ │ │ │ ├── XamlAttribute.cs │ │ │ │ ├── XamlName.cs │ │ │ │ ├── XamlPropertyName.cs │ │ │ │ ├── XamlPullParser.cs │ │ │ │ ├── XamlQualifiedName.cs │ │ │ │ ├── XamlScanner.cs │ │ │ │ ├── XamlScannerNode.cs │ │ │ │ ├── XamlScannerStack.cs │ │ │ │ └── XamlText.cs │ │ │ │ ├── ReaderBaseDelegate.cs │ │ │ │ ├── ReaderDelegate.cs │ │ │ │ ├── ReaderMultiIndexDelegate.cs │ │ │ │ ├── RefOnly │ │ │ │ └── LooseTypeExtensions.cs │ │ │ │ ├── Replacements │ │ │ │ ├── DateTimeConverter2.cs │ │ │ │ ├── DateTimeOffsetConverter2.cs │ │ │ │ ├── TypeListConverter.cs │ │ │ │ └── TypeTypeConverter.cs │ │ │ │ ├── Runtime │ │ │ │ ├── ClrObjectRuntime.cs │ │ │ │ ├── DynamicMethodRuntime.cs │ │ │ │ ├── PartialTrustTolerantRuntime.cs │ │ │ │ └── XamlRuntimeSettings.cs │ │ │ │ ├── Schema │ │ │ │ ├── AllowedMemberLocations.cs │ │ │ │ ├── BuiltInValueConverter.cs │ │ │ │ ├── ClrAttachableEvent.cs │ │ │ │ ├── ClrAttachableProperty.cs │ │ │ │ ├── ClrEvent.cs │ │ │ │ ├── ClrNamespaceUriParser.cs │ │ │ │ ├── ClrProperty.cs │ │ │ │ ├── CollectionReflector.cs │ │ │ │ ├── DirectiveProperty.cs │ │ │ │ ├── ImplicitProperty.cs │ │ │ │ ├── MemberReflector.cs │ │ │ │ ├── ReferenceEqualityComparer.cs │ │ │ │ ├── Reflector.cs │ │ │ │ ├── TypeBits.cs │ │ │ │ ├── TypeReflector.cs │ │ │ │ ├── UnknownProperty.cs │ │ │ │ ├── XamlCollectionKind.cs │ │ │ │ ├── XamlDirective.cs │ │ │ │ ├── XamlMemberInvoker.cs │ │ │ │ ├── XamlNamespace.cs │ │ │ │ ├── XamlTypeInvoker.cs │ │ │ │ ├── XamlTypeTypeConverter.cs │ │ │ │ ├── XamlValueConverter.cs │ │ │ │ ├── XaslMember.cs │ │ │ │ ├── XaslMemberReference.cs │ │ │ │ ├── XaslNamespace.cs │ │ │ │ └── XmlNamespace.cs │ │ │ │ ├── WriterDelegate.cs │ │ │ │ ├── XamlBackgroundReader.cs │ │ │ │ ├── XamlDeferringLoader.cs │ │ │ │ ├── XamlException.cs │ │ │ │ ├── XamlLanguage.cs │ │ │ │ ├── XamlMarkupExtensionWriter.cs │ │ │ │ ├── XamlMember.cs │ │ │ │ ├── XamlNodeList.cs │ │ │ │ ├── XamlNodeQueue.cs │ │ │ │ ├── XamlObjectReader.cs │ │ │ │ ├── XamlObjectReaderSettings.cs │ │ │ │ ├── XamlProperty.cs │ │ │ │ ├── XamlReader.cs │ │ │ │ ├── XamlRuntime.cs │ │ │ │ ├── XamlSchemaContext.cs │ │ │ │ ├── XamlSchemaContextSettings.cs │ │ │ │ ├── XamlServices.cs │ │ │ │ ├── XamlSubreader.cs │ │ │ │ ├── XamlType.cs │ │ │ │ ├── XamlTypeName.cs │ │ │ │ ├── XamlWriter.cs │ │ │ │ ├── XamlWriterSettings.cs │ │ │ │ ├── XamlXmlWriter.cs │ │ │ │ └── XamlXmlWriterSettings.cs │ │ ├── ms │ │ │ └── Internal │ │ │ │ └── Markup │ │ │ │ ├── StringValueSerializer.cs │ │ │ │ └── TypeConverterValueSerializer.cs │ │ └── ref │ │ │ ├── System.Xaml-ref.csproj │ │ │ └── System.Xaml.cs │ ├── Themes │ │ ├── Generator │ │ │ ├── ThemeGenerator.Fluent.ps1 │ │ │ ├── ThemeGenerator.pl │ │ │ └── ThemeGenerator.proj │ │ ├── PresentationFramework.Aero │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── BulletChrome.cs │ │ │ │ │ ├── ButtonChrome.cs │ │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ │ ├── ListBoxChrome.cs │ │ │ │ │ ├── ProgressBarHighlightConverter.cs │ │ │ │ │ ├── ScrollChrome.cs │ │ │ │ │ └── ScrollGlyph.cs │ │ │ ├── PresentationFramework.Aero.csproj │ │ │ ├── ref │ │ │ │ ├── PresentationFramework.Aero-ref.csproj │ │ │ │ └── PresentationFramework.Aero.cs │ │ │ └── themes │ │ │ │ └── Aero.NormalColor.xaml │ │ ├── PresentationFramework.Aero2 │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── BulletChrome.cs │ │ │ │ │ ├── ButtonChrome.cs │ │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ │ ├── ListBoxChrome.cs │ │ │ │ │ ├── ProgressBarHighlightConverter.cs │ │ │ │ │ ├── ScrollChrome.cs │ │ │ │ │ └── ScrollGlyph.cs │ │ │ ├── PresentationFramework.Aero2.csproj │ │ │ ├── Themes │ │ │ │ └── Aero2.NormalColor.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.Aero2-ref.csproj │ │ │ │ └── PresentationFramework.Aero2.cs │ │ ├── PresentationFramework.AeroLite │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ │ ├── ScrollChrome.cs │ │ │ │ │ └── ScrollGlyph.cs │ │ │ ├── PresentationFramework.AeroLite.csproj │ │ │ ├── Themes │ │ │ │ └── AeroLite.NormalColor.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.AeroLite-ref.csproj │ │ │ │ └── PresentationFramework.AeroLite.cs │ │ ├── PresentationFramework.Classic │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── ClassicBorderDecorator.cs │ │ │ │ │ └── DataGridHeaderBorder.cs │ │ │ ├── PresentationFramework.Classic.csproj │ │ │ ├── Themes │ │ │ │ └── Classic.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.Classic-ref.csproj │ │ │ │ └── PresentationFramework.Classic.cs │ │ ├── PresentationFramework.Fluent │ │ │ ├── Controls │ │ │ │ ├── AnimationFactorToValueConverter.cs │ │ │ │ ├── FallbackBrushConverter.cs │ │ │ │ └── ViewIsGridViewConverter.cs │ │ │ ├── PresentationFramework.Fluent.csproj │ │ │ ├── Resources │ │ │ │ ├── DefaultContextMenu.xaml │ │ │ │ ├── DefaultFocusVisualStyle.xaml │ │ │ │ ├── Fonts.xaml │ │ │ │ ├── StaticColors.xaml │ │ │ │ ├── Theme │ │ │ │ │ ├── Dark.xaml │ │ │ │ │ ├── HC.xaml │ │ │ │ │ └── Light.xaml │ │ │ │ └── Variables.xaml │ │ │ ├── Styles │ │ │ │ ├── Button.xaml │ │ │ │ ├── Calendar.xaml │ │ │ │ ├── CheckBox.xaml │ │ │ │ ├── CollectionViewGroup.xaml │ │ │ │ ├── ComboBox.xaml │ │ │ │ ├── ContentControl.xaml │ │ │ │ ├── ContextMenu.xaml │ │ │ │ ├── DataGrid.xaml │ │ │ │ ├── DatePicker.xaml │ │ │ │ ├── DocumentViewer.xaml │ │ │ │ ├── Expander.xaml │ │ │ │ ├── Frame.xaml │ │ │ │ ├── GridSplitter.xaml │ │ │ │ ├── GridView.xaml │ │ │ │ ├── GroupBox.xaml │ │ │ │ ├── GroupItem.xaml │ │ │ │ ├── HeaderedContentControl.xaml │ │ │ │ ├── Hyperlink.xaml │ │ │ │ ├── ItemsControl.xaml │ │ │ │ ├── Label.xaml │ │ │ │ ├── ListBox.xaml │ │ │ │ ├── ListBoxItem.xaml │ │ │ │ ├── ListView.xaml │ │ │ │ ├── ListViewItem.xaml │ │ │ │ ├── Menu.xaml │ │ │ │ ├── MenuItem.xaml │ │ │ │ ├── NavigationWindow.xaml │ │ │ │ ├── Page.xaml │ │ │ │ ├── PasswordBox.xaml │ │ │ │ ├── ProgressBar.xaml │ │ │ │ ├── RadioButton.xaml │ │ │ │ ├── RepeatButton.xaml │ │ │ │ ├── ResizeGrip.xaml │ │ │ │ ├── RichTextBox.xaml │ │ │ │ ├── ScrollBar.xaml │ │ │ │ ├── ScrollViewer.xaml │ │ │ │ ├── Separator.xaml │ │ │ │ ├── Slider.xaml │ │ │ │ ├── StatusBar.xaml │ │ │ │ ├── StatusBarItem.xaml │ │ │ │ ├── TabControl.xaml │ │ │ │ ├── TextBlock.xaml │ │ │ │ ├── TextBox.xaml │ │ │ │ ├── Thumb.xaml │ │ │ │ ├── ToggleButton.xaml │ │ │ │ ├── ToolBar.xaml │ │ │ │ ├── ToolTip.xaml │ │ │ │ ├── TreeView.xaml │ │ │ │ ├── TreeViewItem.xaml │ │ │ │ ├── UserControl.xaml │ │ │ │ └── Window.xaml │ │ │ ├── Themes │ │ │ │ ├── Fluent.Dark.xaml │ │ │ │ ├── Fluent.HC.xaml │ │ │ │ ├── Fluent.Light.xaml │ │ │ │ └── Fluent.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.Fluent-ref.csproj │ │ │ │ └── PresentationFramework.Fluent.cs │ │ ├── PresentationFramework.Luna │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── ButtonChrome.cs │ │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ │ ├── ScrollChrome.cs │ │ │ │ │ └── ScrollGlyph.cs │ │ │ ├── PresentationFramework.Luna.csproj │ │ │ ├── Themes │ │ │ │ ├── Luna.HomeStead.xaml │ │ │ │ ├── Luna.Metallic.xaml │ │ │ │ └── Luna.NormalColor.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.Luna-ref.csproj │ │ │ │ └── PresentationFramework.Luna.cs │ │ ├── PresentationFramework.Royale │ │ │ ├── Microsoft │ │ │ │ └── Windows │ │ │ │ │ └── Themes │ │ │ │ │ ├── ButtonChrome.cs │ │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ │ ├── ScrollChrome.cs │ │ │ │ │ └── ScrollGlyph.cs │ │ │ ├── PresentationFramework.Royale.csproj │ │ │ ├── Themes │ │ │ │ └── Royale.NormalColor.xaml │ │ │ └── ref │ │ │ │ ├── PresentationFramework.Royale-ref.csproj │ │ │ │ └── PresentationFramework.Royale.cs │ │ ├── Shared │ │ │ └── Microsoft │ │ │ │ └── Windows │ │ │ │ └── Themes │ │ │ │ ├── BulletChrome.cs │ │ │ │ ├── DataGridHeaderBorder.cs │ │ │ │ ├── KnownTypeHelper.cs │ │ │ │ ├── PlatformCulture.cs │ │ │ │ ├── ProgressBarBrushConverter.cs │ │ │ │ └── SystemDropShadowChrome.cs │ │ └── XAML │ │ │ ├── BrowserWindow.xaml │ │ │ ├── Button.xaml │ │ │ ├── Calendar.xaml │ │ │ ├── CheckBox.xaml │ │ │ ├── CollectionViewGroup.xaml │ │ │ ├── ComboBox.xaml │ │ │ ├── ComboBoxItem.xaml │ │ │ ├── ContentControl.xaml │ │ │ ├── ContextMenu.xaml │ │ │ ├── DataGrid.xaml │ │ │ ├── DatePicker.xaml │ │ │ ├── DocumentViewer.xaml │ │ │ ├── Expander.xaml │ │ │ ├── FocusVisual.xaml │ │ │ ├── Frame.xaml │ │ │ ├── GridSplitter.xaml │ │ │ ├── GroupBox.xaml │ │ │ ├── GroupItem.xaml │ │ │ ├── HeaderedContentControl.xaml │ │ │ ├── HyperLink.xaml │ │ │ ├── ItemsControl.xaml │ │ │ ├── Label.xaml │ │ │ ├── ListBox.xaml │ │ │ ├── ListBoxItem.xaml │ │ │ ├── ListView.xaml │ │ │ ├── ListViewItem.xaml │ │ │ ├── Menu.xaml │ │ │ ├── MenuItem.xaml │ │ │ ├── NavigationWindow.xaml │ │ │ ├── Page.xaml │ │ │ ├── ProgressBar.xaml │ │ │ ├── RadioButton.xaml │ │ │ ├── ResizeGrip.xaml │ │ │ ├── ScrollBar.xaml │ │ │ ├── ScrollViewer.xaml │ │ │ ├── Separator.xaml │ │ │ ├── Slider.xaml │ │ │ ├── StatusBar.xaml │ │ │ ├── TabControl.xaml │ │ │ ├── TabItem.xaml │ │ │ ├── TextBox.xaml │ │ │ ├── Thumb.xaml │ │ │ ├── ToolBar.xaml │ │ │ ├── ToolTip.xaml │ │ │ ├── TreeView.xaml │ │ │ ├── TreeViewItem.xaml │ │ │ ├── UserControl.xaml │ │ │ └── Window.xaml │ ├── UIAutomation │ │ ├── UIAutomationClient │ │ │ ├── MS │ │ │ │ ├── Internal │ │ │ │ │ └── Automation │ │ │ │ │ │ ├── Accessible.cs │ │ │ │ │ │ ├── AutomationAttributeInfo.cs │ │ │ │ │ │ ├── AutomationPatternInfo.cs │ │ │ │ │ │ ├── AutomationPropertyInfo.cs │ │ │ │ │ │ ├── BoundingRectTracker.cs │ │ │ │ │ │ ├── CacheHelper.cs │ │ │ │ │ │ ├── CalloutQueueItem.cs │ │ │ │ │ │ ├── ClickablePoint.cs │ │ │ │ │ │ ├── ClientEventManager.cs │ │ │ │ │ │ ├── ClientSideQueueItem.cs │ │ │ │ │ │ ├── CodeQuality_Approved.cs │ │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ │ ├── EventListenerClientSide.cs │ │ │ │ │ │ ├── FocusTracker.cs │ │ │ │ │ │ ├── HwndProxyElementProvider.cs │ │ │ │ │ │ ├── InvokeHandlers.cs │ │ │ │ │ │ ├── MenuTracker.cs │ │ │ │ │ │ ├── Misc.cs │ │ │ │ │ │ ├── ProxyManager.cs │ │ │ │ │ │ ├── QueueProcessor.cs │ │ │ │ │ │ ├── SafeHandles.cs │ │ │ │ │ │ ├── SafeProcessHandle.cs │ │ │ │ │ │ ├── Schema.cs │ │ │ │ │ │ ├── SelectionPatternProviderSideWrapper.cs │ │ │ │ │ │ ├── UiaCoreApi.cs │ │ │ │ │ │ ├── WinEventQueueItem.cs │ │ │ │ │ │ ├── WinEventWrap.cs │ │ │ │ │ │ ├── WindowHideOrCloseTracker.cs │ │ │ │ │ │ ├── WindowInteractionStateTracker.cs │ │ │ │ │ │ ├── WindowShowOrOpenTracker.cs │ │ │ │ │ │ ├── WindowVisualStateTracker.cs │ │ │ │ │ │ └── input.cs │ │ │ │ └── Win32 │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── SafeNativeMethods.cs │ │ │ │ │ └── UnsafeNativeMethods.cs │ │ │ ├── Resources │ │ │ │ ├── Strings.resx │ │ │ │ └── xlf │ │ │ │ │ ├── Strings.cs.xlf │ │ │ │ │ ├── Strings.de.xlf │ │ │ │ │ ├── Strings.es.xlf │ │ │ │ │ ├── Strings.fr.xlf │ │ │ │ │ ├── Strings.it.xlf │ │ │ │ │ ├── Strings.ja.xlf │ │ │ │ │ ├── Strings.ko.xlf │ │ │ │ │ ├── Strings.pl.xlf │ │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ │ ├── Strings.ru.xlf │ │ │ │ │ ├── Strings.tr.xlf │ │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ │ └── Strings.zh-Hant.xlf │ │ │ ├── System │ │ │ │ └── Windows │ │ │ │ │ └── Automation │ │ │ │ │ ├── AndCondition.cs │ │ │ │ │ ├── Automation.cs │ │ │ │ │ ├── AutomationElement.cs │ │ │ │ │ ├── AutomationElementCollection.cs │ │ │ │ │ ├── AutomationFocusChangedEventArgs.cs │ │ │ │ │ ├── BasePattern.cs │ │ │ │ │ ├── CacheRequest.cs │ │ │ │ │ ├── ClientSettings.cs │ │ │ │ │ ├── ClientSideProviderDescription.cs │ │ │ │ │ ├── Condition.cs │ │ │ │ │ ├── DockPattern.cs │ │ │ │ │ ├── ExpandCollapsePattern.cs │ │ │ │ │ ├── GridItemPattern.cs │ │ │ │ │ ├── GridPattern.cs │ │ │ │ │ ├── HeadingLevel.cs │ │ │ │ │ ├── InvokePattern.cs │ │ │ │ │ ├── ItemContainerPattern.cs │ │ │ │ │ ├── MultipleViewPattern.cs │ │ │ │ │ ├── NotCondition.cs │ │ │ │ │ ├── OrCondition.cs │ │ │ │ │ ├── PropertyCondition.cs │ │ │ │ │ ├── RangeValuePattern.cs │ │ │ │ │ ├── ScrollItemPattern.cs │ │ │ │ │ ├── ScrollPattern.cs │ │ │ │ │ ├── SelectionItemPattern.cs │ │ │ │ │ ├── SelectionPattern.cs │ │ │ │ │ ├── SynchronizedInputPattern.cs │ │ │ │ │ ├── TableItemPattern.cs │ │ │ │ │ ├── TablePattern.cs │ │ │ │ │ ├── Text │ │ │ │ │ └── TextRange.cs │ │ │ │ │ ├── TextPattern.cs │ │ │ │ │ ├── TogglePattern.cs │ │ │ │ │ ├── TransformPattern.cs │ │ │ │ │ ├── TreeWalker.cs │ │ │ │ │ ├── ValuePattern.cs │ │ │ │ │ ├── VirtualizedItemPattern.cs │ │ │ │ │ └── WindowPattern.cs │ │ │ ├── UIAutomationClient.csproj │ │ │ └── ref │ │ │ │ ├── UIAutomationClient-ref.csproj │ │ │ │ └── UIAutomationClient.cs │ │ ├── UIAutomationClientSideProviders │ │ │ ├── MS │ │ │ │ ├── Internal │ │ │ │ │ ├── AutomationProxies │ │ │ │ │ │ ├── Accessible.cs │ │ │ │ │ │ ├── ClickablePoint.cs │ │ │ │ │ │ ├── CodeQuality_Approved.cs │ │ │ │ │ │ ├── CommonGetThemePartSize.cs │ │ │ │ │ │ ├── CommonRemoteMemoryBlock.cs │ │ │ │ │ │ ├── CommonXSendMessage.cs │ │ │ │ │ │ ├── EmptyElement.cs │ │ │ │ │ │ ├── EventManager.cs │ │ │ │ │ │ ├── Input.cs │ │ │ │ │ │ ├── MSAAEventDispatcher.cs │ │ │ │ │ │ ├── MSAANativeProvider.cs │ │ │ │ │ │ ├── MSAAWinEventWrap.cs │ │ │ │ │ │ ├── Main.cs │ │ │ │ │ │ ├── Misc.cs │ │ │ │ │ │ ├── NonClientArea.cs │ │ │ │ │ │ ├── OleObject.cs │ │ │ │ │ │ ├── ProxyFragment.cs │ │ │ │ │ │ ├── ProxyHwnd.cs │ │ │ │ │ │ ├── ProxySimple.cs │ │ │ │ │ │ ├── QueueProcessor.cs │ │ │ │ │ │ ├── SafeCoTaskMem.cs │ │ │ │ │ │ ├── SafeProcessHandle.cs │ │ │ │ │ │ ├── SafeThemeHandle.cs │ │ │ │ │ │ ├── Tom.cs │ │ │ │ │ │ ├── WinEventTracker.cs │ │ │ │ │ │ ├── WinFormsSpinner.cs │ │ │ │ │ │ ├── WindowsAltTab.cs │ │ │ │ │ │ ├── WindowsButton.cs │ │ │ │ │ │ ├── WindowsComboBox.cs │ │ │ │ │ │ ├── WindowsContainer.cs │ │ │ │ │ │ ├── WindowsEditBox.cs │ │ │ │ │ │ ├── WindowsEditBoxRange.cs │ │ │ │ │ │ ├── WindowsFormsHelpers.cs │ │ │ │ │ │ ├── WindowsFormsLinkLabel.cs │ │ │ │ │ │ ├── WindowsGrip.cs │ │ │ │ │ │ ├── WindowsHyperlink.cs │ │ │ │ │ │ ├── WindowsIPAddress.cs │ │ │ │ │ │ ├── WindowsListBox.cs │ │ │ │ │ │ ├── WindowsListView.cs │ │ │ │ │ │ ├── WindowsListViewGroup.cs │ │ │ │ │ │ ├── WindowsListViewGroupHelper.cs │ │ │ │ │ │ ├── WindowsListViewGroupSubsetLink.cs │ │ │ │ │ │ ├── WindowsListViewItem.cs │ │ │ │ │ │ ├── WindowsListViewItemCheckBox.cs │ │ │ │ │ │ ├── WindowsListViewItemStartMenu.cs │ │ │ │ │ │ ├── WindowsListViewScroll.cs │ │ │ │ │ │ ├── WindowsListViewSubItem.cs │ │ │ │ │ │ ├── WindowsMenu.cs │ │ │ │ │ │ ├── WindowsNonControl.cs │ │ │ │ │ │ ├── WindowsProgressbar.cs │ │ │ │ │ │ ├── WindowsRebar.cs │ │ │ │ │ │ ├── WindowsRichEdit.cs │ │ │ │ │ │ ├── WindowsRichEditRange.cs │ │ │ │ │ │ ├── WindowsScroll.cs │ │ │ │ │ │ ├── WindowsScrollBar.cs │ │ │ │ │ │ ├── WindowsScrollBarBits.cs │ │ │ │ │ │ ├── WindowsSlider.cs │ │ │ │ │ │ ├── WindowsSpinner.cs │ │ │ │ │ │ ├── WindowsStartMenu.cs │ │ │ │ │ │ ├── WindowsStatic.cs │ │ │ │ │ │ ├── WindowsStatusBar.cs │ │ │ │ │ │ ├── WindowsSysHeader.cs │ │ │ │ │ │ ├── WindowsTab.cs │ │ │ │ │ │ ├── WindowsTitleBar.cs │ │ │ │ │ │ ├── WindowsToolbar.cs │ │ │ │ │ │ ├── WindowsToolbarAsMenu.cs │ │ │ │ │ │ ├── WindowsToolbarItemAsMenuItem.cs │ │ │ │ │ │ ├── WindowsTooltip.cs │ │ │ │ │ │ ├── WindowsTreeView.cs │ │ │ │ │ │ ├── WindowsUpDown.cs │ │ │ │ │ │ └── WordBreaker.cs │ │ │ │ │ └── UnsupportedAutomationProxies │ │ │ │ │ │ ├── SuperGridProvider.cs │ │ │ │ │ │ ├── WindowsCalendar.cs │ │ │ │ │ │ ├── WindowsDateTimePicker.cs │ │ │ │ │ │ └── windowspager.cs │ │ │ │ └── Win32 │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── SafeNativeMethods.cs │ │ │ │ │ ├── UnsafeNativeMethods.cs │ │ │ │ │ └── externdll.cs │ │ │ ├── Resources │ │ │ │ ├── ExceptionStringTable.txt │ │ │ │ ├── StringTable.txt │ │ │ │ ├── Strings.resx │ │ │ │ └── xlf │ │ │ │ │ ├── Strings.cs.xlf │ │ │ │ │ ├── Strings.de.xlf │ │ │ │ │ ├── Strings.es.xlf │ │ │ │ │ ├── Strings.fr.xlf │ │ │ │ │ ├── Strings.it.xlf │ │ │ │ │ ├── Strings.ja.xlf │ │ │ │ │ ├── Strings.ko.xlf │ │ │ │ │ ├── Strings.pl.xlf │ │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ │ ├── Strings.ru.xlf │ │ │ │ │ ├── Strings.tr.xlf │ │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ │ └── Strings.zh-Hant.xlf │ │ │ ├── UIAutomationClientSideProviders.csproj │ │ │ └── ref │ │ │ │ ├── UIAutomationClientSideProviders-ref.csproj │ │ │ │ └── UIAutomationClientSideProviders.cs │ │ ├── UIAutomationProvider │ │ │ ├── Forwards.cs │ │ │ ├── MS │ │ │ │ └── Internal │ │ │ │ │ └── Automation │ │ │ │ │ └── UiaCoreProviderApi.cs │ │ │ ├── Resources │ │ │ │ ├── Strings.resx │ │ │ │ └── xlf │ │ │ │ │ ├── Strings.cs.xlf │ │ │ │ │ ├── Strings.de.xlf │ │ │ │ │ ├── Strings.es.xlf │ │ │ │ │ ├── Strings.fr.xlf │ │ │ │ │ ├── Strings.it.xlf │ │ │ │ │ ├── Strings.ja.xlf │ │ │ │ │ ├── Strings.ko.xlf │ │ │ │ │ ├── Strings.pl.xlf │ │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ │ ├── Strings.ru.xlf │ │ │ │ │ ├── Strings.tr.xlf │ │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ │ └── Strings.zh-Hant.xlf │ │ │ ├── System │ │ │ │ └── Windows │ │ │ │ │ └── Automation │ │ │ │ │ └── Provider │ │ │ │ │ ├── AutomationInteropProvider.cs │ │ │ │ │ ├── IDockProvider.cs │ │ │ │ │ ├── IExpandCollapseProvider.cs │ │ │ │ │ ├── IGridItemProvider.cs │ │ │ │ │ ├── IGridProvider.cs │ │ │ │ │ ├── IInvokeProvider.cs │ │ │ │ │ ├── IItemContainerProvider.cs │ │ │ │ │ ├── IMultipleViewProvider.cs │ │ │ │ │ ├── IRangeValueProvider.cs │ │ │ │ │ ├── IRawElementProviderAdviseEvents.cs │ │ │ │ │ ├── IRawElementProviderFragment.cs │ │ │ │ │ ├── IRawElementProviderFragmentRoot.cs │ │ │ │ │ ├── IRawElementProviderHwndOverride.cs │ │ │ │ │ ├── IScrollItemProvider.cs │ │ │ │ │ ├── IScrollProvider.cs │ │ │ │ │ ├── ISelectionItemProvider.cs │ │ │ │ │ ├── ISelectionProvider.cs │ │ │ │ │ ├── ISynchronizedInputProvider.cs │ │ │ │ │ ├── ITableItemProvider.cs │ │ │ │ │ ├── ITableProvider.cs │ │ │ │ │ ├── ITextProvider.cs │ │ │ │ │ ├── IToggleProvider.cs │ │ │ │ │ ├── ITransformProvider.cs │ │ │ │ │ ├── IValueProvider.cs │ │ │ │ │ ├── IVirtualizedItemProvider.cs │ │ │ │ │ └── IWindowProvider.cs │ │ │ ├── UIAutomationProvider.csproj │ │ │ └── ref │ │ │ │ ├── UIAutomationProvider-ref.csproj │ │ │ │ └── UIAutomationProvider.cs │ │ └── UIAutomationTypes │ │ │ ├── MS │ │ │ └── Internal │ │ │ │ └── Automation │ │ │ │ ├── AutomationIdentifierConstants.cs │ │ │ │ ├── CodeQuality_Approved.cs │ │ │ │ └── UiaCoreTypesApi.cs │ │ │ ├── Resources │ │ │ ├── Strings.resx │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ │ ├── System │ │ │ └── Windows │ │ │ │ └── Automation │ │ │ │ ├── ActiveTextPositionChangedEventArgs.cs │ │ │ │ ├── AsyncContentLoadedEventArgs.cs │ │ │ │ ├── AsyncContentLoadedState.cs │ │ │ │ ├── AutomationElementIdentifiers.cs │ │ │ │ ├── AutomationEvent.cs │ │ │ │ ├── AutomationEventArgs.cs │ │ │ │ ├── AutomationIdentifier.cs │ │ │ │ ├── AutomationNotificationKind.cs │ │ │ │ ├── AutomationNotificationProcessing.cs │ │ │ │ ├── AutomationPattern.cs │ │ │ │ ├── AutomationProperty.cs │ │ │ │ ├── AutomationPropertyChangedEventArgs.cs │ │ │ │ ├── AutomationTextAttribute.cs │ │ │ │ ├── ControlType.cs │ │ │ │ ├── DockPatternIdentifiers.cs │ │ │ │ ├── ElementNotAvailableException.cs │ │ │ │ ├── ElementNotEnabledException.cs │ │ │ │ ├── ExpandCollapsePatternIdentifiers.cs │ │ │ │ ├── GridItemPatternIdentifiers.cs │ │ │ │ ├── GridPatternIdentifiers.cs │ │ │ │ ├── InvokePatternIdentifiers.cs │ │ │ │ ├── ItemContainerPatternIdentifiers.cs │ │ │ │ ├── MultipleViewPatternIdentifiers.cs │ │ │ │ ├── NoClickablePointException.cs │ │ │ │ ├── NotificationEventArgs.cs │ │ │ │ ├── OrientationType.cs │ │ │ │ ├── Provider │ │ │ │ ├── IRawElementProviderSimple.cs │ │ │ │ └── ITextRangeProvider.cs │ │ │ │ ├── ProxyAssemblyNotLoadedException.cs │ │ │ │ ├── RangeValuePatternIdentifiers.cs │ │ │ │ ├── ScrollItemPatternIdentifiers.cs │ │ │ │ ├── ScrollPatternIdentifiers.cs │ │ │ │ ├── SelectionItemPatternIdentifiers.cs │ │ │ │ ├── SelectionPatternIdentifiers.cs │ │ │ │ ├── StructureChangedEventArgs.cs │ │ │ │ ├── SynchronizedInputPatternIdentifiers.cs │ │ │ │ ├── TableItemPatternIdentifiers.cs │ │ │ │ ├── TablePatternIdentifiers.cs │ │ │ │ ├── Text │ │ │ │ └── TextEnums.cs │ │ │ │ ├── TextPatternIdentifiers.cs │ │ │ │ ├── TogglePatternIdentifiers.cs │ │ │ │ ├── TransformPatternIdentifiers.cs │ │ │ │ ├── TreeScope.cs │ │ │ │ ├── ValuePatternIdentifiers.cs │ │ │ │ ├── VirtualizedItemPatternIdentifiers.cs │ │ │ │ ├── WindowClosedEventArgs.cs │ │ │ │ └── WindowPatternIdentifiers.cs │ │ │ ├── UIAutomationTypes.csproj │ │ │ └── ref │ │ │ ├── UIAutomationTypes-ref.csproj │ │ │ └── UIAutomationTypes.cs │ ├── WindowsBase │ │ ├── AvTraceMessages.txt │ │ ├── AvTraceMessages.xml │ │ ├── GlobalUsings.cs │ │ ├── LibraryAssemblyInfo.cs │ │ ├── MS │ │ │ └── Internal │ │ │ │ ├── AssemblyHelper.cs │ │ │ │ ├── AvTrace.cs │ │ │ │ ├── AvTraceDetails.cs │ │ │ │ ├── AvTraceFormat.cs │ │ │ │ ├── BaseAppContextSwitches.cs │ │ │ │ ├── CleanupHelper.cs │ │ │ │ ├── ComponentModel │ │ │ │ ├── APCustomTypeDescriptor.cs │ │ │ │ ├── AttachInfo.cs │ │ │ │ ├── AttachedPropertyMethodSelector.cs │ │ │ │ ├── DPCustomTypeDescriptor.cs │ │ │ │ ├── DependencyObjectPropertyDescriptor.cs │ │ │ │ ├── DependencyObjectProvider.cs │ │ │ │ ├── DependencyPropertyAttribute.cs │ │ │ │ ├── DependencyPropertyKind.cs │ │ │ │ ├── PropertyChangeTracker.cs │ │ │ │ ├── PropertyDescriptorComparer.cs │ │ │ │ └── PropertyKey.cs │ │ │ │ ├── ContentType.cs │ │ │ │ ├── DefaultValueFactory.cs │ │ │ │ ├── FreezableDefaultValueFactory.cs │ │ │ │ ├── Generated │ │ │ │ └── AvTraceMessages.cs │ │ │ │ ├── GenericsInstances.cs │ │ │ │ ├── IO │ │ │ │ └── Packaging │ │ │ │ │ ├── Certificate.cs │ │ │ │ │ ├── CompoundFile │ │ │ │ │ ├── CFStream.cs │ │ │ │ │ ├── CompoundFileDeflateTransform.cs │ │ │ │ │ ├── CompoundFileReference.cs │ │ │ │ │ ├── CompoundFileStorageReference.cs │ │ │ │ │ ├── CompoundFileStreamReference.cs │ │ │ │ │ ├── CompressionTransform.cs │ │ │ │ │ ├── ContainerUtilities.cs │ │ │ │ │ ├── InternalSafeNativeCompoundFileConstants.cs │ │ │ │ │ ├── InternalSafeNativeCompoundFileInterfaces.cs │ │ │ │ │ ├── NativeCompoundFileAPIs.cs │ │ │ │ │ ├── PrivateUnsafeNativeCompoundFileMethods.cs │ │ │ │ │ ├── RightsManagementEncryptedStream.cs │ │ │ │ │ ├── RightsManagementEncryptionTransform.cs │ │ │ │ │ ├── StreamWithDictionary.cs │ │ │ │ │ ├── UserUseLicenseDictionaryLoader.cs │ │ │ │ │ ├── VersionedStream.cs │ │ │ │ │ └── VersionedStreamOwner.cs │ │ │ │ │ ├── CompressEmulationStream.cs │ │ │ │ │ ├── CustomSignedXml.cs │ │ │ │ │ ├── DeflateEmulationStream.cs │ │ │ │ │ ├── ITrackingMemoryStreamFactory.cs │ │ │ │ │ ├── IgnoreFlushAndCloseStream.cs │ │ │ │ │ ├── InternalRelationshipCollection.cs │ │ │ │ │ ├── OlePropertyStructs.cs │ │ │ │ │ ├── PackUriHelper.cs │ │ │ │ │ ├── PackageXmlNamespaces.txt │ │ │ │ │ ├── PackageXmlStrings.txt │ │ │ │ │ ├── PackagingExtensions.cs │ │ │ │ │ ├── PartManifestEntry.cs │ │ │ │ │ ├── SparseMemoryStream.cs │ │ │ │ │ ├── StorageBasedPackageProperties.cs │ │ │ │ │ ├── TrackingMemoryStream.cs │ │ │ │ │ ├── TrackingMemoryStreamFactory.cs │ │ │ │ │ ├── XmlDigitalSignatureProcessor.cs │ │ │ │ │ ├── XmlSignatureManifest.cs │ │ │ │ │ ├── XmlSignatureProperties.cs │ │ │ │ │ └── XmlStringTable.cs │ │ │ │ ├── InheritanceContextChangedEventManager.cs │ │ │ │ ├── InheritanceContextHelper.cs │ │ │ │ ├── Interop │ │ │ │ ├── ErrorCodes.cs │ │ │ │ ├── NativeStructs.cs │ │ │ │ └── NativeValues.cs │ │ │ │ ├── KnownBoxes.cs │ │ │ │ ├── NamedObject.cs │ │ │ │ ├── ObservableCollectionDefaultValueFactory.cs │ │ │ │ ├── PlatformCulture.cs │ │ │ │ ├── PriorityChain.cs │ │ │ │ ├── PriorityItem.cs │ │ │ │ ├── PriorityQueue.cs │ │ │ │ ├── Security │ │ │ │ ├── AttachmentService.cs │ │ │ │ └── RightsManagement │ │ │ │ │ ├── CallbackHandler.cs │ │ │ │ │ ├── ClientSession.cs │ │ │ │ │ ├── Errors.cs │ │ │ │ │ ├── InternalSafeNativeMethods.cs │ │ │ │ │ ├── IssuanceLicense.cs │ │ │ │ │ ├── NativeRightsManagementAPIsConstants.cs │ │ │ │ │ ├── NativeRightsManagementAPIsStructures.cs │ │ │ │ │ ├── PrivateUnsafeNativeMethods.cs │ │ │ │ │ ├── RevocationPoint.cs │ │ │ │ │ ├── RightNameExpirationInfoPair.cs │ │ │ │ │ ├── SafeRightsManagementEnvironmentHandle.cs │ │ │ │ │ ├── SafeRightsManagementHandle.cs │ │ │ │ │ ├── SafeRightsManagementPubHandle.cs │ │ │ │ │ ├── SafeRightsManagementQueryHandle.cs │ │ │ │ │ └── SafeRightsManagementSessionHandle.cs │ │ │ │ ├── ShutDownListener.cs │ │ │ │ ├── SystemCoreExtensionMethods.cs │ │ │ │ ├── SystemDataExtensionMethods.cs │ │ │ │ ├── SystemDrawingExtensionMethods.cs │ │ │ │ ├── SystemXmlExtensionMethods.cs │ │ │ │ ├── SystemXmlLinqExtensionMethods.cs │ │ │ │ ├── Threading │ │ │ │ ├── ExceptionFilterHelper.cs │ │ │ │ └── ExceptionWrapper.cs │ │ │ │ ├── TraceLevelStore.cs │ │ │ │ ├── Utilities.cs │ │ │ │ ├── Verify.cs │ │ │ │ ├── WeakEventTable.cs │ │ │ │ └── WeakReferenceKey.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── Resources │ │ │ ├── Strings.resx │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── SR.cs │ │ ├── System │ │ │ ├── AppContextDefaultValues.cs │ │ │ ├── Collections │ │ │ │ ├── ObjectModel │ │ │ │ │ └── WeakReadOnlyCollection.cs │ │ │ │ └── Specialized │ │ │ │ │ └── CollectionChangedEventManager.cs │ │ │ ├── ComponentModel │ │ │ │ ├── CurrentChangedEventManager.cs │ │ │ │ ├── CurrentChangingEventArgs.cs │ │ │ │ ├── CurrentChangingEventManager.cs │ │ │ │ ├── DependencyPropertyDescriptor.cs │ │ │ │ ├── ErrorsChangedEventManager.cs │ │ │ │ ├── GroupDescription.cs │ │ │ │ ├── ICollectionView.cs │ │ │ │ ├── ICollectionViewFactory.cs │ │ │ │ ├── ICollectionViewLiveShaping.cs │ │ │ │ ├── IEditableCollectionView.cs │ │ │ │ ├── IEditableCollectionViewAddNewItem.cs │ │ │ │ ├── IItemProperties.cs │ │ │ │ ├── PropertyChangedEventManager.cs │ │ │ │ ├── PropertyFilterAttribute.cs │ │ │ │ ├── PropertyFilterFlags.cs │ │ │ │ ├── SortDescription.cs │ │ │ │ └── SortDescriptionCollection.cs │ │ │ ├── Diagnostics │ │ │ │ ├── Generated │ │ │ │ │ └── PresentationTraceSources.cs │ │ │ │ └── PresentationTraceSources.cs │ │ │ ├── IO │ │ │ │ └── Packaging │ │ │ │ │ ├── CompoundFile │ │ │ │ │ ├── DataSpaceManager.cs │ │ │ │ │ ├── FormatVersion.cs │ │ │ │ │ ├── StorageInfo.cs │ │ │ │ │ ├── StorageRoot.cs │ │ │ │ │ ├── StreamInfo.cs │ │ │ │ │ └── VersionPair.cs │ │ │ │ │ ├── EncryptedPackage.cs │ │ │ │ │ ├── PackageDigitalSignature.cs │ │ │ │ │ ├── PackageDigitalSignatureManager.cs │ │ │ │ │ └── RightsManagementInformation.cs │ │ │ ├── Reflection │ │ │ │ └── ICustomTypeProvider.cs │ │ │ ├── Security │ │ │ │ └── RightsManagement │ │ │ │ │ ├── AuthenticationType.cs │ │ │ │ │ ├── CryptoProvider.cs │ │ │ │ │ ├── Exceptions.cs │ │ │ │ │ ├── Grant.cs │ │ │ │ │ ├── LocalizedNameDescriptionPair.cs │ │ │ │ │ ├── PublishLicense.cs │ │ │ │ │ ├── Right.cs │ │ │ │ │ ├── RightsManagementFailureCode.cs │ │ │ │ │ ├── SecureEnvironment.cs │ │ │ │ │ ├── UnsignedPublishLicense.cs │ │ │ │ │ ├── UseLicense.cs │ │ │ │ │ ├── User.cs │ │ │ │ │ └── UserActivationMode.cs │ │ │ └── Windows │ │ │ │ ├── AccessibilitySwitches.cs │ │ │ │ ├── AttachedPropertyBrowsableAttribute.cs │ │ │ │ ├── AttachedPropertyBrowsableForTypeAttribute.cs │ │ │ │ ├── AttachedPropertyBrowsableWhenAttributePresentAttribute.cs │ │ │ │ ├── BaseCompatibilityPreferences.cs │ │ │ │ ├── CoerceValueCallback.cs │ │ │ │ ├── Converters │ │ │ │ └── Generated │ │ │ │ │ ├── Int32RectValueSerializer.cs │ │ │ │ │ ├── PointValueSerializer.cs │ │ │ │ │ ├── RectValueSerializer.cs │ │ │ │ │ ├── SizeValueSerializer.cs │ │ │ │ │ └── VectorValueSerializer.cs │ │ │ │ ├── Data │ │ │ │ └── DataSourceProvider.cs │ │ │ │ ├── DeferredReference.cs │ │ │ │ ├── DependencyObject.cs │ │ │ │ ├── DependencyObjectType.cs │ │ │ │ ├── DependencyProperty.cs │ │ │ │ ├── DependencyPropertyChangedEventArgs.cs │ │ │ │ ├── DependencyPropertyChangedEventHandler.cs │ │ │ │ ├── DependencyPropertyKey.cs │ │ │ │ ├── DependencyPropertyValueSerializer.cs │ │ │ │ ├── DependencySource.cs │ │ │ │ ├── DependentList.cs │ │ │ │ ├── DesignerSerializationOptions.cs │ │ │ │ ├── DesignerSerializationOptionsAttribute.cs │ │ │ │ ├── EffectiveValueEntry.cs │ │ │ │ ├── EntryIndex.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionConverter.cs │ │ │ │ ├── Freezable.cs │ │ │ │ ├── FreezeValueCallback.cs │ │ │ │ ├── Generated │ │ │ │ ├── Int32Rect.cs │ │ │ │ ├── Int32RectConverter.cs │ │ │ │ ├── Point.cs │ │ │ │ ├── PointConverter.cs │ │ │ │ ├── Rect.cs │ │ │ │ ├── RectConverter.cs │ │ │ │ ├── Size.cs │ │ │ │ ├── SizeConverter.cs │ │ │ │ ├── Vector.cs │ │ │ │ └── VectorConverter.cs │ │ │ │ ├── ISealable.cs │ │ │ │ ├── IWeakEventListener.cs │ │ │ │ ├── Input │ │ │ │ ├── Key.cs │ │ │ │ ├── KeyConverter.cs │ │ │ │ ├── KeyInterop.cs │ │ │ │ ├── KeyValueSerializer.cs │ │ │ │ ├── ModifierKeys.cs │ │ │ │ ├── ModifierKeysConverter.cs │ │ │ │ ├── ModifierKeysValueSerializer.cs │ │ │ │ └── TraversalRequest.cs │ │ │ │ ├── Int32Rect.cs │ │ │ │ ├── Interop │ │ │ │ ├── ComponentDispatcher.cs │ │ │ │ ├── ComponentDispatcherThread.cs │ │ │ │ ├── IKeyboardInputSink.cs │ │ │ │ ├── IKeyboardInputSite.cs │ │ │ │ └── MSG.cs │ │ │ │ ├── LocalValueEnumerator.cs │ │ │ │ ├── Markup │ │ │ │ ├── DateTimeConverter2.cs │ │ │ │ ├── IReceiveMarkupExtension.cs │ │ │ │ ├── InternalTypeHelper.cs │ │ │ │ ├── Primitives │ │ │ │ │ ├── MarkupObject.cs │ │ │ │ │ └── MarkupProperty.cs │ │ │ │ ├── ServiceProviders.cs │ │ │ │ └── TypeTypeConverter.cs │ │ │ │ ├── Media │ │ │ │ ├── Converters │ │ │ │ │ └── Generated │ │ │ │ │ │ └── MatrixValueSerializer.cs │ │ │ │ ├── DisableDpiAwarenessAttribute.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ └── MatrixConverter.cs │ │ │ │ ├── Matrix.cs │ │ │ │ └── TextFormattingMode.cs │ │ │ │ ├── NameScope.cs │ │ │ │ ├── Point.cs │ │ │ │ ├── PropertyChangedCallback.cs │ │ │ │ ├── PropertyMetadata.cs │ │ │ │ ├── Rect.cs │ │ │ │ ├── Size.cs │ │ │ │ ├── SplashScreen.cs │ │ │ │ ├── Threading │ │ │ │ ├── Dispatcher.cs │ │ │ │ ├── DispatcherEventArgs.cs │ │ │ │ ├── DispatcherExceptionEventArgs.cs │ │ │ │ ├── DispatcherExceptionFilterEventArgs.cs │ │ │ │ ├── DispatcherFrame.cs │ │ │ │ ├── DispatcherHookEventArgs.cs │ │ │ │ ├── DispatcherHooks.cs │ │ │ │ ├── DispatcherObject.cs │ │ │ │ ├── DispatcherOperation.cs │ │ │ │ ├── DispatcherOperationStatus.cs │ │ │ │ ├── DispatcherOperationTaskMapping.cs │ │ │ │ ├── DispatcherOperationTaskSource.cs │ │ │ │ ├── DispatcherPriority.cs │ │ │ │ ├── DispatcherPriorityAwaitable.cs │ │ │ │ ├── DispatcherPriorityAwaiter.cs │ │ │ │ ├── DispatcherProcessingDisabled.cs │ │ │ │ ├── DispatcherSynchronizationContext.cs │ │ │ │ ├── DispatcherTimer.cs │ │ │ │ └── PriorityRange.cs │ │ │ │ ├── UncommonField.cs │ │ │ │ ├── ValidateValueCallback.cs │ │ │ │ ├── Vector.cs │ │ │ │ ├── WeakEventManager.cs │ │ │ │ └── WeakEventManagerT.cs │ │ ├── WindowsBase.csproj │ │ ├── WindowsBase.sln │ │ └── ref │ │ │ ├── WindowsBase-ref.csproj │ │ │ └── WindowsBase.cs │ ├── WindowsFormsIntegration │ │ ├── MS │ │ │ └── Win32 │ │ │ │ ├── DCSafeHandle.cs │ │ │ │ ├── ExternDll.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── SafeNativeMethods.cs │ │ │ │ └── UnsafeNativeMethods.cs │ │ ├── OtherAssemblyAttrs.cs │ │ ├── Resources │ │ │ ├── ExceptionStringTable.txt │ │ │ ├── Strings.resx │ │ │ ├── win32res.rc │ │ │ └── xlf │ │ │ │ ├── Strings.cs.xlf │ │ │ │ ├── Strings.de.xlf │ │ │ │ ├── Strings.es.xlf │ │ │ │ ├── Strings.fr.xlf │ │ │ │ ├── Strings.it.xlf │ │ │ │ ├── Strings.ja.xlf │ │ │ │ ├── Strings.ko.xlf │ │ │ │ ├── Strings.pl.xlf │ │ │ │ ├── Strings.pt-BR.xlf │ │ │ │ ├── Strings.ru.xlf │ │ │ │ ├── Strings.tr.xlf │ │ │ │ ├── Strings.zh-Hans.xlf │ │ │ │ └── Strings.zh-Hant.xlf │ │ ├── System │ │ │ └── Windows │ │ │ │ ├── Automation │ │ │ │ └── Peers │ │ │ │ │ └── WindowsFormsHostAutomationPeer.cs │ │ │ │ └── Integration │ │ │ │ ├── ApplicationInterop.cs │ │ │ │ ├── ChildChangedEventArgs.cs │ │ │ │ ├── Convert.cs │ │ │ │ ├── ElementHost.cs │ │ │ │ ├── ElementHostAutomationPeer.cs │ │ │ │ ├── ElementHostPropertyMap.cs │ │ │ │ ├── HostUtils.cs │ │ │ │ ├── IntegrationExceptionEventArgs.cs │ │ │ │ ├── LayoutExceptionEventArgs.cs │ │ │ │ ├── PropertyMap.cs │ │ │ │ ├── PropertyMappingExceptionEventArgs.cs │ │ │ │ ├── WindowsFormsHost.cs │ │ │ │ └── WindowsFormsHostPropertyMap.cs │ │ ├── WindowsFormsIntegration.csproj │ │ └── ref │ │ │ ├── WindowsFormsIntegration-ref.csproj │ │ │ └── WindowsFormsIntegration.cs │ └── WpfGfx │ │ ├── DbgXHelper │ │ ├── DbgXHelper.vcxproj │ │ ├── dbghelpers.cxx │ │ ├── dbghelpers.hxx │ │ ├── dbgxhelper.h │ │ ├── debug.cxx │ │ ├── debug.hxx │ │ ├── event.cxx │ │ ├── event.hxx │ │ ├── flags.cxx │ │ ├── flags.hxx │ │ ├── input.cxx │ │ ├── input.hxx │ │ ├── minnt.h │ │ ├── output.cxx │ │ ├── output.hxx │ │ ├── precomp.cpp │ │ └── precomp.hxx │ │ ├── Directory.Build.Props │ │ ├── Graphics.Paths.props │ │ ├── Graphics.props │ │ ├── codegen │ │ ├── extras │ │ │ ├── gen_GammaLUTs.bat │ │ │ └── readme.txt │ │ ├── mcg │ │ │ ├── README.md │ │ │ ├── ResourceModel │ │ │ │ ├── Array.cs │ │ │ │ ├── CG.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── Elements.cs │ │ │ │ ├── Enum.cs │ │ │ │ ├── Field.cs │ │ │ │ ├── Generated │ │ │ │ │ └── Elements.cs │ │ │ │ ├── Primitive.cs │ │ │ │ ├── Realization.cs │ │ │ │ ├── RenderData.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── ResourceModel.cs │ │ │ │ ├── Struct.cs │ │ │ │ └── Type.cs │ │ │ ├── Runtime │ │ │ │ ├── CodeSink.cs │ │ │ │ ├── DelimitedList.cs │ │ │ │ ├── FileCodeSink.cs │ │ │ │ ├── GeneratorMethods.cs │ │ │ │ ├── ParameterList.cs │ │ │ │ ├── StringCodeSink.cs │ │ │ │ ├── XmlLoader.cs │ │ │ │ └── orlist.cs │ │ │ ├── generators │ │ │ │ ├── AnimatableTemplate.cs │ │ │ │ ├── AnimationBaseTemplate.cs │ │ │ │ ├── AnimationClockResource.cs │ │ │ │ ├── AnimationResourceTemplate.cs │ │ │ │ ├── AnimationTemplate.cs │ │ │ │ ├── AnimationUsingKeyFramesTemplate.cs │ │ │ │ ├── CommandStructure.cs │ │ │ │ ├── CommandType.cs │ │ │ │ ├── DiscreteKeyFrameTemplate.cs │ │ │ │ ├── DuceResource.cs │ │ │ │ ├── EasingKeyFrameTemplate.cs │ │ │ │ ├── Elements.cs │ │ │ │ ├── FrameworkElementTemplate.cs │ │ │ │ ├── IAnimatableHelper.cs │ │ │ │ ├── KeyFrameCollectionTemplate.cs │ │ │ │ ├── KeyFrameTemplate.cs │ │ │ │ ├── LinearKeyFrameTemplate.cs │ │ │ │ ├── ManagedEnum.cs │ │ │ │ ├── ManagedResource.cs │ │ │ │ ├── ManagedStruct.cs │ │ │ │ ├── MilRenderTypesGenerated.cs │ │ │ │ ├── MiscDef.cs │ │ │ │ ├── PolySegmentTemplate.cs │ │ │ │ ├── ProtocolFingerprint.cs │ │ │ │ ├── ResourceType.cs │ │ │ │ ├── SplineKeyFrameTemplate.cs │ │ │ │ ├── Template.cs │ │ │ │ ├── WincodecPrivateGenerated.cs │ │ │ │ ├── commandprocessmessage.cs │ │ │ │ ├── renderdata.cs │ │ │ │ └── resourcefactory.cs │ │ │ ├── helpers │ │ │ │ ├── CodeGenHelpers.cs │ │ │ │ ├── CollectionHelper.cs │ │ │ │ ├── EmptyClassHelper.cs │ │ │ │ ├── EnumHelper.cs │ │ │ │ ├── ManagedStyle.cs │ │ │ │ ├── PaddedCommand.cs │ │ │ │ ├── StringHelpers.cs │ │ │ │ ├── StructHelper.cs │ │ │ │ └── Style.cs │ │ │ ├── main │ │ │ │ ├── Elements.rsp │ │ │ │ ├── ResourceGenerator.cs │ │ │ │ ├── Resources.rsp │ │ │ │ ├── SimpleGenerator.cs │ │ │ │ ├── SimpleGenerator.rsp │ │ │ │ └── cmdline │ │ │ │ │ ├── CommandLineArguments.cs │ │ │ │ │ ├── IndentedWriter.cs │ │ │ │ │ ├── Utility.cs │ │ │ │ │ └── readme.txt │ │ │ ├── mcg.proj │ │ │ ├── tools │ │ │ │ ├── DebugMCG.cmd │ │ │ │ ├── GenerateElements.cmd │ │ │ │ ├── GenerateFiles.cmd │ │ │ │ ├── InvokeCSP.cmd │ │ │ │ ├── InvokeRascal.cmd │ │ │ │ ├── ParseMcgOpt.cmd │ │ │ │ ├── SetClrPath.cmd │ │ │ │ └── cleartemp.bat │ │ │ └── xml │ │ │ │ ├── Elements.xml │ │ │ │ ├── Elements.xsd │ │ │ │ ├── Resource.xml │ │ │ │ ├── Resource.xsd │ │ │ │ ├── Version.xml │ │ │ │ └── Version.xsd │ │ └── readme.txt │ │ ├── common │ │ ├── DirectXLayer │ │ │ ├── D3DX9 │ │ │ │ ├── color_dx9.hpp │ │ │ │ ├── dx9layercommon.hpp │ │ │ │ ├── extensions_dx9.hpp │ │ │ │ ├── matrix_dx9.hpp │ │ │ │ ├── quaternion_dx9.hpp │ │ │ │ ├── shader_compiler_dx9.hpp │ │ │ │ ├── vector2_dx9.hpp │ │ │ │ ├── vector3_dx9.hpp │ │ │ │ └── vector4_dx9.hpp │ │ │ ├── Factories │ │ │ │ ├── factory.hpp │ │ │ │ ├── factory9.hpp │ │ │ │ └── xmfactory.hpp │ │ │ ├── XMath │ │ │ │ ├── base │ │ │ │ │ ├── color_base_t.hpp │ │ │ │ │ ├── matrix_base_t.hpp │ │ │ │ │ ├── quaternion_base_t.hpp │ │ │ │ │ ├── vector2_base_t.hpp │ │ │ │ │ ├── vector3_base_t.hpp │ │ │ │ │ └── vector4_base_t.hpp │ │ │ │ ├── color_xm.hpp │ │ │ │ ├── extensions_xm.hpp │ │ │ │ ├── matrix_xm.hpp │ │ │ │ ├── quaternion_xm.hpp │ │ │ │ ├── shader_compiler_xm.hpp │ │ │ │ ├── vector2_xm.hpp │ │ │ │ ├── vector3_xm.hpp │ │ │ │ ├── vector4_xm.hpp │ │ │ │ └── xmcommon.hpp │ │ │ └── interfaces │ │ │ │ ├── color_t.hpp │ │ │ │ ├── dxlcommon.hpp │ │ │ │ ├── extensions.hpp │ │ │ │ ├── matrix_t.hpp │ │ │ │ ├── quaternion_t.hpp │ │ │ │ ├── shader_compiler_t.hpp │ │ │ │ ├── vector2_t.hpp │ │ │ │ ├── vector3_t.hpp │ │ │ │ └── vector4_t.hpp │ │ ├── DynamicCall │ │ │ ├── DelayCall.cpp │ │ │ ├── DelayCall.h │ │ │ ├── DynamicCall.vcxproj │ │ │ └── ModuleHandle.h │ │ ├── effects │ │ │ ├── effectlist.cpp │ │ │ ├── effectlist.h │ │ │ ├── effects.vcxproj │ │ │ ├── precomp.cpp │ │ │ └── precomp.hpp │ │ ├── scanop │ │ │ ├── bitmap.cpp │ │ │ ├── bitmap.h │ │ │ ├── bitmapwrappers.cpp │ │ │ ├── bitmapwrappers.h │ │ │ ├── colorutils.h │ │ │ ├── halftone.cpp │ │ │ ├── halftone.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── scanop.h │ │ │ ├── scanop.vcxproj │ │ │ ├── scanoperation.cpp │ │ │ ├── scanoperation.h │ │ │ ├── scanpipeline.cpp │ │ │ ├── scanpipeline.h │ │ │ ├── scanpipelinebuilder.cpp │ │ │ ├── scanpipelinebuilder.h │ │ │ ├── soalphamultiply.cpp │ │ │ ├── soblend.cpp │ │ │ ├── soblend_sse2.cpp │ │ │ ├── soconvert.cpp │ │ │ ├── socopy.cpp │ │ │ ├── sodither.cpp │ │ │ ├── sodither.inc │ │ │ ├── sogammaconvert.cpp │ │ │ ├── soquantize.cpp │ │ │ ├── srgb.h │ │ │ ├── systembitmap.cpp │ │ │ ├── systembitmap.h │ │ │ ├── writeprotectedbitmap.cpp │ │ │ └── writeprotectedbitmap.h │ │ └── shared │ │ │ ├── Arithmetic.h │ │ │ ├── AssertEntry.cpp │ │ │ ├── AssertEntry.h │ │ │ ├── DelegatingIUnknown.h │ │ │ ├── DpiScale.h │ │ │ ├── DpiUtil.h │ │ │ ├── GammaLUTs.cpp │ │ │ ├── GammaLUTs.inc │ │ │ ├── GenericTableMap.h │ │ │ ├── List.h │ │ │ ├── MILInterlocked.h │ │ │ ├── MILRect.cpp │ │ │ ├── MILRect.h │ │ │ ├── MILRectF_WH.cpp │ │ │ ├── MILRectF_WH.h │ │ │ ├── RefCountBase.cpp │ │ │ ├── RefCountBase.h │ │ │ ├── ResourceCache.cpp │ │ │ ├── ResourceCache.h │ │ │ ├── SehException.h │ │ │ ├── Xmm.h │ │ │ ├── basetypes.h │ │ │ ├── dynarray.h │ │ │ ├── dynarrayimpl.cpp │ │ │ ├── dynarrayimpl.h │ │ │ ├── engine.cpp │ │ │ ├── engine.h │ │ │ ├── etwtrace.cpp │ │ │ ├── etwtrace.h │ │ │ ├── heap.h │ │ │ ├── mem.cpp │ │ │ ├── mem.h │ │ │ ├── milcom.cpp │ │ │ ├── milcom.h │ │ │ ├── pixelformatutils.cpp │ │ │ ├── pixelformatutils.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── processorfeatures.cpp │ │ │ ├── processorfeatures.h │ │ │ ├── real.cpp │ │ │ ├── real.h │ │ │ ├── rgnutils.cpp │ │ │ ├── rgnutils.h │ │ │ ├── scopeguard.h │ │ │ ├── shared.h │ │ │ ├── shared.vcxproj │ │ │ ├── utc.cpp │ │ │ ├── utc.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── win32error.h │ │ │ └── xmm.cpp │ │ ├── core │ │ ├── Directory.Build.Props │ │ ├── api │ │ │ ├── api.vcxproj │ │ │ ├── api_base.cpp │ │ │ ├── api_base.h │ │ │ ├── api_basebrushes.cpp │ │ │ ├── api_basebrushes.h │ │ │ ├── api_brush.cpp │ │ │ ├── api_brush.h │ │ │ ├── api_codecfactory.cpp │ │ │ ├── api_codecfactory.h │ │ │ ├── api_factory.cpp │ │ │ ├── api_factory.h │ │ │ ├── api_include.h │ │ │ ├── api_lightdata.cpp │ │ │ ├── api_lightdata.h │ │ │ ├── api_lights.cpp │ │ │ ├── api_lights.h │ │ │ ├── api_mesh3d.cpp │ │ │ ├── api_mesh3d.h │ │ │ ├── api_rendercontext.h │ │ │ ├── api_renderstate.cpp │ │ │ ├── api_renderstate.h │ │ │ ├── api_shader.cpp │ │ │ ├── api_shader.h │ │ │ ├── api_utils.cpp │ │ │ ├── api_utils.h │ │ │ ├── exports.cpp │ │ │ ├── precomp.cpp │ │ │ └── precomp.hpp │ │ ├── av │ │ │ ├── ClockWrapper.cpp │ │ │ ├── ClockWrapper.h │ │ │ ├── CompositionNotifier.cpp │ │ │ ├── CompositionNotifier.h │ │ │ ├── DummyPlayer.cpp │ │ │ ├── DummyPlayer.h │ │ │ ├── EvrFilterWrapper.cpp │ │ │ ├── EvrFilterWrapper.h │ │ │ ├── EvrPresenter.h │ │ │ ├── EvrPresenter.inl │ │ │ ├── MediaInstance.cpp │ │ │ ├── MediaInstance.h │ │ │ ├── MediaInstance.inl │ │ │ ├── PresenterWrapper.cpp │ │ │ ├── PresenterWrapper.h │ │ │ ├── SampleQueue.h │ │ │ ├── SampleQueue.inl │ │ │ ├── SampleScheduler.h │ │ │ ├── SharedState.cpp │ │ │ ├── SharedState.h │ │ │ ├── StateThread.cpp │ │ │ ├── StateThread.h │ │ │ ├── UniqueList.cpp │ │ │ ├── UniqueList.h │ │ │ ├── UniqueList.inl │ │ │ ├── UpdateState.cpp │ │ │ ├── UpdateState.h │ │ │ ├── Wmp11ClientSite.cpp │ │ │ ├── Wmp11ClientSite.h │ │ │ ├── WmpClientSite.cpp │ │ │ ├── WmpClientSite.h │ │ │ ├── WmpEventHandler.cpp │ │ │ ├── WmpEventHandler.h │ │ │ ├── WmpPlayer.cpp │ │ │ ├── WmpPlayer.h │ │ │ ├── WmpStateEngine.h │ │ │ ├── WmpStateEngine.inl │ │ │ ├── WmpStateEngineProxy.cpp │ │ │ ├── WmpStateEngineProxy.h │ │ │ ├── WmpStateEngineProxy.inl │ │ │ ├── activate.cpp │ │ │ ├── activate.h │ │ │ ├── av.h │ │ │ ├── av.targets │ │ │ ├── av.vcxproj │ │ │ ├── avloader.cpp │ │ │ ├── avloader.h │ │ │ ├── avtrace.cpp │ │ │ ├── avtrace.h │ │ │ ├── d3ddevicewrapper.h │ │ │ ├── dxvamanagerwrapper.cpp │ │ │ ├── dxvamanagerwrapper.h │ │ │ ├── eventproxy.cpp │ │ │ ├── eventproxy.h │ │ │ ├── evrpresenter.cpp │ │ │ ├── fakepp.cpp │ │ │ ├── fakepp.h │ │ │ ├── frewpp.ini │ │ │ ├── globals.cpp │ │ │ ├── globals.h │ │ │ ├── hwmediabuffer.cpp │ │ │ ├── hwmediabuffer.h │ │ │ ├── internal.h │ │ │ ├── mediabuffer.cpp │ │ │ ├── mediabuffer.h │ │ │ ├── mediabuffer.inl │ │ │ ├── mediaeventproxy.cpp │ │ │ ├── mediaeventproxy.h │ │ │ ├── milav.cpp │ │ │ ├── milav.h │ │ │ ├── milav.inl │ │ │ ├── playerstate.cpp │ │ │ ├── playerstate.h │ │ │ ├── playerstate.inl │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── refdiagram.vsd │ │ │ ├── samplequeue.cpp │ │ │ ├── samplescheduler.cpp │ │ │ ├── swmediabuffer.cpp │ │ │ ├── swmediabuffer.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── util.inl │ │ │ └── wmpstateengine.cpp │ │ ├── common │ │ │ ├── 3dutils.cpp │ │ │ ├── 3dutils.h │ │ │ ├── AliasedClip.h │ │ │ ├── AssertDllInUse.cpp │ │ │ ├── AssertDllInUse.h │ │ │ ├── BaseMatrix.cpp │ │ │ ├── BaseMatrix.h │ │ │ ├── BufferDispenser.cpp │ │ │ ├── BufferDispenser.h │ │ │ ├── Config.h │ │ │ ├── CoordinateSpace.h │ │ │ ├── D3DLoader.h │ │ │ ├── DelayLoadedProc.h │ │ │ ├── Display.h │ │ │ ├── Dump.cpp │ │ │ ├── Dump.h │ │ │ ├── EnhancedContrastTable.cpp │ │ │ ├── EnhancedContrastTable.h │ │ │ ├── Gamma.cpp │ │ │ ├── Gamma.h │ │ │ ├── GradientTexture.h │ │ │ ├── InternalRT.h │ │ │ ├── MILDC.h │ │ │ ├── MILMatrix.cpp │ │ │ ├── MILMatrix.h │ │ │ ├── MatrixBuilder.h │ │ │ ├── MatrixStack.cpp │ │ │ ├── MatrixStack.h │ │ │ ├── MultiOutSpaceMatrix.h │ │ │ ├── MultiSpaceRectF.inl │ │ │ ├── OSCompat.h │ │ │ ├── Rect.h │ │ │ ├── RectUtils.cpp │ │ │ ├── RectUtils.h │ │ │ ├── RenderingConstants.h │ │ │ ├── ResourcePool.cpp │ │ │ ├── ResourcePool.h │ │ │ ├── SortAlgorithms.h │ │ │ ├── Tier.cpp │ │ │ ├── Tier.h │ │ │ ├── WatermarkStack.cpp │ │ │ ├── WatermarkStack.h │ │ │ ├── WatermarkStack.inl │ │ │ ├── basetypes.h │ │ │ ├── common.h │ │ │ ├── common.vcxproj │ │ │ ├── d3dloader.cpp │ │ │ ├── d3dutils.cpp │ │ │ ├── d3dutils.h │ │ │ ├── delayloadedmodule.h │ │ │ ├── display.cpp │ │ │ ├── dwminterop.cpp │ │ │ ├── dwminterop.h │ │ │ ├── dwritefactory.cpp │ │ │ ├── dwritefactory.h │ │ │ ├── engine.cpp │ │ │ ├── engine.h │ │ │ ├── exports.cpp │ │ │ ├── exts │ │ │ │ ├── makefile │ │ │ │ └── precomp.hpp │ │ │ ├── fix.h │ │ │ ├── gradienttexture.cpp │ │ │ ├── guidelinecollection.cpp │ │ │ ├── guidelinecollection.h │ │ │ ├── intermediatertcreator.h │ │ │ ├── lazymem.cpp │ │ │ ├── lazymem.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── matrix.cpp │ │ │ ├── matrix.h │ │ │ ├── matrix3x2.cpp │ │ │ ├── matrix3x2.h │ │ │ ├── memblock.cpp │ │ │ ├── memblock.h │ │ │ ├── memblockreader.cpp │ │ │ ├── memblockreader.h │ │ │ ├── memreader.cpp │ │ │ ├── memreader.h │ │ │ ├── memwriter.cpp │ │ │ ├── memwriter.h │ │ │ ├── milboxf.cpp │ │ │ ├── milboxf.h │ │ │ ├── milcoredllentry.cpp │ │ │ ├── milcoredllentry.h │ │ │ ├── mildc.cpp │ │ │ ├── oscompat.cpp │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── ptrarray.cpp │ │ │ ├── ptrarray.h │ │ │ ├── ptrset.cpp │ │ │ ├── ptrset.h │ │ │ ├── renderoptions.cpp │ │ │ ├── renderoptions.h │ │ │ ├── rtutils.cpp │ │ │ ├── rtutils.h │ │ │ ├── slistutil.cpp │ │ │ ├── slistutil.h │ │ │ ├── stackalign.h │ │ │ ├── typeconvert.inl │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── control │ │ │ ├── dll │ │ │ │ ├── dllentry.cpp │ │ │ │ ├── exports.cpp │ │ │ │ ├── exports.cs │ │ │ │ ├── milctrl.def │ │ │ │ ├── milctrl.rc │ │ │ │ ├── milctrl.vcxproj │ │ │ │ └── precomp.hpp │ │ │ └── util │ │ │ │ ├── common.h │ │ │ │ ├── control.cpp │ │ │ │ ├── control.h │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.hpp │ │ │ │ └── util.vcxproj │ │ ├── dll │ │ │ ├── WpfGfx.sln │ │ │ ├── dllentry.cpp │ │ │ ├── dllsources.inc │ │ │ ├── milcore.rc │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── wpfgfx.def │ │ │ └── wpfgfx.vcxproj │ │ ├── fxjit │ │ │ ├── Collector │ │ │ │ ├── Branch.cpp │ │ │ │ ├── C_LazyVar.cpp │ │ │ │ ├── C_f32x1.cpp │ │ │ │ ├── C_f32x4.cpp │ │ │ │ ├── C_s16x8.cpp │ │ │ │ ├── C_s32x4.cpp │ │ │ │ ├── C_u128x1.cpp │ │ │ │ ├── C_u16x4.cpp │ │ │ │ ├── C_u16x8.cpp │ │ │ │ ├── C_u32.cpp │ │ │ │ ├── C_u32x2.cpp │ │ │ │ ├── C_u32x4.cpp │ │ │ │ ├── C_u64.cpp │ │ │ │ ├── C_u64x1.cpp │ │ │ │ ├── C_u64x2.cpp │ │ │ │ ├── C_u8x16.cpp │ │ │ │ ├── C_u8x8.cpp │ │ │ │ ├── Collector.vcxproj │ │ │ │ ├── MmValue.cpp │ │ │ │ ├── PVOID.cpp │ │ │ │ ├── P_f32x1.cpp │ │ │ │ ├── P_f32x4.cpp │ │ │ │ ├── P_u16.cpp │ │ │ │ ├── P_u16x8.cpp │ │ │ │ ├── P_u32.cpp │ │ │ │ ├── P_u32x4.cpp │ │ │ │ ├── XmmValue.cpp │ │ │ │ ├── jitteraccess.cpp │ │ │ │ ├── makefile │ │ │ │ ├── precomp.cpp │ │ │ │ └── precomp.h │ │ │ ├── Compiler │ │ │ │ ├── Assemble.cpp │ │ │ │ ├── Assemble.h │ │ │ │ ├── BitArray.h │ │ │ │ ├── Bubbler.cpp │ │ │ │ ├── Bubbler.h │ │ │ │ ├── Coder86.h │ │ │ │ ├── Compiler.vcxproj │ │ │ │ ├── DependencyGraph.cpp │ │ │ │ ├── Dump.cpp │ │ │ │ ├── FlowControl.cpp │ │ │ │ ├── FlushMemory.cpp │ │ │ │ ├── FlushMemory.h │ │ │ │ ├── Locator.cpp │ │ │ │ ├── Locator.h │ │ │ │ ├── Mapper.cpp │ │ │ │ ├── Mapper.h │ │ │ │ ├── Operator.cpp │ │ │ │ ├── Operator.h │ │ │ │ ├── OperatorFlags.cpp │ │ │ │ ├── OperatorOpcodes.cpp │ │ │ │ ├── Program.h │ │ │ │ ├── Register.h │ │ │ │ ├── Shuffle.cpp │ │ │ │ ├── ShuffleRegs.cpp │ │ │ │ ├── ShuffleRegs.h │ │ │ │ ├── makefile │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.h │ │ │ │ └── program.cpp │ │ │ ├── Directory.Build.Props │ │ │ ├── PixelShader │ │ │ │ ├── PixelShader.vcxproj │ │ │ │ ├── d3d9caps.h │ │ │ │ ├── d3d9types.h │ │ │ │ ├── d3dhal.h │ │ │ │ ├── macros.h │ │ │ │ ├── makefile │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.h │ │ │ │ ├── pshader.cpp │ │ │ │ ├── pstrans.cpp │ │ │ │ ├── pstrans.hpp │ │ │ │ ├── rdpstrans.cpp │ │ │ │ ├── rdpstrans.h │ │ │ │ ├── shaderreg.cpp │ │ │ │ ├── shaderreg.h │ │ │ │ └── windowsshim.h │ │ │ ├── Platform │ │ │ │ ├── Platform.cpp │ │ │ │ ├── Platform.vcxproj │ │ │ │ ├── makefile │ │ │ │ ├── precomp.cpp │ │ │ │ └── precomp.h │ │ │ ├── Public │ │ │ │ ├── Branch.h │ │ │ │ ├── C_LazyVar.h │ │ │ │ ├── C_f32x1.h │ │ │ │ ├── C_f32x4.h │ │ │ │ ├── C_s16x8.h │ │ │ │ ├── C_s32.h │ │ │ │ ├── C_s32x4.h │ │ │ │ ├── C_u128x1.h │ │ │ │ ├── C_u16x4.h │ │ │ │ ├── C_u16x8.h │ │ │ │ ├── C_u32.h │ │ │ │ ├── C_u32x2.h │ │ │ │ ├── C_u32x4.h │ │ │ │ ├── C_u64.h │ │ │ │ ├── C_u64x1.h │ │ │ │ ├── C_u64x2.h │ │ │ │ ├── C_u8x16.h │ │ │ │ ├── C_u8x8.h │ │ │ │ ├── JitterAccess.h │ │ │ │ ├── JitterSupport.h │ │ │ │ ├── MmValue.h │ │ │ │ ├── Operations.h │ │ │ │ ├── PVOID.h │ │ │ │ ├── P_f32x1.h │ │ │ │ ├── P_f32x4.h │ │ │ │ ├── P_s32x4.h │ │ │ │ ├── P_u128x1.h │ │ │ │ ├── P_u16.h │ │ │ │ ├── P_u16x4.h │ │ │ │ ├── P_u16x8.h │ │ │ │ ├── P_u32.h │ │ │ │ ├── P_u32x2.h │ │ │ │ ├── P_u32x4.h │ │ │ │ ├── P_u64x1.h │ │ │ │ ├── P_u64x2.h │ │ │ │ ├── P_u8.h │ │ │ │ ├── P_u8x16.h │ │ │ │ ├── P_u8x8.h │ │ │ │ ├── SIMDJit.h │ │ │ │ ├── Types.h │ │ │ │ ├── Variable.h │ │ │ │ ├── XmmValue.h │ │ │ │ ├── effectparams.h │ │ │ │ ├── pshader.h │ │ │ │ ├── public.h │ │ │ │ ├── salextra.h │ │ │ │ ├── typedefs.h │ │ │ │ └── warpplatform.h │ │ │ └── fxjit.props │ │ ├── geometry │ │ │ ├── AnimationPath.cpp │ │ │ ├── AnimationPath.h │ │ │ ├── AxisAlignedStripClipper.cpp │ │ │ ├── AxisAlignedStripClipper.h │ │ │ ├── BaseTypes.h │ │ │ ├── BezierD.cpp │ │ │ ├── BezierD.h │ │ │ ├── BezierFlattener.h │ │ │ ├── BezierReconstruction.docx │ │ │ ├── Boolean.cpp │ │ │ ├── Boolean.h │ │ │ ├── CompactShapes.h │ │ │ ├── ExactArithmetic.cpp │ │ │ ├── ExactArithmetic.h │ │ │ ├── FigureBase.cpp │ │ │ ├── FigureBase.h │ │ │ ├── FigureTask.cpp │ │ │ ├── FigureTask.h │ │ │ ├── FillTessellator.cpp │ │ │ ├── FillTessellator.h │ │ │ ├── Geometry.vcxproj │ │ │ ├── GeometrySink.h │ │ │ ├── IntervalArithmetic.h │ │ │ ├── LineSegmentIntersection.cpp │ │ │ ├── LineSegmentIntersection.h │ │ │ ├── PopulationSink.h │ │ │ ├── PopulationSinkAdapter.h │ │ │ ├── Scanner.doc │ │ │ ├── ShapeBase.h │ │ │ ├── ShapeBuilder.h │ │ │ ├── ShapeData.h │ │ │ ├── ShapeFlattener.h │ │ │ ├── StripClipper.cpp │ │ │ ├── StripClipper.h │ │ │ ├── Tessellate.h │ │ │ ├── area.cpp │ │ │ ├── area.h │ │ │ ├── bezier.cpp │ │ │ ├── bezier.h │ │ │ ├── bezierflattener.cpp │ │ │ ├── compactshapes.cpp │ │ │ ├── cpen.cpp │ │ │ ├── cpen.h │ │ │ ├── figure.cpp │ │ │ ├── figure.h │ │ │ ├── geometry.h │ │ │ ├── lineshape.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── scanner.cpp │ │ │ ├── scanner.h │ │ │ ├── shape.cpp │ │ │ ├── shape.h │ │ │ ├── shapebase.cpp │ │ │ ├── sources.inc │ │ │ ├── strokefigure.cpp │ │ │ ├── strokefigure.h │ │ │ ├── tessellate.cpp │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── glyph │ │ │ ├── BitmapDbgIO.cpp │ │ │ ├── BitmapDbgIO.h │ │ │ ├── GlyphRunCore.h │ │ │ ├── baseglyphpainter.cpp │ │ │ ├── baseglyphpainter.h │ │ │ ├── baseglyphrun.h │ │ │ ├── glyph.h │ │ │ ├── glyph.vcxproj │ │ │ ├── glyphruncore.cpp │ │ │ ├── perf.cpp │ │ │ ├── perf.h │ │ │ ├── precomp.cpp │ │ │ └── precomp.h │ │ ├── hw │ │ │ ├── BitmapOfDeviceBitmaps.h │ │ │ ├── D3DDeviceManager.h │ │ │ ├── D3DTextureSurface.cpp │ │ │ ├── D3DTextureSurface.h │ │ │ ├── DelayComputedBounds.h │ │ │ ├── Hw3DGeometryStreamBuffer.h │ │ │ ├── HwBitBltDeviceBitmapColorSource.cpp │ │ │ ├── HwBitBltDeviceBitmapColorSource.h │ │ │ ├── HwBitmapBrush.cpp │ │ │ ├── HwBitmapBrush.h │ │ │ ├── HwBitmapCache.cpp │ │ │ ├── HwBitmapCache.h │ │ │ ├── HwBitmapColorSource.h │ │ │ ├── HwBoxColorSource.cpp │ │ │ ├── HwBoxColorSource.h │ │ │ ├── HwBrush.h │ │ │ ├── HwBrushContext.cpp │ │ │ ├── HwBrushContext.h │ │ │ ├── HwBrushPool.cpp │ │ │ ├── HwBrushPool.h │ │ │ ├── HwCaps.h │ │ │ ├── HwColorComponentColorSource.cpp │ │ │ ├── HwColorComponentColorSource.h │ │ │ ├── HwColorSource.h │ │ │ ├── HwConstantColorSource.cpp │ │ │ ├── HwConstantColorSource.h │ │ │ ├── HwDeviceBitmapColorSource.h │ │ │ ├── HwGraphicsCards.h │ │ │ ├── HwHLSLShaderFragments.cpp │ │ │ ├── HwHLSLShaderFragments.h │ │ │ ├── HwLightingColorSource.cpp │ │ │ ├── HwLightingColorSource.h │ │ │ ├── HwLinearGradientBrush.cpp │ │ │ ├── HwLinearGradientBrush.h │ │ │ ├── HwLinearGradientColorSource.h │ │ │ ├── HwPipelineBuilder.h │ │ │ ├── HwPrimaryColorSource.h │ │ │ ├── HwRadialGradientBrush.cpp │ │ │ ├── HwRadialGradientBrush.h │ │ │ ├── HwRadialGradientColorSource.cpp │ │ │ ├── HwRadialGradientColorSource.h │ │ │ ├── HwRenderStateManager.cpp │ │ │ ├── HwRenderStateManager.h │ │ │ ├── HwShaderBuilder.cpp │ │ │ ├── HwShaderBuilder.h │ │ │ ├── HwShaderCache.cpp │ │ │ ├── HwShaderCache.h │ │ │ ├── HwShaderEffect.cpp │ │ │ ├── HwShaderEffect.h │ │ │ ├── HwShaderFragmentToHLSLConverter.h │ │ │ ├── HwShaderPipeline.cpp │ │ │ ├── HwShaderPipeline.h │ │ │ ├── HwSolidBrush.cpp │ │ │ ├── HwSolidBrush.h │ │ │ ├── HwStateTable.cpp │ │ │ ├── HwStateTable.h │ │ │ ├── HwTexturedColorSource.h │ │ │ ├── HwTexturedColorSourceBrush.cpp │ │ │ ├── HwTexturedColorSourceBrush.h │ │ │ ├── HwUtils.cpp │ │ │ ├── HwUtils.h │ │ │ ├── HwVertexBuffer.h │ │ │ ├── HwVidMemTextureManager.cpp │ │ │ ├── HwVidMemTextureManager.h │ │ │ ├── InteropDeviceBitmap.cpp │ │ │ ├── InteropDeviceBitmap.h │ │ │ ├── ShaderAssemblies.targets │ │ │ ├── ShaderAssemblies │ │ │ │ ├── ResourceFileTemplate │ │ │ │ │ └── EmbeddedShaders.RC │ │ │ │ ├── Shaders.h │ │ │ │ ├── Source │ │ │ │ │ ├── DropShadow.fx │ │ │ │ │ ├── HorizontalBlur.fx │ │ │ │ │ ├── HorizontalBlurMulti.fx │ │ │ │ │ ├── PassThroughShaderEffectPS.fx │ │ │ │ │ ├── ShaderEffectsVS.fx │ │ │ │ │ ├── VerticalBlur.fx │ │ │ │ │ ├── VerticalBlurMulti.fx │ │ │ │ │ └── readme.txt │ │ │ │ ├── compile.cmd │ │ │ │ └── readme.txt │ │ │ ├── Shaders.h │ │ │ ├── Shaders.rc │ │ │ ├── Waffler.h │ │ │ ├── bitmapofdevicebitmaps.cpp │ │ │ ├── d3ddevice.cpp │ │ │ ├── d3ddevice.h │ │ │ ├── d3ddevicemanager.cpp │ │ │ ├── d3dgeometry.cpp │ │ │ ├── d3dgeometry.h │ │ │ ├── d3dglyphbank.cpp │ │ │ ├── d3dglyphbank.h │ │ │ ├── d3dglyphpainter.cpp │ │ │ ├── d3dglyphpainter.h │ │ │ ├── d3dglyphrun.cpp │ │ │ ├── d3dglyphrun.h │ │ │ ├── d3dlockabletexture.cpp │ │ │ ├── d3dlockabletexture.h │ │ │ ├── d3dlog.cpp │ │ │ ├── d3dlog.h │ │ │ ├── d3dregistry.cpp │ │ │ ├── d3dregistry.h │ │ │ ├── d3drenderstate.cpp │ │ │ ├── d3drenderstate.h │ │ │ ├── d3dresource.cpp │ │ │ ├── d3dresource.h │ │ │ ├── d3dstats.cpp │ │ │ ├── d3dstats.h │ │ │ ├── d3dsurface.cpp │ │ │ ├── d3dsurface.h │ │ │ ├── d3dswapchain.cpp │ │ │ ├── d3dswapchain.h │ │ │ ├── d3dswapchainwithswdc.cpp │ │ │ ├── d3dswapchainwithswdc.h │ │ │ ├── d3dtexture.cpp │ │ │ ├── d3dtexture.h │ │ │ ├── d3dvertex.h │ │ │ ├── d3dvidmemonlytexture.cpp │ │ │ ├── d3dvidmemonlytexture.h │ │ │ ├── gpumarker.cpp │ │ │ ├── gpumarker.h │ │ │ ├── hw.h │ │ │ ├── hw.rc │ │ │ ├── hw.vcxproj │ │ │ ├── hw3dgeometrystreambuffer.cpp │ │ │ ├── hwbitmapcolorsource.cpp │ │ │ ├── hwdestinationtexture.cpp │ │ │ ├── hwdestinationtexture.h │ │ │ ├── hwdestinationtexturepool.cpp │ │ │ ├── hwdestinationtexturepool.h │ │ │ ├── hwdevicebitmapcolorsource.cpp │ │ │ ├── hwdisplayrt.cpp │ │ │ ├── hwdisplayrt.h │ │ │ ├── hwffshaders.cpp │ │ │ ├── hwffshaders.h │ │ │ ├── hwhwndrt.cpp │ │ │ ├── hwhwndrt.h │ │ │ ├── hwinit.cpp │ │ │ ├── hwinit.h │ │ │ ├── hwlineargradientcolorsource.cpp │ │ │ ├── hwpipeline.cpp │ │ │ ├── hwpipeline.h │ │ │ ├── hwpipelinebuilder.cpp │ │ │ ├── hwrasterizer.cpp │ │ │ ├── hwrasterizer.h │ │ │ ├── hwshader.cpp │ │ │ ├── hwshader.h │ │ │ ├── hwshaderfragmenttohlslconverter.cpp │ │ │ ├── hwsolidcolortexturesource.cpp │ │ │ ├── hwsolidcolortexturesource.h │ │ │ ├── hwsolidcolortexturesourcepool.cpp │ │ │ ├── hwsolidcolortexturesourcepool.h │ │ │ ├── hwsurfrt.cpp │ │ │ ├── hwsurfrt.h │ │ │ ├── hwsurfrtdata.cpp │ │ │ ├── hwsurfrtdata.h │ │ │ ├── hwsw3dfallback.cpp │ │ │ ├── hwsw3dfallback.h │ │ │ ├── hwtexturedcolorsource.cpp │ │ │ ├── hwtexturert.cpp │ │ │ ├── hwtexturert.h │ │ │ ├── hwvertexbuffer.cpp │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── shaders │ │ │ │ ├── ShaderGen │ │ │ │ │ ├── CodeGen.cpp │ │ │ │ │ ├── CodeGen.h │ │ │ │ │ ├── Device.cpp │ │ │ │ │ ├── Device.h │ │ │ │ │ ├── ResourceGen.cpp │ │ │ │ │ ├── ResourceGen.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── precomp.cpp │ │ │ │ │ ├── precomp.h │ │ │ │ │ ├── shadergen.nativeproj │ │ │ │ │ ├── shadergen.rc │ │ │ │ │ └── tools.h │ │ │ │ ├── hlslTextShaders11A.fx │ │ │ │ ├── hlslTextShaders11L.fx │ │ │ │ ├── hlslTextShaders20A.fx │ │ │ │ └── hlslTextShaders20L.fx │ │ │ ├── swfallback.cpp │ │ │ ├── swfallback.h │ │ │ ├── waffler.cpp │ │ │ └── waffling-and-packing.txt │ │ ├── meta │ │ │ ├── MetaAdjustBounds.h │ │ │ ├── desktophwndrt.cpp │ │ │ ├── desktophwndrt.h │ │ │ ├── desktoprt.cpp │ │ │ ├── desktoprt.h │ │ │ ├── dummyrt.cpp │ │ │ ├── dummyrt.h │ │ │ ├── meta.h │ │ │ ├── meta.vcxproj │ │ │ ├── metaadjustaliasedclip.h │ │ │ ├── metaadjustbitmapsource.h │ │ │ ├── metaadjustobject.h │ │ │ ├── metaadjusttransforms.h │ │ │ ├── metabitmaprt.cpp │ │ │ ├── metabitmaprt.h │ │ │ ├── metaiterator.cpp │ │ │ ├── metaiterator.h │ │ │ ├── metart.cpp │ │ │ ├── metart.h │ │ │ ├── precomp.cpp │ │ │ └── precomp.hpp │ │ ├── regkeys │ │ │ ├── DisableDriverCheck.reg │ │ │ ├── DisableMMXForSWRast.reg │ │ │ ├── EnableDriverCheck.reg │ │ │ ├── EnableMMXForSWRast.reg │ │ │ ├── Set3DAASamples.cmd │ │ │ ├── disableRuntimePerfDebugging.reg │ │ │ ├── disablehw.reg │ │ │ ├── enableRuntimePerfDebugging.reg │ │ │ └── enablehw.reg │ │ ├── resources │ │ │ ├── BitmapCacheBrush.cpp │ │ │ ├── BitmapCacheBrush.h │ │ │ ├── BitmapCacheMode.cpp │ │ │ ├── BitmapCacheMode.h │ │ │ ├── BlurEffect.cpp │ │ │ ├── BlurEffect.h │ │ │ ├── BrushContext.h │ │ │ ├── BrushIntermediateCache.cpp │ │ │ ├── BrushIntermediateCache.h │ │ │ ├── BrushIntermediateRealizer.cpp │ │ │ ├── BrushIntermediateRealizer.h │ │ │ ├── BrushRealizer.cpp │ │ │ ├── BrushRealizer.h │ │ │ ├── BrushTypeUtils.cpp │ │ │ ├── BrushTypeUtils.h │ │ │ ├── CacheMode.cpp │ │ │ ├── CacheMode.h │ │ │ ├── CombinedGeometry.h │ │ │ ├── CurrentValue.cpp │ │ │ ├── CurrentValue.h │ │ │ ├── DashStyle.cpp │ │ │ ├── DashStyle.h │ │ │ ├── DeviceAlignedIntermediateRealizer.cpp │ │ │ ├── DeviceAlignedIntermediateRealizer.h │ │ │ ├── Drawing.h │ │ │ ├── DrawingGroup.h │ │ │ ├── DropShadowEffect.cpp │ │ │ ├── DropShadowEffect.h │ │ │ ├── Effect.cpp │ │ │ ├── Effect.h │ │ │ ├── GeometryDrawing.cpp │ │ │ ├── GeometryDrawing.h │ │ │ ├── GeometryGroup.cpp │ │ │ ├── GeometryGroup.h │ │ │ ├── GlyphRunDrawing.cpp │ │ │ ├── GlyphRunDrawing.h │ │ │ ├── GlyphRunGeometrySink.cpp │ │ │ ├── GlyphRunGeometrySink.h │ │ │ ├── GuidelineCollectionResource.h │ │ │ ├── ImageDrawing.cpp │ │ │ ├── ImageDrawing.h │ │ │ ├── ImplicitInputBrush.cpp │ │ │ ├── ImplicitInputBrush.h │ │ │ ├── PathGeometryWrapper.cpp │ │ │ ├── PathGeometryWrapper.h │ │ │ ├── PixelShader.cpp │ │ │ ├── PixelShader.h │ │ │ ├── ProjectionCamera.cpp │ │ │ ├── ProjectionCamera.h │ │ │ ├── QuaternionRotation3D.cpp │ │ │ ├── QuaternionRotation3D.h │ │ │ ├── ShaderEffect.cpp │ │ │ ├── ShaderEffect.h │ │ │ ├── TileBrushUtils.cpp │ │ │ ├── TileBrushUtils.h │ │ │ ├── VideoDrawing.cpp │ │ │ ├── VideoDrawing.h │ │ │ ├── VideoSlave.h │ │ │ ├── Viewport3DVisual.h │ │ │ ├── ViewportAlignedIntermediateRealizer.cpp │ │ │ ├── ViewportAlignedIntermediateRealizer.h │ │ │ ├── Visual3D.h │ │ │ ├── affinetransform3d.cpp │ │ │ ├── affinetransform3d.h │ │ │ ├── ambientlight.cpp │ │ │ ├── ambientlight.h │ │ │ ├── axisanglerotation3d.cpp │ │ │ ├── axisanglerotation3d.h │ │ │ ├── bitmapres.cpp │ │ │ ├── bitmapres.h │ │ │ ├── brush.cpp │ │ │ ├── brush.h │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── combinedgeometry.cpp │ │ │ ├── d3dimage.cpp │ │ │ ├── d3dimage.h │ │ │ ├── data_generated.h │ │ │ ├── diffusematerial.cpp │ │ │ ├── diffusematerial.h │ │ │ ├── directionallight.cpp │ │ │ ├── directionallight.h │ │ │ ├── doublebufferedbitmapres.cpp │ │ │ ├── doublebufferedbitmapres.h │ │ │ ├── drawingbrush.cpp │ │ │ ├── drawingbrush.h │ │ │ ├── drawinggroup.cpp │ │ │ ├── drawingimage.cpp │ │ │ ├── drawingimage.h │ │ │ ├── ellipsegeometry.cpp │ │ │ ├── ellipsegeometry.h │ │ │ ├── emissivematerial.cpp │ │ │ ├── emissivematerial.h │ │ │ ├── etwresource.cpp │ │ │ ├── etwresource.h │ │ │ ├── geometry.cpp │ │ │ ├── geometry.h │ │ │ ├── geometry3d.cpp │ │ │ ├── geometry3d.h │ │ │ ├── geometrymodel3d.cpp │ │ │ ├── geometrymodel3d.h │ │ │ ├── glyphrunslave.cpp │ │ │ ├── glyphrunslave.h │ │ │ ├── gradientbrush.cpp │ │ │ ├── gradientbrush.h │ │ │ ├── guidelinecollectionresource.cpp │ │ │ ├── imagebrush.cpp │ │ │ ├── imagebrush.h │ │ │ ├── imagesource.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── lineargradient.cpp │ │ │ ├── lineargradient.h │ │ │ ├── linegeometry.cpp │ │ │ ├── linegeometry.h │ │ │ ├── marshal_generated.cpp │ │ │ ├── material.cpp │ │ │ ├── material.h │ │ │ ├── materialgroup.cpp │ │ │ ├── materialgroup.h │ │ │ ├── matrix.cpp │ │ │ ├── matrix.h │ │ │ ├── matrixcamera.cpp │ │ │ ├── matrixcamera.h │ │ │ ├── matrixtransform3d.cpp │ │ │ ├── matrixtransform3d.h │ │ │ ├── meshgeometry3d.cpp │ │ │ ├── meshgeometry3d.h │ │ │ ├── model3d.cpp │ │ │ ├── model3d.h │ │ │ ├── model3dgroup.cpp │ │ │ ├── model3dgroup.h │ │ │ ├── modelrenderwalker.cpp │ │ │ ├── modelrenderwalker.h │ │ │ ├── modelwalker.cpp │ │ │ ├── modelwalker.h │ │ │ ├── node.cpp │ │ │ ├── node.h │ │ │ ├── orthographiccamera.cpp │ │ │ ├── orthographiccamera.h │ │ │ ├── pathgeometry.cpp │ │ │ ├── pathgeometry.h │ │ │ ├── pen.cpp │ │ │ ├── pen.h │ │ │ ├── perspectivecamera.cpp │ │ │ ├── perspectivecamera.h │ │ │ ├── pointlight.cpp │ │ │ ├── pointlight.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── prerenderwalker.cpp │ │ │ ├── prerenderwalker.h │ │ │ ├── radialgradient.cpp │ │ │ ├── radialgradient.h │ │ │ ├── rectanglegeometry.cpp │ │ │ ├── rectanglegeometry.h │ │ │ ├── renderdata.cpp │ │ │ ├── renderdata.h │ │ │ ├── renderdata_generated.cpp │ │ │ ├── resources.h │ │ │ ├── resources.vcxproj │ │ │ ├── resources_generated.h │ │ │ ├── rotate.cpp │ │ │ ├── rotate.h │ │ │ ├── rotatetransform3d.cpp │ │ │ ├── rotatetransform3d.h │ │ │ ├── rotation3d.cpp │ │ │ ├── rotation3d.h │ │ │ ├── scale.cpp │ │ │ ├── scale.h │ │ │ ├── scaletransform3d.cpp │ │ │ ├── scaletransform3d.h │ │ │ ├── skew.cpp │ │ │ ├── skew.h │ │ │ ├── solidcolorbrush.cpp │ │ │ ├── solidcolorbrush.h │ │ │ ├── specularmaterial.cpp │ │ │ ├── specularmaterial.h │ │ │ ├── spotlight.cpp │ │ │ ├── spotlight.h │ │ │ ├── tilebrush.cpp │ │ │ ├── tilebrush.h │ │ │ ├── transform.cpp │ │ │ ├── transform.h │ │ │ ├── transform3d.cpp │ │ │ ├── transform3d.h │ │ │ ├── transform3dgroup.cpp │ │ │ ├── transform3dgroup.h │ │ │ ├── transformgroup.cpp │ │ │ ├── transformgroup.h │ │ │ ├── translate.cpp │ │ │ ├── translate.h │ │ │ ├── translatetransform3d.cpp │ │ │ ├── translatetransform3d.h │ │ │ ├── valueres.cpp │ │ │ ├── valueres.h │ │ │ ├── videoslave.cpp │ │ │ ├── viewport3dvisual.cpp │ │ │ ├── visual3d.cpp │ │ │ ├── visualbrush.cpp │ │ │ └── visualbrush.h │ │ ├── sw │ │ │ ├── SwBitmapCache.h │ │ │ ├── SwBitmapColorSource.h │ │ │ ├── SwIntermediateRTCreator.h │ │ │ ├── aacoverage.h │ │ │ ├── aarasterizer.h │ │ │ ├── bilinearspan.h │ │ │ ├── boundsrt.h │ │ │ ├── brushspan.h │ │ │ ├── doublebufferedbitmap.h │ │ │ ├── renderingbuilder.h │ │ │ ├── scanpipelinerender.h │ │ │ ├── sw.h │ │ │ ├── swclip.h │ │ │ ├── swglyphpainter.h │ │ │ ├── swglyphrun.h │ │ │ ├── swhwndrt.h │ │ │ ├── swinit.h │ │ │ ├── swlib │ │ │ │ ├── SwIntermediateRTCreator.cpp │ │ │ │ ├── aacoverage.cpp │ │ │ │ ├── aarasterizer.cpp │ │ │ │ ├── bilinearspan.cpp │ │ │ │ ├── boundsrt.cpp │ │ │ │ ├── brushspan.cpp │ │ │ │ ├── doublebufferedbitmap.cpp │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.hpp │ │ │ │ ├── renderingbuilder.cpp │ │ │ │ ├── scanpipelinebuilder.hpp │ │ │ │ ├── scanpipelinerender.cpp │ │ │ │ ├── sw.vcxproj │ │ │ │ ├── swbitmapcache.cpp │ │ │ │ ├── swbitmapcolorsource.cpp │ │ │ │ ├── swclip.cpp │ │ │ │ ├── swglyphpainter.cpp │ │ │ │ ├── swglyphrun.cpp │ │ │ │ ├── swhwndrt.cpp │ │ │ │ ├── swinit.cpp │ │ │ │ ├── swpresentgdi.cpp │ │ │ │ ├── swrast.cpp │ │ │ │ └── swsurfrt.cpp │ │ │ ├── swpresentgdi.h │ │ │ ├── swrast.h │ │ │ └── swsurfrt.h │ │ ├── targets │ │ │ ├── BaseRT.cpp │ │ │ ├── BaseRT.h │ │ │ ├── BaseSurfRT.cpp │ │ │ ├── BaseSurfRT.h │ │ │ ├── RTLayer.h │ │ │ ├── RTLayer.inl │ │ │ ├── ShapeClipperForFEB.cpp │ │ │ ├── ShapeClipperForFEB.h │ │ │ ├── Targets.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ └── targets.vcxproj │ │ └── uce │ │ │ ├── DpiProvider.cpp │ │ │ ├── DpiProvider.h │ │ │ ├── Prerender3DContext.cpp │ │ │ ├── Prerender3DContext.h │ │ │ ├── Render3DContext.h │ │ │ ├── RenderDataBounder.cpp │ │ │ ├── RenderDataBounder.h │ │ │ ├── RenderTarget.h │ │ │ ├── UceTypes.h │ │ │ ├── VisualCache.cpp │ │ │ ├── VisualCache.h │ │ │ ├── VisualCacheManager.cpp │ │ │ ├── VisualCacheManager.h │ │ │ ├── VisualCacheSet.cpp │ │ │ ├── VisualCacheSet.h │ │ │ ├── ZOrderedRect.h │ │ │ ├── alphamaskwrapper.cpp │ │ │ ├── alphamaskwrapper.h │ │ │ ├── apifunc.cpp │ │ │ ├── clientchannel.cpp │ │ │ ├── clientchannel.h │ │ │ ├── clientchanneltables.cpp │ │ │ ├── clientchanneltables.h │ │ │ ├── clipstack.cpp │ │ │ ├── clipstack.h │ │ │ ├── cmdbatch.cpp │ │ │ ├── cmdbatch.h │ │ │ ├── compatsettings.h │ │ │ ├── composition.cpp │ │ │ ├── composition.h │ │ │ ├── connection.cpp │ │ │ ├── connection.h │ │ │ ├── connectioncontext.cpp │ │ │ ├── connectioncontext.h │ │ │ ├── crossthreadcomposition.cpp │ │ │ ├── crossthreadcomposition.h │ │ │ ├── dirtyregion.cpp │ │ │ ├── dirtyregion.h │ │ │ ├── drawingcontext.cpp │ │ │ ├── drawingcontext.h │ │ │ ├── generated_process_message.inl │ │ │ ├── generated_resource_factory.cpp │ │ │ ├── generated_resource_factory.h │ │ │ ├── geometry_api.cpp │ │ │ ├── global.cpp │ │ │ ├── global.h │ │ │ ├── glyphcacheslave.cpp │ │ │ ├── glyphcacheslave.h │ │ │ ├── graphwalker.cpp │ │ │ ├── graphwalker.h │ │ │ ├── handletable.cpp │ │ │ ├── handletable.h │ │ │ ├── htmaster.cpp │ │ │ ├── htmaster.h │ │ │ ├── htslave.cpp │ │ │ ├── htslave.h │ │ │ ├── hwndtarget.cpp │ │ │ ├── hwndtarget.h │ │ │ ├── idrawingcontext.h │ │ │ ├── partition.cpp │ │ │ ├── partition.h │ │ │ ├── partitionmanager.cpp │ │ │ ├── partitionmanager.h │ │ │ ├── partitionthread.cpp │ │ │ ├── partitionthread.h │ │ │ ├── precomp.cpp │ │ │ ├── precomp.hpp │ │ │ ├── precompctx.cpp │ │ │ ├── precompctx.h │ │ │ ├── printtarget.cpp │ │ │ ├── printtarget.h │ │ │ ├── render3dcontext.cpp │ │ │ ├── rendertarget.cpp │ │ │ ├── rendertargetmanager.cpp │ │ │ ├── rendertargetmanager.h │ │ │ ├── resslave.cpp │ │ │ ├── resslave.h │ │ │ ├── rsapi.cpp │ │ │ ├── rsapi.h │ │ │ ├── samethreadcomposition.cpp │ │ │ ├── samethreadcomposition.h │ │ │ ├── schedule-manifest.xml │ │ │ ├── schedulemanager.cpp │ │ │ ├── schedulemanager.h │ │ │ ├── serverchannel.cpp │ │ │ ├── serverchannel.h │ │ │ ├── serverchanneltables.cpp │ │ │ ├── serverchanneltables.h │ │ │ ├── uce.h │ │ │ ├── uce.vcxproj │ │ │ └── vt_api.cpp │ │ ├── exts │ │ ├── Wpfx.sln │ │ ├── argparse.cxx │ │ ├── argparse.hxx │ │ ├── cmd.cpp │ │ ├── cmdstruct.h │ │ ├── dbgxmain.cxx │ │ ├── debug.cxx │ │ ├── debug.hxx │ │ ├── dumptable.cxx │ │ ├── exts.vcxproj │ │ ├── help.cxx │ │ ├── helpers.cxx │ │ ├── helpers.hxx │ │ ├── hwndlookup.cxx │ │ ├── milanalyze.cxx │ │ ├── mildbglib.hxx │ │ ├── milexts.cxx │ │ ├── milresource.cxx │ │ ├── precomp.cpp │ │ ├── precomp.hxx │ │ ├── stackcapture.cxx │ │ ├── stackcapture.hxx │ │ ├── vsprite.cxx │ │ └── wpfx.def │ │ ├── include │ │ ├── Generated │ │ │ ├── wgx_command_types.cs │ │ │ ├── wgx_command_types.h │ │ │ ├── wgx_commands.cs │ │ │ ├── wgx_commands.h │ │ │ ├── wgx_misc.cs │ │ │ ├── wgx_misc.h │ │ │ ├── wgx_render_types_generated.h │ │ │ ├── wgx_renderdata_commands.h │ │ │ ├── wgx_resource_types.cs │ │ │ ├── wgx_resource_types.h │ │ │ └── wincodec_private_generated.h │ │ ├── GraphicsInclude.nativeproj │ │ ├── InternalGUIDs.h │ │ ├── exports.cs │ │ ├── gencode.pl │ │ ├── processed │ │ │ ├── README.txt │ │ │ ├── wgx_av_types.cs │ │ │ ├── wgx_av_types.h │ │ │ ├── wgx_core_types.cs │ │ │ └── wgx_core_types.h │ │ ├── spec_string.h │ │ ├── std.h │ │ ├── wgx_av_types.w │ │ ├── wgx_core_dllname.cs │ │ ├── wgx_core_dllname.h │ │ ├── wgx_core_types.w │ │ ├── wgx_core_types_compat.cs │ │ ├── wgx_effect_types.h │ │ ├── wgx_error.cs │ │ ├── wgx_error.h │ │ ├── wgx_exports.cs │ │ ├── wgx_render.cs │ │ ├── wgx_render.h │ │ ├── wgx_render_types.h │ │ ├── wgx_sdk_version.cs │ │ ├── wgx_sdk_version.h │ │ └── wincodec_private.h │ │ ├── shared │ │ ├── debug │ │ │ └── DebugLib │ │ │ │ ├── DebugLib.cxx │ │ │ │ └── DebugLib.vcxproj │ │ ├── inc │ │ │ ├── Always.h │ │ │ ├── AvalonDebugP.h │ │ │ ├── AvalonMemUtilP.h │ │ │ ├── AvalonTimingP.h │ │ │ ├── AvalonUtilP.h │ │ │ ├── Invariant.h │ │ │ └── W4Warn.h │ │ └── util │ │ │ ├── ConUtil │ │ │ ├── ConUtil.nativeproj │ │ │ ├── Data.cxx │ │ │ ├── Precomp.h │ │ │ ├── conmain.cxx │ │ │ ├── conmain1.cxx │ │ │ ├── conmain2.cxx │ │ │ └── precomp.cxx │ │ │ ├── DllUtil │ │ │ ├── Data.cxx │ │ │ ├── DllUtil.vcxproj │ │ │ ├── Precomp.h │ │ │ ├── dllmain.cxx │ │ │ ├── dllmainimpl.cxx │ │ │ └── precomp.cxx │ │ │ ├── ExeUtil │ │ │ ├── Data.cxx │ │ │ ├── ExeUtil.nativeproj │ │ │ ├── Precomp.h │ │ │ ├── exemain.cxx │ │ │ ├── exemain1.cxx │ │ │ ├── exemain2.cxx │ │ │ └── precomp.cxx │ │ │ └── UtilLib │ │ │ ├── Assert.cxx │ │ │ ├── Assert.inl │ │ │ ├── DebugBreak.cpp │ │ │ ├── DebugBreak.h │ │ │ ├── DynCast.h │ │ │ ├── HiResTimer.cxx │ │ │ ├── HiResTimer.h │ │ │ ├── HtPvPv.inl │ │ │ ├── Instrumentation.cxx │ │ │ ├── Instrumentation.h │ │ │ ├── InstrumentationConfig.h │ │ │ ├── Invariant.h │ │ │ ├── List.h │ │ │ ├── List.inl │ │ │ ├── Locks.h │ │ │ ├── MemUtils.cxx │ │ │ ├── MemUtils.h │ │ │ ├── MemUtils.inl │ │ │ ├── MemUtilsInternal.h │ │ │ ├── Misc.cxx │ │ │ ├── Pch.h │ │ │ ├── Public.h │ │ │ ├── Registry.cxx │ │ │ ├── Registry.h │ │ │ ├── StrUtil.cxx │ │ │ ├── StrUtil.h │ │ │ ├── UtilLib.vcxproj │ │ │ ├── UtilMisc.h │ │ │ ├── instrumentationapi.h │ │ │ ├── list.cxx │ │ │ └── pch.cxx │ │ └── tools │ │ ├── csp │ │ ├── CsPrimeParser.cs │ │ ├── CsPrimeRuntime.cs │ │ ├── GlobalUsings.cs │ │ ├── MainClass.cs │ │ ├── Project.cs │ │ ├── README.md │ │ ├── RunUnitTests.cmd │ │ ├── RunUnitTests.proj │ │ ├── TempDirectory.cs │ │ ├── csp.csproj │ │ └── test │ │ │ ├── CsProject │ │ │ ├── CsProjectTest.cs │ │ │ └── RunTest.cmd │ │ │ └── CspProject │ │ │ ├── CspProject.rsp │ │ │ ├── CspProjectTest.cs │ │ │ └── RunTest.cmd │ │ └── milcodegen │ │ └── MilCodeGen.asmmeta │ └── tests │ ├── Directory.Build.props │ ├── IntegrationTests │ ├── BranchCommon │ │ └── data │ │ │ └── DrtList.xml │ ├── Common │ │ ├── DRT │ │ │ └── TestServices │ │ │ │ ├── DrtBase.cs │ │ │ │ ├── DrtBaseGlobalInput.cs │ │ │ │ ├── DrtBaseInput.cs │ │ │ │ ├── MS │ │ │ │ ├── Internal │ │ │ │ │ ├── MultiTargetUtilities.cs │ │ │ │ │ ├── PointUtil.cs │ │ │ │ │ └── SecurityCriticalDataForSet.cs │ │ │ │ └── Win32 │ │ │ │ │ ├── ExternDll.cs │ │ │ │ │ ├── HandleCollector.cs │ │ │ │ │ ├── NativeMethodsCLR.cs │ │ │ │ │ ├── NativeMethodsOther.cs │ │ │ │ │ ├── NativeMethodsSetLastError.cs │ │ │ │ │ ├── SafeNativeMethodsCLR.cs │ │ │ │ │ ├── SafeNativeMethodsOther.cs │ │ │ │ │ ├── UnsafeNativeMethodsCLR.cs │ │ │ │ │ └── UnsafeNativeMethodsOther.cs │ │ │ │ └── TestServices.csproj │ │ ├── Directory.Build.props │ │ └── keys │ │ │ ├── TestTrusted.snk │ │ │ └── TestUntrusted.snk │ ├── CommonAssemblyInfo.cs │ ├── DRT │ │ ├── Directory.Build.props │ │ ├── DrtXaml.sln │ │ └── DrtXaml │ │ │ ├── BamlAvoidXmlTest │ │ │ ├── BamlAvoidXmlTest.cs │ │ │ └── BamlAvoidXmlTest.csproj │ │ │ ├── BamlTestClasses40 │ │ │ ├── BCMarkupExtension.cs │ │ │ ├── BamlBindingPath.xaml │ │ │ ├── BamlBindingPath.xaml.cs │ │ │ ├── BamlTestClasses40.csproj │ │ │ ├── BracketCharacterAttribute.xaml │ │ │ ├── BracketCharacterAttribute.xaml.cs │ │ │ ├── DeferContMEPV.xaml │ │ │ ├── DeferContMEPV.xaml.cs │ │ │ ├── ResourceResDeferredDictionary.xaml │ │ │ ├── ResourceResDeferredDictionary.xaml.cs │ │ │ ├── ResourceResForwardRef1.xaml │ │ │ ├── ResourceResForwardRef1.xaml.cs │ │ │ ├── ResourceResForwardRef2.xaml │ │ │ ├── ResourceResForwardRef2.xaml.cs │ │ │ ├── ResourceResInsert.xaml │ │ │ ├── ResourceResInsert.xaml.cs │ │ │ ├── ResourceResOverwrite.xaml │ │ │ ├── ResourceResOverwrite.xaml.cs │ │ │ ├── TempDPSetOrder1.xaml │ │ │ ├── TempDPSetOrder1.xaml.cs │ │ │ ├── TempDPSetOrder1ListBox.cs │ │ │ ├── WpfObfus1.xaml │ │ │ ├── WpfObfus1.xaml.cs │ │ │ ├── XmlSpace1.xaml │ │ │ ├── XmlSpace1.xaml.cs │ │ │ ├── XmlSpace2.xaml │ │ │ ├── XmlSpace2.xaml.cs │ │ │ ├── XmlSpace3.xaml │ │ │ └── XmlSpace3.xaml.cs │ │ │ ├── Directory.Build.props │ │ │ ├── DrtXaml │ │ │ ├── DrtTestFinder.cs │ │ │ ├── DrtXaml.csproj │ │ │ ├── DrtXamlBase.cs │ │ │ ├── ExtensionMethods.cs │ │ │ ├── NodeListValidator.cs │ │ │ ├── Tests │ │ │ │ ├── AdvXamlFeatureTests.cs │ │ │ │ ├── AttachablePropertyServicesTests.cs │ │ │ │ ├── AvoidSystemXmlTest.cs │ │ │ │ ├── BamlTests.cs │ │ │ │ ├── BasicXamlTests.cs │ │ │ │ ├── CollectionTests.cs │ │ │ │ ├── EventTests.cs │ │ │ │ ├── FactoryArgumentTests.cs │ │ │ │ ├── MarkupExtensionTests.cs │ │ │ │ ├── NameReferenceTests.cs │ │ │ │ ├── NodeStreamTests.cs │ │ │ │ ├── ObjectReaderTests.cs │ │ │ │ ├── ObjectWriterBasicTests.cs │ │ │ │ ├── SavedContextTests.cs │ │ │ │ ├── SchemaTests.cs │ │ │ │ ├── SubreaderTests.cs │ │ │ │ ├── TypeArgumentTests.cs │ │ │ │ ├── ValueSerializerTests.cs │ │ │ │ ├── WpfUsageTests.cs │ │ │ │ ├── Xaml │ │ │ │ │ ├── CdfTemplateTests.cs │ │ │ │ │ └── XamlServicesTests.cs │ │ │ │ ├── XamlMarkupExtensionWriterTests.cs │ │ │ │ ├── XamlTextWriterTests.cs │ │ │ │ └── XamlXmlReaderTests.cs │ │ │ └── XamlTestFrameWork │ │ │ │ ├── Assert.cs │ │ │ │ ├── Attributes.cs │ │ │ │ ├── TestDelegates.cs │ │ │ │ ├── TestFinder.cs │ │ │ │ └── XamlTestInfoBlock.cs │ │ │ ├── XamlTestClasses.FriendWithKey │ │ │ ├── FriendWithKey.cs │ │ │ └── XamlTestClasses.FriendWithKey.csproj │ │ │ ├── XamlTestClasses.FriendWithoutKey │ │ │ ├── FriendWithoutKey.cs │ │ │ └── XamlTestClasses.FriendWithoutKey.csproj │ │ │ └── XamlTestClasses │ │ │ ├── AMEET.cs │ │ │ ├── AmbientProperties.cs │ │ │ ├── ArrayHolder.cs │ │ │ ├── AttachableProperties.cs │ │ │ ├── BamlTypes.cs │ │ │ ├── Collections.cs │ │ │ ├── ConverterNameRefMath.cs │ │ │ ├── CpaClasses.cs │ │ │ ├── DestinationTypeConverterTypes.cs │ │ │ ├── DrtXaml.snk │ │ │ ├── DummyCollections.cs │ │ │ ├── Elements.cs │ │ │ ├── FactoryProvider.cs │ │ │ ├── IPVTClasses.cs │ │ │ ├── InitializationClasses.cs │ │ │ ├── MarkupExtensions.cs │ │ │ ├── NSGO.cs │ │ │ ├── NameScopes.cs │ │ │ ├── NodeStream.cs │ │ │ ├── ObjectReaderClasses.cs │ │ │ ├── ObsoleteClasses.cs │ │ │ ├── PropertyClasses.cs │ │ │ ├── TemplateClasses.cs │ │ │ ├── TestExpression.cs │ │ │ ├── TestTemplate.cs │ │ │ ├── TypeConverters.cs │ │ │ ├── ValueSerializerClasses.cs │ │ │ ├── Xaml │ │ │ └── CdfTemplateClasses.cs │ │ │ ├── XamlMarkupExtensionWriterClasses.cs │ │ │ ├── XamlObjectWriterClasses.cs │ │ │ ├── XamlTestClasses.csproj │ │ │ ├── XamlTextWriterClasses.cs │ │ │ ├── XmlDataHolder.cs │ │ │ └── XmlNsClasses.cs │ ├── Directory.Build.props │ └── MultiTargeting.props │ └── UnitTests │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── PresentationCore.Tests │ ├── FluentAssertions │ │ ├── ComparisonHelpers.cs │ │ ├── FluentAssertExtensions.cs │ │ ├── PointFAssertions.cs │ │ └── RectangleFAssertions.cs │ ├── GlobalUsings.cs │ ├── PresentationCore.Tests.csproj │ ├── System │ │ └── Windows │ │ │ ├── ClipboardTests.cs │ │ │ ├── DataObjectTests.cs │ │ │ ├── DurationConverter.Tests.cs │ │ │ ├── Input │ │ │ ├── Command │ │ │ │ ├── KeyGestureConverter.Tests.cs │ │ │ │ └── MouseGestureConverter.Tests.cs │ │ │ └── MouseActionConverter.Tests.cs │ │ │ ├── Media │ │ │ ├── Animation │ │ │ │ ├── KeySplineConverter.Tests.cs │ │ │ │ └── RepeatBehavior.Tests.cs │ │ │ ├── ColorConverter.Tests.cs │ │ │ ├── Generated │ │ │ │ └── BrushConverter.Tests.cs │ │ │ ├── Imaging │ │ │ │ ├── BitmapImage.Tests.cs │ │ │ │ └── WriteableBitmap.Tests.cs │ │ │ └── KnownColorsTests.cs │ │ │ └── TextDecorationCollectionConverter.Tests.cs │ ├── TestUtilities │ │ └── BinaryFormatTestExtensions.cs │ └── runtimeconfig.template.json │ ├── PresentationFramework.Fluent.Tests │ ├── GlobalUsings.cs │ ├── PresentationFramework.Fluent.Tests.csproj │ └── ResourceTests │ │ └── FluentResourceDictionaryTests.cs │ ├── PresentationFramework.Tests │ ├── GlobalUsings.cs │ ├── PresentationFramework.Tests.csproj │ └── System │ │ └── Windows │ │ ├── Controls │ │ └── VirtualizationCacheLengthConverter.Tests.cs │ │ ├── MessageBox.Tests.cs │ │ ├── ResourceDictionaryTests.cs │ │ └── Resources │ │ └── SampleResourceDictionary.xaml │ ├── System.Printing.Tests │ ├── GlobalUsings.cs │ ├── System.Printing.Tests.csproj │ └── System │ │ └── Printing │ │ └── IndexedProperties │ │ └── PrintStringPropertyTests.cs │ ├── System.Xaml.Tests │ ├── Common │ │ ├── CustomAssembly.cs │ │ ├── CustomConstructorInfo.cs │ │ ├── CustomMethodInfo.cs │ │ ├── CustomType.cs │ │ ├── CustomXamlType.cs │ │ ├── Optional.cs │ │ ├── SubXamlReader.cs │ │ └── SubXamlType.cs │ ├── System.Xaml.Tests.csproj │ └── System │ │ ├── Windows │ │ └── Markup │ │ │ ├── AcceptedMarkupExtensionExpressionTypeAttributeTests.cs │ │ │ ├── ArrayExtensionTests.cs │ │ │ ├── ConstructorArgumentAttributeTests.cs │ │ │ ├── ContentPropertyAttributeTests.cs │ │ │ ├── ContentWrapperAttributeTests.cs │ │ │ ├── DateTimeValueSerializerTests.cs │ │ │ ├── DependsOnAttributeTests.cs │ │ │ ├── DictionaryKeyPropertyAttributeTests.cs │ │ │ ├── MarkupExtensionBracketCharactersAttributeTests.cs │ │ │ ├── MarkupExtensionReturnTypeAttributeTests.cs │ │ │ ├── NameReferenceConverterTests.cs │ │ │ ├── NameScopePropertyAttributeTests.cs │ │ │ ├── NullExtensionTests.cs │ │ │ ├── PropertyDefinitionTests.cs │ │ │ ├── ReferenceTests.cs │ │ │ ├── RootNamespaceAttributeTests.cs │ │ │ ├── RuntimeNamePropertyAttributeTests.cs │ │ │ ├── StaticExtensionTests.cs │ │ │ ├── StringValueSerializerTests.cs │ │ │ ├── TrimSurroundingWhitespaceAttributeTests.cs │ │ │ ├── TypeExtensionTests.cs │ │ │ ├── UidPropertyAttributeTests.cs │ │ │ ├── UsableDuringInitializationAttributeTests.cs │ │ │ ├── ValueSerializerTests.cs │ │ │ ├── WhitespaceSignificantCollectionAttributeTests.cs │ │ │ ├── XDataTests.cs │ │ │ ├── XamlDeferLoadAttributeTests.cs │ │ │ ├── XamlSetMarkupExtensionAttributeTests.cs │ │ │ ├── XamlSetMarkupExtensionEventArgsTests.cs │ │ │ ├── XamlSetTypeConverterAttributeTests.cs │ │ │ ├── XamlSetTypeConverterEventArgsTests.cs │ │ │ ├── XamlSetValueEventArgsTests.cs │ │ │ ├── XmlLangPropertyAttributeTests.cs │ │ │ ├── XmlnsCompatibleWithAttributeTests.cs │ │ │ ├── XmlnsDefinitionAttributeTests.cs │ │ │ └── XmlnsPrefixAttributeTests.cs │ │ └── Xaml │ │ ├── AmbientPropertyValueTests.cs │ │ ├── AttachableMemberIdentifierTests.cs │ │ ├── NamespaceDeclarationTests.cs │ │ ├── Replacements │ │ ├── DateTimeConverter2Tests.cs │ │ ├── DateTimeOffsetConverter2Tests.cs │ │ ├── EventConverterTests.cs │ │ ├── TypeListConverterTests.cs │ │ ├── TypeTypeConverterTests.cs │ │ └── TypeUriConverterTests.cs │ │ ├── Schema │ │ ├── XamlMemberInvokerTests.cs │ │ ├── XamlTypeInvokerTests.cs │ │ ├── XamlTypeNameTests.cs │ │ ├── XamlTypeTypeConverterTests.cs │ │ └── XamlValueConverterTests.cs │ │ ├── XamlBackgroundReaderTests.cs │ │ ├── XamlDirectiveTests.cs │ │ ├── XamlDuplicateMemberExceptionTests.cs │ │ ├── XamlExceptionTests.cs │ │ ├── XamlInternalExceptionTests.cs │ │ ├── XamlLanguageTests.cs │ │ ├── XamlMemberTests.Mocks.cs │ │ ├── XamlMemberTests.cs │ │ ├── XamlNodeListTests.cs │ │ ├── XamlNodeQueueTests.cs │ │ ├── XamlObjectEventArgsTests.cs │ │ ├── XamlObjectReaderExceptionTests.cs │ │ ├── XamlObjectReaderSettingsTests.cs │ │ ├── XamlObjectWriterExceptionTests.cs │ │ ├── XamlObjectWriterSettingsTests.cs │ │ ├── XamlParseExceptionTests.cs │ │ ├── XamlReaderSettingsTests.cs │ │ ├── XamlReaderTests.cs │ │ ├── XamlSchemaContextSettingsTests.cs │ │ ├── XamlSchemaContextTests.cs │ │ ├── XamlSchemaExceptionTests.cs │ │ ├── XamlServicesTests.cs │ │ ├── XamlTypeTests.cs │ │ ├── XamlWriterSettingsTests.cs │ │ ├── XamlWriterTests.cs │ │ ├── XamlXmlReaderSettingsTests.cs │ │ ├── XamlXmlWriterExceptionTests.cs │ │ └── XamlXmlWriterSettingsTests.cs │ └── WindowsBase.Tests │ ├── GlobalUsings.cs │ ├── Helpers.cs │ ├── Resources.resx │ ├── Resources │ ├── Invalid_1.xps │ ├── Needle.png │ └── test-ole-file.doc │ ├── System │ ├── Collections │ │ └── Specialized │ │ │ └── CollectionChangedEventManagerTests.cs │ ├── ComponentModel │ │ ├── CurrentChangedEventManagerTests.cs │ │ ├── CurrentChangingEventArgsTests.cs │ │ ├── CurrentChangingEventManagerTests.cs │ │ ├── DependencyPropertyDescriptorTests.cs │ │ ├── ErrorsChangedEventManagerTests.cs │ │ ├── GroupDescriptionTests.cs │ │ ├── ItemPropertyInfoTests.cs │ │ ├── PropertyChangedEventManagerTests.cs │ │ ├── PropertyFilterAttributeTests.cs │ │ ├── SortDescriptionCollectionTests.cs │ │ └── SortDescriptionTests.cs │ ├── Diagnostics │ │ └── PresentationTraceSourcesTests.cs │ ├── IO │ │ └── Packaging │ │ │ ├── EncryptedPackageEnvelopeTests.cs │ │ │ └── PackageDigitalSignatureManagerTests.cs │ ├── Security │ │ └── RightsManagement │ │ │ ├── ContentGrantTests.cs │ │ │ ├── ContentUserTests.cs │ │ │ ├── CryptoProviderTests.cs │ │ │ ├── LocalizedNameDescriptionPairTests.cs │ │ │ ├── PublishLicenseTests.cs │ │ │ ├── RightsManagementExceptionTests.cs │ │ │ ├── SecureEnvironmentTests.cs │ │ │ ├── UnsignedPublishLicenseTests.cs │ │ │ └── UseLicenseTests.cs │ └── Windows │ │ ├── AttachedPropertyBrowsableForTypeAttributeTests.cs │ │ ├── AttachedPropertyBrowsableWhenAttributePresentAttributeTests.cs │ │ ├── BaseCompatibilityPreferencesTests.cs │ │ ├── Converters │ │ ├── Int32RectValueSerializerTests.cs │ │ ├── PointValueSerializerTests.cs │ │ ├── RectValueSerializerTests.cs │ │ ├── SizeValueSerializerTests.cs │ │ └── VectorValueSerializerTests.cs │ │ ├── Data │ │ └── DataSourceProviderTests.cs │ │ ├── DependencyObjectTests.cs │ │ ├── DependencyObjectTypeTests.cs │ │ ├── DependencyPropertyChangedEventArgsTests.cs │ │ ├── DependencyPropertyKeyTests.cs │ │ ├── DependencyPropertyTests.cs │ │ ├── DesignerSerializationOptionsAttributeTests.cs │ │ ├── ExpressionConverterTests.cs │ │ ├── ExpressionTests.cs │ │ ├── FreezableTests.cs │ │ ├── Input │ │ ├── KeyConverterTests.cs │ │ ├── KeyInteropTests.cs │ │ ├── KeyTests.cs │ │ ├── KeyValueSerializerTests.cs │ │ ├── ModifierKeysConverterTests.cs │ │ ├── ModifierKeysTests.cs │ │ ├── ModifierKeysValueSerializerTests.cs │ │ └── TraversalRequestTests.cs │ │ ├── Int32RectConverterTests.cs │ │ ├── Int32RectTests.cs │ │ ├── Interop │ │ ├── ComponentDispatcherTests.cs │ │ └── MSGTests.cs │ │ ├── LocalValueEntryTests.cs │ │ ├── LocalValueEnumeratorTests.cs │ │ ├── Markup │ │ ├── InternalTypeHelperTests.cs │ │ ├── Primitives │ │ │ ├── MarkupObjectTests.cs │ │ │ └── MarkupPropertyTests.cs │ │ └── ServiceProvidersTests.cs │ │ ├── Media │ │ ├── Converters │ │ │ └── MatrixValueSerializerTests.cs │ │ ├── DisableDpiAwarenessAttributeTests.cs │ │ ├── MatrixConverterTests.cs │ │ └── MatrixTests.cs │ │ ├── NameScopeTests.cs │ │ ├── PointConverterTests.cs │ │ ├── PointTests.cs │ │ ├── PropertyMetadataTests.cs │ │ ├── RectConverterTests.cs │ │ ├── RectTests.cs │ │ ├── SizeConverterTests.cs │ │ ├── SizeTests.cs │ │ ├── SplashScreenTests.cs │ │ ├── Threading │ │ ├── DispatcherFrameTests.cs │ │ ├── DispatcherHookEventArgsTests.cs │ │ ├── DispatcherHooksTests.cs │ │ ├── DispatcherObjectTests.cs │ │ ├── DispatcherOperationTests.cs │ │ ├── DispatcherPriorityAwaitableTests..cs │ │ ├── DispatcherPriorityAwaiterTests.cs │ │ ├── DispatcherProcessingDisabledTests.cs │ │ ├── DispatcherSynchronizationContextTests.cs │ │ ├── DispatcherTests.cs │ │ └── DispatcherTimerTests.cs │ │ ├── VectorConverterTests.cs │ │ ├── VectorTests.cs │ │ ├── WeakEventManagerTTests.cs │ │ └── WeakEventManagerTests.cs │ ├── Tests to Add.md │ └── WindowsBase.Tests.csproj ├── start-vs.cmd └── test.cmd /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_api_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/ISSUE_TEMPLATE/02_api_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/backportPRs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/workflows/backportPRs.yml -------------------------------------------------------------------------------- /.github/workflows/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/workflows/locker.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Documentation/C++-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/C++-notes.md -------------------------------------------------------------------------------- /Documentation/LocalMarkupCompilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/LocalMarkupCompilation.md -------------------------------------------------------------------------------- /Documentation/acceptance_criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/acceptance_criteria.md -------------------------------------------------------------------------------- /Documentation/api-compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/api-compat.md -------------------------------------------------------------------------------- /Documentation/c++-private-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/c++-private-tools.md -------------------------------------------------------------------------------- /Documentation/codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/codegen.md -------------------------------------------------------------------------------- /Documentation/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/contributing.md -------------------------------------------------------------------------------- /Documentation/cycle-breakers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/cycle-breakers.md -------------------------------------------------------------------------------- /Documentation/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/developer-guide.md -------------------------------------------------------------------------------- /Documentation/docs/using-fluent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/docs/using-fluent.md -------------------------------------------------------------------------------- /Documentation/gen-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/gen-api.md -------------------------------------------------------------------------------- /Documentation/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/getting-started.md -------------------------------------------------------------------------------- /Documentation/images/configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/images/configurations.png -------------------------------------------------------------------------------- /Documentation/images/templates-check-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/images/templates-check-installed.png -------------------------------------------------------------------------------- /Documentation/issue-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/issue-guide.md -------------------------------------------------------------------------------- /Documentation/localization_untranslated_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/localization_untranslated_strings.md -------------------------------------------------------------------------------- /Documentation/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/packaging.md -------------------------------------------------------------------------------- /Documentation/project/api-review-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/project/api-review-process.md -------------------------------------------------------------------------------- /Documentation/projects-and-assemblies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/projects-and-assemblies.md -------------------------------------------------------------------------------- /Documentation/redistributables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/redistributables.md -------------------------------------------------------------------------------- /Documentation/report-on-adding-new-property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/report-on-adding-new-property.md -------------------------------------------------------------------------------- /Documentation/solution-and-project-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/solution-and-project-configurations.md -------------------------------------------------------------------------------- /Documentation/testing-in-helix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/testing-in-helix.md -------------------------------------------------------------------------------- /Documentation/wpf.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Documentation/wpf.vsconfig -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Microsoft.Dotnet.Wpf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Microsoft.Dotnet.Wpf.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/README.md -------------------------------------------------------------------------------- /Restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/Restore.cmd -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /azure-pipelines-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/azure-pipelines-pr.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/azure-pipelines1.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/codecov.yml -------------------------------------------------------------------------------- /dotnet-test-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/dotnet-test-install.ps1 -------------------------------------------------------------------------------- /eng/AfterSolutionBuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/AfterSolutionBuild.targets -------------------------------------------------------------------------------- /eng/Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Build.props -------------------------------------------------------------------------------- /eng/CodeCoverage.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/CodeCoverage.config -------------------------------------------------------------------------------- /eng/CodeCoverage.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/CodeCoverage.proj -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Testing.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Testing.targets -------------------------------------------------------------------------------- /eng/Tools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Tools.props -------------------------------------------------------------------------------- /eng/Version.Details.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Version.Details.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/Sdk/Sdk.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/Sdk/Sdk.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/AddDrtsToPayload.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/AddDrtsToPayload.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ApiCompat.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ApiCompat.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ApiCompat.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ApiCompat.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/AvTrace/GenTraceSources.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/AvTrace/GenTraceSources.pl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/AvTrace/GenTraceStrings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/AvTrace/GenTraceStrings.pl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CodeAnalysis.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CodeAnalysis.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CodeAnalysis.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CodeAnalysis.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CodeGen.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CodeGen.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CodeGen/AvTrace/AvTraceMessages.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CodeGen/AvTrace/AvTraceMessages.tt -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CodeGen/AvTrace/GenAvMessages.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CodeGen/AvTrace/GenAvMessages.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CopyRedistFile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CopyRedistFile.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/CreateTestPayload.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/CreateTestPayload.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/DrtsToRun.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/DrtsToRun.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ExtendedAssemblyInfo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ExtendedAssemblyInfo.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ExtendedAssemblyInfo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ExtendedAssemblyInfo.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/FixupProjectReferences.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/FixupProjectReferences.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/FolderPaths.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/FolderPaths.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/FolderPaths.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/FolderPaths.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenApi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenApi.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenApi.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenApi.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenXmlStringTable.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenXmlStringTable.pl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenerateAvTraceMessages.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenerateAvTraceMessages.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenerateModuleDefinitionFile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenerateModuleDefinitionFile.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenerateProgramFileForTests.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenerateProgramFileForTests.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/GenerateProgramFileForTests.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/GenerateProgramFileForTests.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/InlineTasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/InlineTasks.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/NoInternalTypeHelper.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/NoInternalTypeHelper.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/NoTargets.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/NoTargets.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/NoTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/NoTargets.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Packaging.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Packaging.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Packaging.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Packaging.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Pbt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Pbt.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Pbt.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Pbt.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ProjectReferences.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ProjectReferences.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ProjectReferences.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ProjectReferences.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Publishing.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Publishing.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Publishing.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Redist.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Redist.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Redist.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Redist.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ReferenceAssembly.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ReferenceAssembly.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ReferenceAssembly.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ReferenceAssembly.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ResourceLinking.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ResourceLinking.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/RunDrtsLocal.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/RunDrtsLocal.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/RuntimeFrameworkReference.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/SdkReferences.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/SdkReferences.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ShippingProjects.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ShippingProjects.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/ShippingProjects.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/ShippingProjects.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Signing.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Signing.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Signing.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/SourceLink.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/SourceLink.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/SystemResources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/SystemResources.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/TargetFrameworks.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/TargetFrameworks.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/TestProjects.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/TestProjects.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/VersionSuffix.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/VersionSuffix.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WPF_Generated_Files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WPF_Generated_Files.txt -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Wpf.Cpp.PrivateTools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Wpf.Cpp.PrivateTools.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Wpf.Cpp.PrivateTools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Wpf.Cpp.PrivateTools.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Wpf.Cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Wpf.Cpp.props -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/Wpf.Cpp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/Wpf.Cpp.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WpfProjectReference.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WpfProjectReference.targets -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/CodeTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/CodeTags.txt -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/TCHARUNIwpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/TCHARUNIwpp.ini -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/control.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/control.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/defaultwpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/defaultwpp.ini -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/header.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorControl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorControl.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorDefault.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorDefault.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorHeader.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorHeader.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorInit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-StorInit.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-WdfDefault.tpl: -------------------------------------------------------------------------------- 1 | `INCLUDE km-default.tpl` -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-default.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-header.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-init.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-init.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/km-w2k.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/km-w2k.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/mof.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/mof.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/r1defwpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/r1defwpp.ini -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/simple.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/simple.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/stdout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/stdout.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/tracemacro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/tracemacro.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/trmacro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/trmacro.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/um-default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/um-default.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/um-header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/um-header.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/um-init.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/um-init.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/WppConfig/rev1/um-w2k.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/WppConfig/rev1/um-w2k.tpl -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/configure-machine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/configure-machine.ps1 -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/pre-commit.githook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/pre-commit.githook -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/runtests.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0runtests.ps1""" %*" -------------------------------------------------------------------------------- /eng/WpfArcadeSdk/tools/runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/WpfArcadeSdk/tools/runtests.ps1 -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /eng/configure-toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/configure-toolset.ps1 -------------------------------------------------------------------------------- /eng/copy-wpf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/copy-wpf.ps1 -------------------------------------------------------------------------------- /eng/pipeline-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/pipeline-pr.yml -------------------------------------------------------------------------------- /eng/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/pipeline.yml -------------------------------------------------------------------------------- /eng/pre-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/pre-build.ps1 -------------------------------------------------------------------------------- /eng/restore-toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/restore-toolset.ps1 -------------------------------------------------------------------------------- /eng/scripts/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/scripts/CIBuild.cmd -------------------------------------------------------------------------------- /eng/scripts/CIUnitTest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/scripts/CIUnitTest.cmd -------------------------------------------------------------------------------- /eng/sdl-tsa-vars.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/sdl-tsa-vars.config -------------------------------------------------------------------------------- /eng/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/tsaoptions.json -------------------------------------------------------------------------------- /eng/wpf-debug.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/wpf-debug.targets -------------------------------------------------------------------------------- /eng/wpfautomatedtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/eng/wpfautomatedtests.yml -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /github-merge-flow.jsonc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/github-merge-flow.jsonc.txt -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/global.json -------------------------------------------------------------------------------- /packaging/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Directory.Build.props -------------------------------------------------------------------------------- /packaging/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Directory.Build.targets -------------------------------------------------------------------------------- /packaging/Microsoft.DotNet.Wpf.GitHub/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Microsoft.DotNet.Wpf.GitHub/Directory.Build.targets -------------------------------------------------------------------------------- /packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/readme.MD -------------------------------------------------------------------------------- /packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packaging/Microsoft.NET.Sdk.WindowsDesktop/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Microsoft.NET.Sdk.WindowsDesktop/Sdk/Sdk.props -------------------------------------------------------------------------------- /packaging/Microsoft.NET.Sdk.WindowsDesktop/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/packaging/Microsoft.NET.Sdk.WindowsDesktop/Sdk/Sdk.targets -------------------------------------------------------------------------------- /packaging/Microsoft.NET.Sdk.WindowsDesktop/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/roadmap.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Aero-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Aero-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Aero2-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Aero2-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.AeroLite-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.AeroLite-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Classic-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Classic-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Luna-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Luna-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Royale-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework.Royale-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationUI-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Controls.Ribbon-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Presentation-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsFormsIntegration-ref-Net48.baseline.txt: -------------------------------------------------------------------------------- 1 | Total Issues: 0 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/Directory.Build.Props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/cycle-breakers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/cycle-breakers/.editorconfig -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/cycle-breakers/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/cycle-breakers/Directory.Build.Props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/redist/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/redist/Directory.Build.Props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/redist/Redist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/redist/Redist.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/redist/VCRuntime/VCRuntime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/redist/VCRuntime/VCRuntime.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/specs/0spec_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/specs/0spec_template.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/specs/AutomationUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/specs/AutomationUpdate.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/specs/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/specs/tooltip.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/.editorconfig -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/Graphics/exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/Graphics/exports.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_av_types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_av_types.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_error.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_exports.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/Graphics/wgx_render.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Common/src/System/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Common/src/System/SR.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/main.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/DirectWriteForwarder/version.rc -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Directory.Build.Props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dir.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dir.targets -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbList.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbList.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbPreallocArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbPreallocArray.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbPreallocArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PbPreallocArray.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenIMC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenIMC.manifest -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.def -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.idl -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.rc -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PenImc.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcContext.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcContext.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcManager.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcManager.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcSurrogate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcSurrogate.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcSurrogate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcSurrogate.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcTablet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcTablet.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcTablet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/PimcTablet.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/compressstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/compressstub.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/dir.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/dir.targets -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/dlldatax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/dlldatax.c -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/dlldatax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/dlldatax.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/resource.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/stdafx.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/dll/stdafx.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabAssert.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabInc.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabletPCVer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/TabletPCVer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/peninc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/peninc.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/pentypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/pentypes.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpcpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpcpen.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpcpen_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpcpen_i.c -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpguuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/tpguuid.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptics.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptics_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptics_i.c -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptis.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptis_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/inc/wisptis_i.c -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/TabLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/TabLib.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/dir.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/dir.targets -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/scope.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/scopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/scopes.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/sidutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/sidutils.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PenImc/tablib/sidutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PenImc/tablib/sidutils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PresentationBuildTasks/SR.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/PresentationCore/Fonts/simpo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/PresentationCore/Fonts/simpo.ttf -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/ReachFramework/ILLinkTrim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/ReachFramework/ILLinkTrim.xml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/ItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/ItemList.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/ItemMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/ItemMap.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/Maps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/Maps.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Utility/Trace.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Win32/ExternDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Win32/ExternDll.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/MS/Win32/WinInet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/MS/Win32/WinInet.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/README.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/RefAssemblyAttrs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/RefAssemblyAttrs.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/Tracing/mcwpf/mcwpf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/Tracing/mcwpf/mcwpf.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.evxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.evxml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.man -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/Tracing/wpf-etw.proj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/cpp/Utils.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/cpp/Utils.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/cpp/dwriteloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/cpp/dwriteloader.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/BuildInfo.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/BuildInfo.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/MiscMacros.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/MiscMacros.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/Utils.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/Utils.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/WPFEventTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/WPFEventTrace.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/WPFSDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/WPFSDL.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/ddbanned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/ddbanned.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/dwriteloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/dwriteloader.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Shared/inc/osversionhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Shared/inc/osversionhelper.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/System.Xaml/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/System.Xaml/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Button.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Calendar.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/CheckBox.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ComboBox.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ComboBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ComboBoxItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ContextMenu.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/DataGrid.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/DatePicker.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Expander.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/FocusVisual.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/FocusVisual.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Frame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Frame.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/GridSplitter.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/GroupBox.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/GroupItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/GroupItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/HyperLink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/HyperLink.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ItemsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ItemsControl.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Label.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListBox.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListBoxItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListView.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ListViewItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Menu.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/MenuItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/MenuItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Page.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ProgressBar.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/RadioButton.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ResizeGrip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ResizeGrip.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ScrollBar.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ScrollViewer.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Separator.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Slider.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/StatusBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/StatusBar.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TabControl.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/TabItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TabItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TextBox.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Thumb.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Thumb.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ToolBar.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/ToolTip.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TreeView.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/TreeViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/TreeViewItem.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/UserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/UserControl.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/Themes/XAML/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/Themes/XAML/Window.xaml -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WindowsBase/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WindowsBase/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WindowsBase/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WindowsBase/SR.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/debug.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/debug.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/debug.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/debug.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/event.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/event.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/event.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/event.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/flags.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/flags.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/flags.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/flags.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/input.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/input.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/input.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/input.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/minnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/minnt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/output.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/output.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/output.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/output.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/precomp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/DbgXHelper/precomp.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/Directory.Build.Props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/Graphics.Paths.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/Graphics.Paths.props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/Graphics.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/Graphics.props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/mcg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/mcg/README.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/mcg/mcg.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/mcg/mcg.proj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/mcg/tools/SetClrPath.cmd: -------------------------------------------------------------------------------- 1 | set clrpath=%WindowsSdkPath% 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/codegen/readme.txt -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/bitmap.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/scanop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/scanop.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/srgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/scanop/srgb.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/List.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/Xmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/Xmm.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/engine.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/heap.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/mem.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/mem.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/milcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/milcom.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/real.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/real.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/shared.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utc.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utc.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/utils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/xmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/common/shared/xmm.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_base.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_base.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_brush.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_brush.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_factory.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_include.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_lights.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_mesh3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_mesh3d.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_shader.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_utils.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/api_utils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/exports.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/api/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/ClockWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/ClockWrapper.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/DummyPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/DummyPlayer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/EvrPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/EvrPresenter.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/SampleQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/SampleQueue.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/SharedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/SharedState.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/StateThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/StateThread.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UniqueList.inl -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UpdateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/UpdateState.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/WmpPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/WmpPlayer.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/WmpPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/WmpPlayer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/activate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/activate.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/activate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/activate.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.targets -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/av.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avloader.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avloader.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avtrace.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/avtrace.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/eventproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/eventproxy.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/eventproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/eventproxy.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/fakepp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/fakepp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/fakepp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/fakepp.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/frewpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/frewpp.ini -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/globals.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/globals.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/internal.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/mediabuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/mediabuffer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/milav.inl -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/playerstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/playerstate.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/refdiagram.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/refdiagram.vsd -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/av/util.inl -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/3dutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/3dutils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Config.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Display.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Dump.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Dump.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Gamma.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Gamma.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/MILDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/MILDC.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/OSCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/OSCompat.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Rect.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Tier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Tier.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Tier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/Tier.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/common.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/d3dutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/d3dutils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/engine.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/engine.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/fix.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/lazymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/lazymem.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/log.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/log.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/matrix.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/matrix.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/memblock.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/milboxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/milboxf.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/mildc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/mildc.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrarray.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrset.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/ptrset.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/rtutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/rtutils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/utils.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/common/utils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/control/dll/milctrl.rc: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/WpfGfx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/WpfGfx.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/dllentry.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/milcore.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/milcore.rc -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/wpfgfx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/dll/wpfgfx.def -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/fxjit/fxjit.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/fxjit/fxjit.props -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/area.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/area.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/bezier.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/cpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/cpen.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/cpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/cpen.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/figure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/figure.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/shape.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/geometry/utils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/glyph.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/perf.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/perf.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/glyph/precomp.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwBrush.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwBrushPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwBrushPool.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwCaps.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwSolidBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwSolidBrush.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwStateTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwStateTable.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwUtils.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/HwUtils.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Shaders.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Shaders.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Shaders.rc -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Waffler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/Waffler.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3ddevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3ddevice.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3ddevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3ddevice.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dgeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dgeometry.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dglyphbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dglyphbank.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dglyphrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dglyphrun.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dlog.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dlog.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dregistry.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dresource.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dstats.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dstats.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dsurface.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dsurface.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dswapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dswapchain.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dtexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dtexture.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dtexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dtexture.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dvertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/d3dvertex.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/gpumarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/gpumarker.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/gpumarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/gpumarker.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.rc -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hw.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwdisplayrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwdisplayrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwffshaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwffshaders.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwhwndrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwhwndrt.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwhwndrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwhwndrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwinit.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwinit.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwpipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwpipeline.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwpipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwpipeline.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwrasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwrasterizer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwshader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwshader.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwshader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwshader.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrt.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrtdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwsurfrtdata.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwtexturert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/hwtexturert.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/swfallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/swfallback.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/swfallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/swfallback.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/waffler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/hw/waffler.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/desktoprt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/desktoprt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/dummyrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/dummyrt.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/dummyrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/dummyrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/meta.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/meta.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/meta.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/metart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/metart.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/metart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/metart.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/meta/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/brush.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/light.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/node.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/pen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/pen.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/pen.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/scale.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/skew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/resources/skew.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/aacoverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/aacoverage.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/aarasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/aarasterizer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/bilinearspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/bilinearspan.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/boundsrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/boundsrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/brushspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/brushspan.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/sw.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swclip.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swglyphrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swglyphrun.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swhwndrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swhwndrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swinit.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swpresentgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swpresentgdi.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swrast.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swsurfrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/sw/swsurfrt.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/BaseRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/BaseRT.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/RTLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/RTLayer.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/Targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/targets/Targets.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/DpiProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/DpiProvider.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/UceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/UceTypes.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/VisualCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/VisualCache.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/apifunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/apifunc.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/clipstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/clipstack.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/clipstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/clipstack.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/cmdbatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/cmdbatch.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/cmdbatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/cmdbatch.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/composition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/composition.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/connection.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/dirtyregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/dirtyregion.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/global.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/global.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/graphwalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/graphwalker.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/handletable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/handletable.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htmaster.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htmaster.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htslave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htslave.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htslave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/htslave.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/hwndtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/hwndtarget.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/partition.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/partition.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precomp.hpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precompctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/precompctx.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/printtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/printtarget.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/resslave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/resslave.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/resslave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/resslave.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/rsapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/rsapi.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/rsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/rsapi.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/uce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/uce.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/uce.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/uce.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/vt_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/core/uce/vt_api.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/Wpfx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/Wpfx.sln -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/argparse.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/argparse.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/argparse.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/argparse.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/cmd.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/cmdstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/cmdstruct.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/dbgxmain.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/dbgxmain.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/debug.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/debug.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/debug.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/debug.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/dumptable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/dumptable.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/exts.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/exts.vcxproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/help.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/help.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/helpers.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/helpers.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/helpers.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/hwndlookup.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/hwndlookup.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milanalyze.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milanalyze.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/mildbglib.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/mildbglib.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milexts.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milexts.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milresource.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/milresource.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/precomp.cpp -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/precomp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/precomp.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/stackcapture.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/stackcapture.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/stackcapture.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/stackcapture.hxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/vsprite.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/vsprite.cxx -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/wpfx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/exts/wpfx.def -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/exports.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/gencode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/gencode.pl -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/spec_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/spec_string.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/std.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_av_types.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_av_types.w -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_error.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_error.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_exports.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_render.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/include/wgx_render.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/Always.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/Always.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/Invariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/Invariant.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/W4Warn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/shared/inc/W4Warn.h -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/MainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/MainClass.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/Project.cs -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/README.md -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/csp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/src/WpfGfx/tools/csp/csp.csproj -------------------------------------------------------------------------------- /src/Microsoft.DotNet.Wpf/tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/src/Microsoft.DotNet.Wpf/tests/Directory.Build.props -------------------------------------------------------------------------------- /start-vs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/start-vs.cmd -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/wpf/HEAD/test.cmd --------------------------------------------------------------------------------