diff --git a/Documentation/gen-api.md b/Documentation/gen-api.md new file mode 100644 index 00000000000..6aef273a45d --- /dev/null +++ b/Documentation/gen-api.md @@ -0,0 +1,46 @@ +# GenApi Usage in WPF on .NET Core +In WPF on .NET Core, C# reference assemblies are created via the use of [GenAPI](https://github.com/dotnet/arcade/tree/master/src/Microsoft.DotNet.GenAPI) and a separate reference assembly project located in the `ref` directory under a particular assemblies source directory. + +WPF assemblies make extensive use of the [InternalsVisibleToAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.internalsvisibletoattribute?view=netcore-3.0) which precludes the use of [ProduceReferenceAssembly](https://docs.microsoft.com/en-us/visualstudio/msbuild/common-msbuild-project-properties?view=vs-2019) or [ProduceOnlyReferenceAssembly](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/refonly-compiler-option). This is because these compiler options will include internal types and members in the reference assembly. In WPF, this creates dangling references to assemblies that do not exist in the `WindowsDesktop` reference pack. + +Using GenAPI allows us to strip out internals, removing the dangling references from our reference assemblies. + +## [GenApi.props](/eng/WpfArcadeSdk/tools/GenApi.props) +Contains various properties related to GenAPI runs and configurations. +* `GenAPIEnabledProjects` + * The set of projects to run GenAPI on +* `GlobalApiExclusionsFile` + * A file that specifies API surface area to exclude from code generation (see [GlobalApiExclusions.txt](/eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt)) +* `GlobalAttrExclusionsFile` + * A file that specifies Attributes to exclude from code generation (see [GlobalAttrExclusions.txt](/eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt)) +* `GenAPIAdditionalParameters` + * Parameters to GenAPI built up from local configuration +* _GenerateReferenceAssemblySource + * A private parameter used to enable GenAPI targets +## [GenApi.targets](/eng/WpfArcadeSdk/tools/GenApi.targets) +Contains targets and properties related to GenAPI runs +* `GenAPITargetDir` + * The directory where GenAPI will generate code +* `GenAPITargetPath` + * The full path to the file GenAPI will generate +* `EnsureGenAPITargetDirectory` + * Creates the directory specified by `GenAPITargetDir` if it does not exist +## Using GenAPI in WPF +GenAPI is run only on-demand. In the event that a change to a runtime assembly creates new public surface area, a developer will see an [ApiCompat](api-compat.md) error between the reference assembly and the runtime assembly. In order to address this, the developer must run GenAPI to generate new reference assembly code. +### Running GenAPI +GenAPI can be run by setting the following MSBuild property while building. +``` +/p:GenerateReferenceAssemblySource=true +``` +When a build is run with that property enabled, GenAPI will read the runtime assembly and generate a new `{AssemblyName}.cs` file under the ref directory in the assembly's source tree. + +This new file will contain the newly created surface area and will need to be checked in along with the runtime assembly change. The next build without `GenerateReferenceAssemblySource` enabled will no longer display an ApiCompat error as the surface area will now match the baseline. +### Issues with GenAPI +Often, GenAPI will generate code output that will contain code that is either private, internal, or creates build errors. For this reason a developer usually cannot just use the output of GenAPI directly. Instead, the developer should do the following: +* Build with GenAPI enabled +* Diff the output file against the previous version +* Extract just the new surface area (and related code) from the generated code +* Revert the generated file +* Add back the new surface area to the reference assembly code +* Ensure that nothing in the new surface area is private or internal unless requried by XAML compilation or other reference assemblies +* Rebuild without GenAPI enabled and verify there are no ApiCompat errors diff --git a/Microsoft.Dotnet.Wpf.sln b/Microsoft.Dotnet.Wpf.sln index ba942850400..ca9b6ff2ad8 100644 --- a/Microsoft.Dotnet.Wpf.sln +++ b/Microsoft.Dotnet.Wpf.sln @@ -77,8 +77,28 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Printing-Presentatio EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{D0AED517-9972-41CB-8751-983E4EB8F511}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PresentationCore-ref", "src\Microsoft.DotNet.Wpf\src\PresentationCore\ref\PresentationCore-ref.csproj", "{9F39CC8E-7EDE-4F93-B8D8-0320533DF420}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PresentationFramework-ref", "src\Microsoft.DotNet.Wpf\src\PresentationFramework\ref\PresentationFramework-ref.csproj", "{4B948597-3625-4B63-A272-2A9D8B37DC6D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReachFramework-ref", "src\Microsoft.DotNet.Wpf\src\ReachFramework\ref\ReachFramework-ref.csproj", "{B824914F-06A9-4FA4-8584-1B4F3E041973}" +EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Printing-ref", "src\Microsoft.DotNet.Wpf\src\System.Printing\ref\System.Printing-ref.csproj", "{0D7A2936-51DB-4B6F-906B-301E20141064}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Windows.Input.Manipulations-ref", "src\Microsoft.DotNet.Wpf\src\System.Windows.Input.Manipulations\ref\System.Windows.Input.Manipulations-ref.csproj", "{89FF315B-1200-472B-9CCA-93D51512604B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Xaml-ref", "src\Microsoft.DotNet.Wpf\src\System.Xaml\ref\System.Xaml-ref.csproj", "{65C38C26-CC7A-4389-A5FF-46E55A214492}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UIAutomationClient-ref", "src\Microsoft.DotNet.Wpf\src\UIAutomation\UIAutomationClient\ref\UIAutomationClient-ref.csproj", "{702AF75A-9BF3-494C-8265-4E3D1B2937F5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UIAutomationClientSideProviders-ref", "src\Microsoft.DotNet.Wpf\src\UIAutomation\UIAutomationClientSideProviders\ref\UIAutomationClientSideProviders-ref.csproj", "{38702943-E4E0-4DD8-9301-6BCCB49A759E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UIAutomationProvider-ref", "src\Microsoft.DotNet.Wpf\src\UIAutomation\UIAutomationProvider\ref\UIAutomationProvider-ref.csproj", "{5F2BDB27-183B-49A7-89E5-E5CA039D5001}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UIAutomationTypes-ref", "src\Microsoft.DotNet.Wpf\src\UIAutomation\UIAutomationTypes\ref\UIAutomationTypes-ref.csproj", "{29C13CF5-AFE9-4D43-8CF0-46361096117F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsBase-ref", "src\Microsoft.DotNet.Wpf\src\WindowsBase\ref\WindowsBase-ref.csproj", "{8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}" +EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{B0EFDB12-C931-4E7F-A6C2-D4AC111D7EDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrtXaml", "src\Microsoft.DotNet.Wpf\test\DRT\DrtXaml\DrtXaml\DrtXaml.csproj", "{FAB114A2-2C6C-4372-A6BB-BC087B646E3A}" @@ -575,6 +595,126 @@ Global {A78C427C-F7FE-486A-8777-1701E6E81BE0}.Release|x64.Build.0 = Release|x64 {A78C427C-F7FE-486A-8777-1701E6E81BE0}.Release|x86.ActiveCfg = Release|Any CPU {A78C427C-F7FE-486A-8777-1701E6E81BE0}.Release|x86.Build.0 = Release|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|Any CPU.Build.0 = Debug|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|x64.ActiveCfg = Debug|x64 + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|x64.Build.0 = Debug|x64 + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|x86.ActiveCfg = Debug|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Debug|x86.Build.0 = Debug|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|Any CPU.ActiveCfg = Release|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|Any CPU.Build.0 = Release|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|x64.ActiveCfg = Release|x64 + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|x64.Build.0 = Release|x64 + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|x86.ActiveCfg = Release|Any CPU + {65C38C26-CC7A-4389-A5FF-46E55A214492}.Release|x86.Build.0 = Release|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|x64.ActiveCfg = Debug|x64 + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|x64.Build.0 = Debug|x64 + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|x86.ActiveCfg = Debug|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Debug|x86.Build.0 = Debug|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|Any CPU.Build.0 = Release|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|x64.ActiveCfg = Release|x64 + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|x64.Build.0 = Release|x64 + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|x86.ActiveCfg = Release|Any CPU + {8D2B8BD2-25A5-47FD-B1E8-87E800CA2184}.Release|x86.Build.0 = Release|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|x64.ActiveCfg = Debug|x64 + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|x64.Build.0 = Debug|x64 + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|x86.ActiveCfg = Debug|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Debug|x86.Build.0 = Debug|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|Any CPU.Build.0 = Release|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|x64.ActiveCfg = Release|x64 + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|x64.Build.0 = Release|x64 + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|x86.ActiveCfg = Release|Any CPU + {29C13CF5-AFE9-4D43-8CF0-46361096117F}.Release|x86.Build.0 = Release|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|x64.ActiveCfg = Debug|x64 + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|x64.Build.0 = Debug|x64 + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|x86.ActiveCfg = Debug|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Debug|x86.Build.0 = Debug|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|Any CPU.Build.0 = Release|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|x64.ActiveCfg = Release|x64 + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|x64.Build.0 = Release|x64 + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|x86.ActiveCfg = Release|Any CPU + {5F2BDB27-183B-49A7-89E5-E5CA039D5001}.Release|x86.Build.0 = Release|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|x64.ActiveCfg = Debug|x64 + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|x64.Build.0 = Debug|x64 + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|x86.ActiveCfg = Debug|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Debug|x86.Build.0 = Debug|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|Any CPU.Build.0 = Release|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|x64.ActiveCfg = Release|x64 + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|x64.Build.0 = Release|x64 + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|x86.ActiveCfg = Release|Any CPU + {702AF75A-9BF3-494C-8265-4E3D1B2937F5}.Release|x86.Build.0 = Release|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|x64.ActiveCfg = Debug|x64 + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|x64.Build.0 = Debug|x64 + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|x86.ActiveCfg = Debug|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Debug|x86.Build.0 = Debug|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|Any CPU.Build.0 = Release|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|x64.ActiveCfg = Release|x64 + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|x64.Build.0 = Release|x64 + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|x86.ActiveCfg = Release|Any CPU + {38702943-E4E0-4DD8-9301-6BCCB49A759E}.Release|x86.Build.0 = Release|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|x64.ActiveCfg = Debug|x64 + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|x64.Build.0 = Debug|x64 + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|x86.ActiveCfg = Debug|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Debug|x86.Build.0 = Debug|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|Any CPU.Build.0 = Release|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|x64.ActiveCfg = Release|x64 + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|x64.Build.0 = Release|x64 + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|x86.ActiveCfg = Release|Any CPU + {89FF315B-1200-472B-9CCA-93D51512604B}.Release|x86.Build.0 = Release|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|x64.ActiveCfg = Debug|x64 + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|x64.Build.0 = Debug|x64 + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|x86.ActiveCfg = Debug|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Debug|x86.Build.0 = Debug|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|Any CPU.Build.0 = Release|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|x64.ActiveCfg = Release|x64 + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|x64.Build.0 = Release|x64 + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|x86.ActiveCfg = Release|Any CPU + {9F39CC8E-7EDE-4F93-B8D8-0320533DF420}.Release|x86.Build.0 = Release|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|x64.ActiveCfg = Debug|x64 + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|x64.Build.0 = Debug|x64 + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|x86.ActiveCfg = Debug|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Debug|x86.Build.0 = Debug|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|Any CPU.Build.0 = Release|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|x64.ActiveCfg = Release|x64 + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|x64.Build.0 = Release|x64 + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|x86.ActiveCfg = Release|Any CPU + {B824914F-06A9-4FA4-8584-1B4F3E041973}.Release|x86.Build.0 = Release|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|x64.ActiveCfg = Debug|x64 + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|x64.Build.0 = Debug|x64 + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|x86.ActiveCfg = Debug|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Debug|x86.Build.0 = Debug|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|Any CPU.Build.0 = Release|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|x64.ActiveCfg = Release|x64 + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|x64.Build.0 = Release|x64 + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|x86.ActiveCfg = Release|Any CPU + {4B948597-3625-4B63-A272-2A9D8B37DC6D}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f813b7debe9..4dd4a7917b6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -63,13 +63,13 @@ https://github.com/dotnet/core-setup 08e144c8651632da7bf1fbab409d27787ce6aa4a - + https://github.com/dotnet/arcade - 9946534da4f73e6242ca105f6798ab58119c9ab0 + 12508aec923685c972842c646349faf0f8991e86 - + https://github.com/dotnet/arcade - 9946534da4f73e6242ca105f6798ab58119c9ab0 + 12508aec923685c972842c646349faf0f8991e86 https://github.com/dotnet/corefx @@ -95,13 +95,17 @@ https://github.com/dotnet/coreclr 8974a699899bdc2cc5687504e1ada606ac803e9b - + https://github.com/dotnet/arcade - 9946534da4f73e6242ca105f6798ab58119c9ab0 + 12508aec923685c972842c646349faf0f8991e86 - + https://github.com/dotnet/arcade - 9946534da4f73e6242ca105f6798ab58119c9ab0 + 12508aec923685c972842c646349faf0f8991e86 + + + https://github.com/dotnet/arcade + 12508aec923685c972842c646349faf0f8991e86 diff --git a/eng/Versions.props b/eng/Versions.props index e2122656283..68b1a193fe1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -40,8 +40,9 @@ - 1.0.0-beta.19323.4 - 1.0.0-beta.19323.4 + 1.0.0-beta.19324.7 + 1.0.0-beta.19324.7 + 1.0.0-beta.19324.7 diff --git a/eng/WpfArcadeSdk/Sdk/Sdk.props b/eng/WpfArcadeSdk/Sdk/Sdk.props index 804c61ba41b..d10a40453e1 100644 --- a/eng/WpfArcadeSdk/Sdk/Sdk.props +++ b/eng/WpfArcadeSdk/Sdk/Sdk.props @@ -40,6 +40,7 @@ + full diff --git a/eng/WpfArcadeSdk/Sdk/Sdk.targets b/eng/WpfArcadeSdk/Sdk/Sdk.targets index 0e77cc10d5d..a09ea4a9860 100644 --- a/eng/WpfArcadeSdk/Sdk/Sdk.targets +++ b/eng/WpfArcadeSdk/Sdk/Sdk.targets @@ -24,6 +24,7 @@ + diff --git a/eng/WpfArcadeSdk/tools/ApiCompat.props b/eng/WpfArcadeSdk/tools/ApiCompat.props index f843a3819e5..b14b639975e 100644 --- a/eng/WpfArcadeSdk/tools/ApiCompat.props +++ b/eng/WpfArcadeSdk/tools/ApiCompat.props @@ -7,6 +7,39 @@ PresentationBuildTasks; + PresentationCore-ref; + PresentationFramework-ref; + PresentationFramework.Aero-ref; + PresentationFramework.Aero2-ref; + PresentationFramework.AeroLite-ref; + PresentationFramework.Classic-ref; + PresentationFramework.Luna-ref; + PresentationFramework.Royale-ref; + ReachFramework-ref; + UIAutomationClient-ref; + UIAutomationClientSideProviders-ref; + UIAutomationProvider-ref; + UIAutomationTypes-ref; + System.Printing-ref; + System.Windows.Controls.Ribbon-ref; + System.Windows.Input.Manipulations-ref; + System.Windows.Presentation-ref; + System.Xaml-ref; + WindowsBase-ref; + WindowsFormsIntegration-ref; + + + + $(RepositoryToolsDir)native\bin\net-framework-48-ref-assemblies\$(NetFramework48RefAssembliesVersion)\ + + + $(WpfArcadeSdkRoot)tools\GenApi\GlobalAttrExclusions.txt + + + PresentationCore; PresentationFramework; PresentationFramework.Aero; @@ -21,24 +54,12 @@ UIAutomationProvider; UIAutomationTypes; System.Printing; - System.Printing-ref; System.Windows.Controls.Ribbon; System.Windows.Input.Manipulations; System.Windows.Presentation; System.Xaml; WindowsBase; WindowsFormsIntegration; - - - - $(RepositoryToolsDir)native\bin\net-framework-48-ref-assemblies\$(NetFramework48RefAssembliesVersion)\ - - - - System.Printing; - + false true @@ -14,7 +14,7 @@ false true @@ -36,8 +36,10 @@ $(WpfApiCompatBaselineDir)$(MSBuildProjectName)-Net48.baseline.txt + + @@ -52,12 +54,19 @@ $(WpfApiCompatBaselineDir)$(MSBuildProjectName)-ref.baseline.txt - + + + + - + + + + @@ -82,6 +91,7 @@ <_ApiCompatCommand Condition="'$(MSBuildRuntimeType)' != 'core' and '$(OS)' != 'Windows_NT'">mono --runtime=v4.0.30319 "$(_ApiCompatPath)" <_ApiCompatSemaphoreFile>$(MSBuildThisFileName).semaphore + <_RefApiCompatSemaphoreFile>$(MSBuildThisFileName)-ref.semaphore @@ -99,7 +109,7 @@ When running targets for hand-crafted ref assemblies, the lib project type determines how the target should run. When building Managed C++ we need to run post-link, when building C# we run post-compilation. --> - $(TargetsTriggeredByCompilation);WpfValidateApiCompatForRef + $(TargetsTriggeredByCompilation);WpfValidateApiCompatForRef $(AfterLibTargets);WpfValidateApiCompatForRef @@ -139,7 +149,7 @@ - $(ApiCompatArgs) "@(ResolvedMatchingContract)" + "@(ResolvedMatchingContract)" $(ApiCompatArgs) --contract-depends "@(_ContractDependencyDirectories, ',')," $(ApiCompatArgs) --exclude-attributes "$(ApiCompatExcludeAttributeList)" $(ApiCompatArgs) --enforce-optional-rules @@ -196,7 +206,7 @@ - $(ApiCompatArgs) "@(ResolvedMatchingContract)" + "@(ResolvedMatchingContract)" $(ApiCompatArgs) --contract-depends "@(_ContractDependencyDirectories, ',')," $(ApiCompatArgs) --exclude-attributes "$(ApiCompatExcludeAttributeList)" $(ApiCompatArgs) --enforce-optional-rules @@ -206,7 +216,7 @@ > $(ApiCompatBaseline) 0 - $(IntermediateOutputPath)apicompat.rsp + $(IntermediateOutputPath)refapicompat.rsp @@ -223,7 +233,7 @@ To force incremental builds to show failures again we are invalidating one compile input. --> - + diff --git a/eng/WpfArcadeSdk/tools/GenApi.props b/eng/WpfArcadeSdk/tools/GenApi.props new file mode 100644 index 00000000000..508ea82ad07 --- /dev/null +++ b/eng/WpfArcadeSdk/tools/GenApi.props @@ -0,0 +1,43 @@ + + + + + PresentationCore; + PresentationFramework; + PresentationFramework.Aero; + PresentationFramework.Aero2; + PresentationFramework.AeroLite; + PresentationFramework.Classic; + PresentationFramework.Luna; + PresentationFramework.Royale; + ReachFramework; + System.Windows.Controls.Ribbon; + System.Windows.Input.Manipulations; + System.Windows.Presentation; + System.Xaml; + UIAutomationClient; + UIAutomationClientSideProviders; + UIAutomationProvider; + UIAutomationTypes; + WindowsBase; + WindowsFormsIntegration; + + + $(WpfArcadeSdkRoot)tools\GenApi\GlobalApiExclusions.txt + $(WpfArcadeSdkRoot)tools\GenApi\GlobalAttrExclusions.txt + + --exclude-members + $(GenAPIAdditionalParameters) --exclude-api-list "$(GlobalApiExclusionsFile)" + $(GenAPIAdditionalParameters) --exclude-attributes-list "$(GlobalAttrExclusionsFile)" + + + <_GenerateReferenceAssemblySource>false + <_GenerateReferenceAssemblySource Condition="'$(GenerateReferenceAssemblySource)'=='true' + and '$(GenAPIEnabledProjects)'!='' + and $(GenAPIEnabledProjects.Contains('$(MSBuildProjectName);'))">true + + + diff --git a/eng/WpfArcadeSdk/tools/GenApi.targets b/eng/WpfArcadeSdk/tools/GenApi.targets new file mode 100644 index 00000000000..66f4e8ab63f --- /dev/null +++ b/eng/WpfArcadeSdk/tools/GenApi.targets @@ -0,0 +1,22 @@ + + + + + + + + $(MSBuildProjectDir)ref\ + $(GenAPITargetDir)$(AssemblyName).cs + + + + + + + diff --git a/eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt b/eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt new file mode 100644 index 00000000000..73ad796b05e --- /dev/null +++ b/eng/WpfArcadeSdk/tools/GenApi/GlobalApiExclusions.txt @@ -0,0 +1,23 @@ +// NOTE: +// The following commented out removals are due to issues with generating derived classes. +// Since automatic generation will add these back, these errors will need to be hand fixed. +// Do this by removed the base class member function that is not being added to the derived classes. +// This is only applicable for internal member functions. +// WindowsBase: +// System.Windows.AttachedPropertyBrowsableAttribute.IsBrowsable +// PresentationCore: +// System.Windows.Media.Effects.Effect.GetChannelCountCore +// System.Windows.Media.Effects.Effect.GetRenderBounds +// System.Windows.Media.Converters.BaseIListConverter.ConvertToCore +// System.Windows.Media.Converters.BaseIListConverter.ConvertFromCore +// System.Windows.Media.Brush.GetChannelCountCore +// System.Windows.Media.Imaging.BitmapEncoder.SealObject +// System.Windows.Media.Imaging.BitmapDecoder.SealObject + +// PresentationCore +T:System.Windows.Media.Composition.DUCE.Channel +T:System.Windows.Media.Composition.DUCE.ResourceHandle +T:System.Windows.Media.TextFormatting.TextParagraphCache + +// ReachFramework +T:System.Windows.Xps.Packaging.XpsResourcePolicy diff --git a/eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt b/eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt new file mode 100644 index 00000000000..c3cfaa5fe02 --- /dev/null +++ b/eng/WpfArcadeSdk/tools/GenApi/GlobalAttrExclusions.txt @@ -0,0 +1,54 @@ +// These attributes should be excluded from reference assemblies. + +T:System.ComponentModel.DesignerAttribute +T:System.ComponentModel.Design.Serialization.DesignerSerializerAttribute +T:System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute +T:System.ComponentModel.EditorAttribute +T:System.ComponentModel.ToolboxItemAttribute +T:System.ComponentModel.TypeDescriptionProviderAttribute +T:System.Configuration.ConfigurationPropertyAttribute +T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute +T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute +T:System.Diagnostics.DebuggerBrowsableAttribute +T:System.Diagnostics.DebuggerDisplayAttribute +T:System.Diagnostics.DebuggerHiddenAttribute +T:System.Diagnostics.DebuggerNonUserCodeAttribute +T:System.Diagnostics.DebuggerStepThroughAttribute +T:System.Diagnostics.DebuggerTypeProxyAttribute +T:System.Diagnostics.MonitoringDescriptionAttribute +T:System.IO.IODescriptionAttribute +T:System.Runtime.CompilerServices.AsyncStateMachineAttribute +T:System.Runtime.CompilerServices.CompilerGeneratedAttribute +T:System.Runtime.CompilerServices.IteratorStateMachineAttribute +T:System.Runtime.CompilerServices.TypeForwardedFromAttribute +T:System.Runtime.CompilerServices.MethodImpl +T:System.Runtime.ConstrainedExecution.ReliabilityContractAttribute +T:System.Runtime.InteropServices.ClassInterfaceAttribute +T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute +T:System.Runtime.InteropServices.ComVisibleAttribute +T:System.Runtime.InteropServices.GuidAttribute +T:System.Runtime.InteropServices.InterfaceTypeAttribute +T:System.Runtime.InteropServices.StructLayoutAttribute +T:System.Runtime.Serialization.KnownTypeAttribute +T:System.Security.Permissions.EnvironmentPermissionAttribute +T:System.Security.Permissions.FileIOPermissionAttribute +T:System.Security.Permissions.HostProtectionAttribute +T:System.Security.Permissions.IsolatedStorageFilePermissionAttribute +T:System.Security.Permissions.PermissionSetAttribute +T:System.Security.Permissions.ReflectionPermissionAttribute +T:System.Security.Permissions.SecurityPermissionAttribute +T:System.Security.Permissions.StrongNameIdentityPermissionAttribute +T:System.Security.SecurityCriticalAttribute +T:System.Security.SecuritySafeCriticalAttribute +T:System.Security.SuppressUnmanagedCodeSecurityAttribute +T:System.Xml.Serialization.XmlAttributeAttribute +T:System.Xml.Serialization.XmlEnumAttribute +T:System.Xml.Serialization.XmlIgnoreAttribute +T:System.Xml.Serialization.XmlRootAttribute +T:System.Runtime.Versioning.NonVersionableAttribute +T:System.Runtime.CompilerServices.IntrinsicAttribute +T:System.Runtime.CompilerServices.ExtensionAttribute +T:System.Drawing.SRDescriptionAttribute +T:System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute +T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute +T:System.Reflection.DefaultMemberAttribute diff --git a/eng/WpfArcadeSdk/tools/ReferenceAssembly.props b/eng/WpfArcadeSdk/tools/ReferenceAssembly.props index 5be9423c416..bae5dd5645d 100644 --- a/eng/WpfArcadeSdk/tools/ReferenceAssembly.props +++ b/eng/WpfArcadeSdk/tools/ReferenceAssembly.props @@ -1,12 +1,18 @@ - + false $(ArtifactsDir)ref\ - true true - \ No newline at end of file + + + + Internal + External + + + diff --git a/eng/WpfArcadeSdk/tools/ReferenceAssembly.targets b/eng/WpfArcadeSdk/tools/ReferenceAssembly.targets index a8399905615..9b52a1916dd 100644 --- a/eng/WpfArcadeSdk/tools/ReferenceAssembly.targets +++ b/eng/WpfArcadeSdk/tools/ReferenceAssembly.targets @@ -28,8 +28,6 @@ - - @@ -41,25 +39,12 @@ - - - - - - - - - - - - - @(RefAssemblies) - - + 0.0.0.1 @@ -73,7 +58,7 @@ EnsureReferenceDestination guarantees that there is exactly 1 ref assembly --> - @(IntermediateRefAssembly->'$(IntellisenseXmlDir)%(FileName).xml') + $(IntellisenseXmlDir)$(AssemblyName).xml + + + + + + diff --git a/eng/WpfArcadeSdk/tools/SdkReferences.targets b/eng/WpfArcadeSdk/tools/SdkReferences.targets index 2d08eb6212e..8f699be121f 100644 --- a/eng/WpfArcadeSdk/tools/SdkReferences.targets +++ b/eng/WpfArcadeSdk/tools/SdkReferences.targets @@ -172,10 +172,15 @@ --> + + + $(Pkgruntime_win-x86_Microsoft_DotNet_Wpf_GitHub) + $(Pkgruntime_win-x64_Microsoft_DotNet_Wpf_GitHub) + - - Microsoft.DotNet.Wpf.GitHub + + runtime.$(WpfRuntimeIdentifier).Microsoft.DotNet.Wpf.GitHub diff --git a/eng/WpfArcadeSdk/tools/ShippingProjects.props b/eng/WpfArcadeSdk/tools/ShippingProjects.props index 07e8560287d..ab58f0f39f6 100644 --- a/eng/WpfArcadeSdk/tools/ShippingProjects.props +++ b/eng/WpfArcadeSdk/tools/ShippingProjects.props @@ -52,24 +52,55 @@ PresentationBuildTasks - + - PresentationFramework-PresentationUI-api-cycle; - PresentationFramework-ReachFramework-impl-cycle; - PresentationFramework-System.Printing-api-cycle; - PresentationFramework-System.Printing-impl-cycle; - PresentationUI-PresentationFramework-impl-cycle; - ReachFramework-PresentationFramework-api-cycle; - ReachFramework-System.Printing-api-cycle; - System.Printing-PresentationFramework-api-cycle + PresentationFramework-PresentationUI-api-cycle; + PresentationFramework-ReachFramework-impl-cycle; + PresentationFramework-System.Printing-api-cycle; + PresentationFramework-System.Printing-impl-cycle; + PresentationUI-PresentationFramework-impl-cycle; + ReachFramework-PresentationFramework-api-cycle; + ReachFramework-System.Printing-api-cycle; + System.Printing-PresentationFramework-api-cycle - - System.Printing-ref - + + + + PresentationCore-ref; + PresentationFramework-ref; + ReachFramework-ref; + System.Windows.Input.Manipulations-ref; + System.Xaml-ref; + UIAutomationClient-ref; + UIAutomationClientSideProviders-ref; + UIAutomationProvider-ref; + UIAutomationTypes-ref; + WindowsBase-ref; + + + + PresentationFramework.Aero-ref; + PresentationFramework.Aero2-ref; + PresentationFramework.AeroLite-ref; + PresentationFramework.Classic-ref; + PresentationFramework.Luna-ref; + PresentationFramework.Royale-ref; + System.Printing-ref; + System.Windows.Controls.Ribbon-ref; + System.Windows.Presentation-ref; + WindowsFormsIntegration-ref; + $(CycleBreakerProjects); - $(HandCraftedReferenceProjects) + $(ExternalHandCraftedReferenceProjects); + $(InternalHandCraftedReferenceProjects); $(MSBuildProjectName) $(MSBuildProjectName.SubString(0, $(MSBuildProjectName.IndexOf('_')))) - + false true true @@ -127,9 +173,9 @@ Internal External - + WindowsDesktopSdk - + diff --git a/eng/WpfArcadeSdk/tools/WpfProjectReference.targets b/eng/WpfArcadeSdk/tools/WpfProjectReference.targets index 5871293bbe2..e80e7a0dca0 100644 --- a/eng/WpfArcadeSdk/tools/WpfProjectReference.targets +++ b/eng/WpfArcadeSdk/tools/WpfProjectReference.targets @@ -1,12 +1,14 @@ - + Condition="'$(MSBuildProjectExtension)'!='.vcxproj' + And $(TargetFramework.StartsWith('netcoreapp3')) + And '$(NoAutoMicrosoftDotNetWpfGitHubPackageReference)'!='true' + And '$(MicrosoftDotNetWpfGitHubPackage)'!=''"/> - diff --git a/global.json b/global.json index ea2d6593964..1503d814063 100644 --- a/global.json +++ b/global.json @@ -12,8 +12,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19323.4", - "Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19323.4" + "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19324.7", + "Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19324.7" }, "native-tools": { "strawberry-perl": "5.28.1.1-1", diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-Net48.baseline.txt deleted file mode 100644 index 2bb899b22e7..00000000000 --- a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-Net48.baseline.txt +++ /dev/null @@ -1,8 +0,0 @@ -Compat issues with assembly PresentationCore: -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.IO.Packaging.PackageStore' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.LocalizabilityAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Windows.Input.ICommand' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.InvalidWmpVersionException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.Animation.AnimationException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Resources.AssemblyAssociatedContentFileAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -Total Issues: 6 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref-Net48.baseline.txt new file mode 100644 index 00000000000..4b42e8abbf1 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref-Net48.baseline.txt @@ -0,0 +1,24 @@ +Compat issues with assembly PresentationCore: +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.LocalizabilityAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'MS.Internal.PresentationCore.FriendAccessAllowedAttribute' exists on 'System.Windows.Input.InputEventArgs' in the contract but not the implementation. +MembersMustExist : Member 'System.Windows.Media.Brush.AddRefOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetChannelCore(System.Int32)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetChannelCountCore()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetHandleCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.ReleaseOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.InvalidWmpVersionException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.Animation.AnimationException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'MS.Internal.PresentationCore.FriendAccessAllowedAttribute' exists on 'System.Windows.Media.Converters.BaseIListConverter' in the contract but not the implementation. +MembersMustExist : Member 'System.Windows.Media.Converters.BaseIListConverter.ConvertFromCore(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Converters.BaseIListConverter.ConvertToCore(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.Object, System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.AddRefOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetChannelCore(System.Int32)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetChannelCountCore()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetHandleCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetRenderBounds(System.Windows.Rect)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.ReleaseOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Imaging.BitmapDecoder.SealObject()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Imaging.BitmapEncoder.SealObject()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.TextFormatting.TextFormatter.CreateParagraphCache(System.Windows.Media.TextFormatting.TextSource, System.Int32, System.Double, System.Windows.Media.TextFormatting.TextParagraphProperties, System.Windows.Media.TextFormatting.TextLineBreak, System.Windows.Media.TextFormatting.TextRunCache)' does not exist in the implementation but it does exist in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Resources.AssemblyAssociatedContentFileAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +Total Issues: 22 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref.baseline.txt new file mode 100644 index 00000000000..b74ecc1ae09 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationCore-ref.baseline.txt @@ -0,0 +1,22 @@ +Compat issues with assembly PresentationCore: +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.LocalizabilityAttribute' changed from '[AttributeUsageAttribute(412, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Struct, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotRemoveAttribute : Attribute 'MS.Internal.PresentationCore.FriendAccessAllowedAttribute' exists on 'System.Windows.Input.InputEventArgs' in the contract but not the implementation. +MembersMustExist : Member 'System.Windows.Media.Brush.AddRefOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetChannelCore(System.Int32)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetChannelCountCore()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.GetHandleCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Brush.ReleaseOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +CannotRemoveAttribute : Attribute 'MS.Internal.PresentationCore.FriendAccessAllowedAttribute' exists on 'System.Windows.Media.Converters.BaseIListConverter' in the contract but not the implementation. +MembersMustExist : Member 'System.Windows.Media.Converters.BaseIListConverter.ConvertFromCore(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Converters.BaseIListConverter.ConvertToCore(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.Object, System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.AddRefOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetChannelCore(System.Int32)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetChannelCountCore()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetHandleCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.GetRenderBounds(System.Windows.Rect)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Effects.Effect.ReleaseOnChannelCore(System.Windows.Media.Composition.DUCE.Channel)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Imaging.BitmapDecoder.SealObject()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.Imaging.BitmapEncoder.SealObject()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Media.TextFormatting.TextFormatter.CreateParagraphCache(System.Windows.Media.TextFormatting.TextSource, System.Int32, System.Double, System.Windows.Media.TextFormatting.TextParagraphProperties, System.Windows.Media.TextFormatting.TextLineBreak, System.Windows.Media.TextFormatting.TextRunCache)' does not exist in the implementation but it does exist in the contract. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Resources.AssemblyAssociatedContentFileAttribute' changed from '[AttributeUsageAttribute(1, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple=true)]' in the implementation. +Total Issues: 20 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref-Net48.baseline.txt similarity index 58% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref-Net48.baseline.txt index 3a0b69dab20..859b5ebb7d6 100644 --- a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-Net48.baseline.txt +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref-Net48.baseline.txt @@ -1,15 +1,23 @@ Compat issues with assembly PresentationFramework: +MembersMustExist : Member 'Microsoft.Win32.FileDialog.CreateVistaDialog()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'Microsoft.Win32.FileDialog.ProcessVistaFiles(MS.Internal.AppModel.IFileDialog)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'Microsoft.Win32.FileDialog.RunFileDialog(MS.Win32.NativeMethods.OPENFILENAME_I)' does not exist in the implementation but it does exist in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableForChildrenAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +MembersMustExist : Member 'System.Windows.FrameworkTemplate.SetTargetTypeInternal(System.Type)' does not exist in the implementation but it does exist in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.ResourceReferenceKeyNotFoundException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.StyleTypedPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.TemplatePartAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.TemplateVisualStateAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.ThemeInfoAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +MembersMustExist : Member 'System.Windows.Automation.Peers.ContentTextAutomationPeer.GetAutomationPeersFromRange(System.Windows.Documents.ITextPointer, System.Windows.Documents.ITextPointer)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Automation.Peers.TextAutomationPeer.GetAutomationPeersFromRange(System.Windows.Documents.ITextPointer, System.Windows.Documents.ITextPointer)' does not exist in the implementation but it does exist in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Controls.PrintDialogException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +MembersMustExist : Member 'System.Windows.Controls.Primitives.GridViewRowPresenterBase.OnColumnPropertyChanged(System.Windows.Controls.GridViewColumn, System.String)' does not exist in the implementation but it does exist in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Data.ValueConversionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Data.ValueUnavailableException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Documents.TextElementEditingBehaviorAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. TypesMustExist : Type 'System.Windows.Interop.DocObjHost' does not exist in the implementation but it does exist in the contract. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.StaticExtension' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.TypeExtension' in the contract but not the implementation. CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlParseException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Windows.Shell.JumpList' in the contract but not the implementation. -Total Issues: 13 +Total Issues: 21 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref.baseline.txt new file mode 100644 index 00000000000..11629634c14 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/PresentationFramework-ref.baseline.txt @@ -0,0 +1,83 @@ +Compat issues with assembly PresentationFramework: +MembersMustExist : Member 'Microsoft.Win32.FileDialog.CreateVistaDialog()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'Microsoft.Win32.FileDialog.ProcessVistaFiles(MS.Internal.AppModel.IFileDialog)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'Microsoft.Win32.FileDialog.RunFileDialog(MS.Win32.NativeMethods.OPENFILENAME_I)' does not exist in the implementation but it does exist in the contract. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.AttachedPropertyBrowsableForChildrenAttribute' changed from '[AttributeUsageAttribute(64, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.FrameworkElementFactory' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.FrameworkTemplate' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +MembersMustExist : Member 'System.Windows.FrameworkTemplate.SetTargetTypeInternal(System.Type)' does not exist in the implementation but it does exist in the contract. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.HorizontalAlignment' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.ResizeMode' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.ResourceDictionary' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.SetterBase' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.StaticResourceExtension' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Style' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.StyleTypedPropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.TemplatePartAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.TemplateVisualStateAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.ThemeInfoAttribute' changed from '[AttributeUsageAttribute(1)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Thickness' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.TriggerBase' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.TriggerCollection' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.VerticalAlignment' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Window' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.WindowStartupLocation' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +MembersMustExist : Member 'System.Windows.Automation.Peers.ContentTextAutomationPeer.GetAutomationPeersFromRange(System.Windows.Documents.ITextPointer, System.Windows.Documents.ITextPointer)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Automation.Peers.TextAutomationPeer.GetAutomationPeersFromRange(System.Windows.Documents.ITextPointer, System.Windows.Documents.ITextPointer)' does not exist in the implementation but it does exist in the contract. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.BooleanToVisibilityConverter' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.CheckBox' changed from '[LocalizabilityAttribute(5)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.CheckBox)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ComboBox' changed from '[LocalizabilityAttribute(6)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.ComboBox)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ComboBoxItem' changed from '[LocalizabilityAttribute(6)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.ComboBox)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ContentControl' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ContentPresenter' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ControlTemplate' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Decorator' changed from '[LocalizabilityAttribute(16, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.DefinitionBase' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Expander' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Frame' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.GridViewColumn' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.GroupBox' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.GroupStyle' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.HeaderedContentControl' changed from '[LocalizabilityAttribute(1)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Text)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.HeaderedItemsControl' changed from '[LocalizabilityAttribute(8)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Menu)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Image' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ItemCollection' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ItemsControl' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ItemsPresenter' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Label' changed from '[LocalizabilityAttribute(3)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Label)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ListBox' changed from '[LocalizabilityAttribute(7)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.ListBox)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.MediaElement' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.MenuItem' changed from '[LocalizabilityAttribute(8)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Menu)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Orientation' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Panel' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.RadioButton' changed from '[LocalizabilityAttribute(9)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.RadioButton)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.RichTextBox' changed from '[LocalizabilityAttribute(15)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Inherit)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ScrollViewer' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Separator' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Slider' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.TextBlock' changed from '[LocalizabilityAttribute(1)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Text)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.TextBox' changed from '[LocalizabilityAttribute(1)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Text)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.ToolTip' changed from '[LocalizabilityAttribute(10)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.ToolTip)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Viewport3D' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.ButtonBase' changed from '[LocalizabilityAttribute(4)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Button)]' in the implementation. +MembersMustExist : Member 'System.Windows.Controls.Primitives.GridViewRowPresenterBase.OnColumnPropertyChanged(System.Windows.Controls.GridViewColumn, System.String)' does not exist in the implementation but it does exist in the contract. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.MenuBase' changed from '[LocalizabilityAttribute(8)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Menu)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.PlacementMode' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.Popup' changed from '[LocalizabilityAttribute(0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.ScrollBar' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.Selector' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.StatusBarItem' changed from '[LocalizabilityAttribute(15)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Inherit)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.TextBoxBase' changed from '[LocalizabilityAttribute(1)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Text)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.Thumb' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.TickBar' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Controls.Primitives.Track' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Data.BindingBase' changed from '[LocalizabilityAttribute(0, Modifiability=0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Modifiability=Modifiability.Unmodifiable, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Data.CompositeCollection' changed from '[LocalizabilityAttribute(16)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Ignore)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Data.ObjectDataProvider' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Data.ValueConversionAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Data.XmlDataProvider' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Data.XmlNamespaceMappingCollection' changed from '[LocalizabilityAttribute(17)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.NeverLocalize)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Documents.FlowDocument' changed from '[LocalizabilityAttribute(15, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.Inherit, Readability=Readability.Unreadable)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Documents.TextElementEditingBehaviorAttribute' changed from '[AttributeUsageAttribute(4)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class)]' in the implementation. +CannotChangeAttribute : Attribute 'System.Windows.LocalizabilityAttribute' on 'System.Windows.Shapes.Shape' changed from '[LocalizabilityAttribute(0, Readability=0)]' in the contract to '[LocalizabilityAttribute(LocalizationCategory.None, Readability=Readability.Unreadable)]' in the implementation. +Total Issues: 81 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref-Net48.baseline.txt similarity index 51% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref-Net48.baseline.txt index 73b4861f05f..4e16b5fd8d2 100644 --- a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-Net48.baseline.txt +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref-Net48.baseline.txt @@ -1,12 +1,22 @@ -Compat issues with assembly ReachFramework: -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintCommitAttributesException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintingCanceledException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintingNotSupportedException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintJobException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintQueueException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintServerException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintSystemException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsPackagingException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsSerializationException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -Total Issues: 10 +Compat issues with assembly ReachFramework: +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintCommitAttributesException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintingCanceledException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintingNotSupportedException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintJobException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintQueueException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintServerException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Printing.PrintSystemException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsPackagingException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Xps.XpsSerializationException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireResourceStream(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireResourceStream(System.Type, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireXmlWriter(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AddRelationshipToCurrentPage(System.Uri, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.GetXmlNSForType(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.PackagingPolicy.get()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseResourceStream(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseResourceStream(System.Type, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseXmlWriter(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ResourcePolicy.get()' does not exist in the implementation but it does exist in the contract. +Total Issues: 20 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref.baseline.txt new file mode 100644 index 00000000000..94093c73396 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/ReachFramework-ref.baseline.txt @@ -0,0 +1,12 @@ +Compat issues with assembly ReachFramework: +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireResourceStream(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireResourceStream(System.Type, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AcquireXmlWriter(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.AddRelationshipToCurrentPage(System.Uri, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.GetXmlNSForType(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.PackagingPolicy.get()' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseResourceStream(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseResourceStream(System.Type, System.String)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ReleaseXmlWriter(System.Type)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'System.Windows.Xps.Serialization.PackageSerializationManager.ResourcePolicy.get()' does not exist in the implementation but it does exist in the contract. +Total Issues: 10 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref-Net48.baseline.txt similarity index 100% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref-Net48.baseline.txt diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref.baseline.txt similarity index 100% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Windows.Input.Manipulations-ref.baseline.txt diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref-Net48.baseline.txt similarity index 89% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref-Net48.baseline.txt index 8408e165525..38c4db6fb9f 100644 --- a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-Net48.baseline.txt +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref-Net48.baseline.txt @@ -1,36 +1,36 @@ -Compat issues with assembly System.Xaml: -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AcceptedMarkupExtensionExpressionTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AmbientAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ConstructorArgumentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentWrapperAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DependsOnAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DictionaryKeyPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionBracketCharactersAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionReturnTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.NameScopePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RootNamespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RuntimeNamePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.TrimSurroundingWhitespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UidPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UsableDuringInitializationAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Windows.Markup.ValueSerializerAttribute' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ValueSerializerAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.WhitespaceSignificantCollectionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlDeferLoadAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlSetMarkupExtensionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlSetTypeConverterAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlLangPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsCompatibleWithAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsDefinitionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsPrefixAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlDuplicateMemberException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlInternalException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlObjectReaderException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlObjectWriterException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlParseException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlSchemaException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlXmlWriterException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotChangeAttribute : Attribute 'System.Diagnostics.DebuggerDisplayAttribute' on 'System.Xaml.Schema.XamlTypeName' changed from '[DebuggerDisplayAttribute("{{{Namespace}}}{Name}{TypeArgStringForDebugger}")]' in the contract to '[DebuggerDisplayAttribute("{ToString()}")]' in the implementation. -Total Issues: 34 +Compat issues with assembly System.Xaml: +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AcceptedMarkupExtensionExpressionTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AmbientAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ConstructorArgumentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentWrapperAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DependsOnAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DictionaryKeyPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionBracketCharactersAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionReturnTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.NameScopePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RootNamespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RuntimeNamePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.StaticExtension' in the contract but not the implementation. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.TrimSurroundingWhitespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.TypeExtension' in the contract but not the implementation. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UidPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UsableDuringInitializationAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +TypesMustExist : Type 'System.Windows.Markup.ValueSerializerAttribute' does not exist in the implementation but it does exist in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.WhitespaceSignificantCollectionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlDeferLoadAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlSetMarkupExtensionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XamlSetTypeConverterAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlLangPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsCompatibleWithAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsDefinitionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsPrefixAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlDuplicateMemberException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlInternalException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlObjectReaderException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlObjectWriterException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlParseException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlSchemaException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Xaml.XamlXmlWriterException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +Total Issues: 34 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref.baseline.txt new file mode 100644 index 00000000000..b73fe299425 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/System.Xaml-ref.baseline.txt @@ -0,0 +1,27 @@ +Compat issues with assembly System.Xaml: +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.AcceptedMarkupExtensionExpressionTypeAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.AmbientAttribute' changed from '[AttributeUsageAttribute(196, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.ConstructorArgumentAttribute' changed from '[AttributeUsageAttribute(128, AllowMultiple=false, Inherited=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Property, AllowMultiple=false, Inherited=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.ContentPropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.ContentWrapperAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=true, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=true, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.DependsOnAttribute' changed from '[AttributeUsageAttribute(192, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Method | AttributeTargets.Property, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.DictionaryKeyPropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.MarkupExtensionBracketCharactersAttribute' changed from '[AttributeUsageAttribute(128, AllowMultiple=true, Inherited=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Property, AllowMultiple=true, Inherited=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.MarkupExtensionReturnTypeAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.NameScopePropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.RootNamespaceAttribute' changed from '[AttributeUsageAttribute(1)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.RuntimeNamePropertyAttribute' changed from '[AttributeUsageAttribute(4)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class)]' in the implementation. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.StaticExtension' in the contract but not the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.TrimSurroundingWhitespaceAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.TypeExtension' in the contract but not the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.UidPropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.UsableDuringInitializationAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.WhitespaceSignificantCollectionAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XamlDeferLoadAttribute' changed from '[AttributeUsageAttribute(132, AllowMultiple=false, Inherited=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple=false, Inherited=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XamlSetMarkupExtensionAttribute' changed from '[AttributeUsageAttribute(4, Inherited=true, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XamlSetTypeConverterAttribute' changed from '[AttributeUsageAttribute(4, Inherited=true, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XmlLangPropertyAttribute' changed from '[AttributeUsageAttribute(4, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XmlnsCompatibleWithAttribute' changed from '[AttributeUsageAttribute(1, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XmlnsDefinitionAttribute' changed from '[AttributeUsageAttribute(1, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.XmlnsPrefixAttribute' changed from '[AttributeUsageAttribute(1, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple=true)]' in the implementation. +Total Issues: 25 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref-Net48.baseline.txt similarity index 100% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref-Net48.baseline.txt diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref.baseline.txt new file mode 100644 index 00000000000..fcc74cf8643 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClient-ref.baseline.txt @@ -0,0 +1 @@ +Total Issues: 0 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref-Net48.baseline.txt similarity index 100% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref-Net48.baseline.txt diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref.baseline.txt new file mode 100644 index 00000000000..fcc74cf8643 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationClientSideProviders-ref.baseline.txt @@ -0,0 +1 @@ +Total Issues: 0 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref-Net48.baseline.txt new file mode 100644 index 00000000000..fcc74cf8643 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref-Net48.baseline.txt @@ -0,0 +1 @@ +Total Issues: 0 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref.baseline.txt new file mode 100644 index 00000000000..fcc74cf8643 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationProvider-ref.baseline.txt @@ -0,0 +1 @@ +Total Issues: 0 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-ref-Net48.baseline.txt similarity index 100% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-ref-Net48.baseline.txt diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-ref.baseline.txt new file mode 100644 index 00000000000..fcc74cf8643 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/UIAutomationTypes-ref.baseline.txt @@ -0,0 +1 @@ +Total Issues: 0 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-Net48.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref-Net48.baseline.txt similarity index 66% rename from src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-Net48.baseline.txt rename to src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref-Net48.baseline.txt index 297b388e055..e50a532a3c5 100644 --- a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-Net48.baseline.txt +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref-Net48.baseline.txt @@ -1,49 +1,41 @@ -Compat issues with assembly WindowsBase: -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.ObjectModel.ObservableCollection' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.ObjectModel.ReadOnlyObservableCollection' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.Specialized.INotifyCollectionChanged' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.Specialized.NotifyCollectionChangedAction' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.Specialized.NotifyCollectionChangedEventArgs' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Collections.Specialized.NotifyCollectionChangedEventHandler' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.ComponentModel.PropertyFilterAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.IO.FileFormatException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -MembersMustExist : Member 'System.IO.Packaging.Package..ctor(System.IO.FileAccess, System.Boolean)' does not exist in the implementation but it does exist in the contract. -MembersMustExist : Member 'System.IO.Packaging.PackUriHelper.GetPartUri(System.Uri)' does not exist in the implementation but it does exist in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Security.Permissions.MediaPermissionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Security.Permissions.WebBrowserPermissionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.ContentGrant' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.ContentUser' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.CryptoProvider' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.LocalizedNameDescriptionPair' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.PublishLicense' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Security.RightsManagement.RightsManagementException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.SecureEnvironment' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.UnsignedPublishLicense' in the contract but not the implementation. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Security.RightsManagement.UseLicense' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableForTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableWhenAttributePresentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Security.SecurityCriticalAttribute' exists on 'System.Windows.SplashScreen' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AmbientAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ConstructorArgumentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentWrapperAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DependsOnAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DesignerSerializationOptionsAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DictionaryKeyPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionReturnTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.NameScopePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RootNamespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RuntimeNamePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.TrimSurroundingWhitespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UidPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UsableDuringInitializationAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveAttribute : Attribute 'System.Runtime.CompilerServices.TypeForwardedFromAttribute' exists on 'System.Windows.Markup.ValueSerializerAttribute' in the contract but not the implementation. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ValueSerializerAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.WhitespaceSignificantCollectionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlLangPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsCompatibleWithAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsDefinitionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsPrefixAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.DisableDpiAwarenessAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. -Total Issues: 47 +Compat issues with assembly WindowsBase: +TypesMustExist : Type 'System.Collections.ObjectModel.ObservableCollection' does not exist in the implementation but it does exist in the contract. +TypesMustExist : Type 'System.Collections.ObjectModel.ReadOnlyObservableCollection' does not exist in the implementation but it does exist in the contract. +TypesMustExist : Type 'System.Collections.Specialized.INotifyCollectionChanged' does not exist in the implementation but it does exist in the contract. +TypesMustExist : Type 'System.Collections.Specialized.NotifyCollectionChangedAction' does not exist in the implementation but it does exist in the contract. +TypesMustExist : Type 'System.Collections.Specialized.NotifyCollectionChangedEventArgs' does not exist in the implementation but it does exist in the contract. +TypesMustExist : Type 'System.Collections.Specialized.NotifyCollectionChangedEventHandler' does not exist in the implementation but it does exist in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.ComponentModel.PropertyFilterAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.IO.FileFormatException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +MembersMustExist : Member 'System.IO.Packaging.Package..ctor(System.IO.FileAccess, System.Boolean)' does not exist in the implementation but it does exist in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Security.Permissions.MediaPermissionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Security.Permissions.WebBrowserPermissionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Security.RightsManagement.RightsManagementException' does not implement interface 'System.Runtime.InteropServices._Exception' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableForTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.AttachedPropertyBrowsableWhenAttributePresentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'System.Windows.Markup.ValueSerializerAttribute' exists on 'System.Windows.DependencyProperty' in the contract but not the implementation. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.AmbientAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ConstructorArgumentAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ContentWrapperAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DependsOnAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DesignerSerializationOptionsAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.DictionaryKeyPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.MarkupExtensionReturnTypeAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.NameScopePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RootNamespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.RuntimeNamePropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.StaticExtension' in the contract but not the implementation. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.TrimSurroundingWhitespaceAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveAttribute : Attribute 'System.ComponentModel.TypeConverterAttribute' exists on 'System.Windows.Markup.TypeExtension' in the contract but not the implementation. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UidPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.UsableDuringInitializationAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.ValueSerializerAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.WhitespaceSignificantCollectionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlLangPropertyAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsCompatibleWithAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsDefinitionAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Markup.XmlnsPrefixAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +CannotRemoveBaseTypeOrInterface : Type 'System.Windows.Media.DisableDpiAwarenessAttribute' does not implement interface 'System.Runtime.InteropServices._Attribute' in the implementation but it does in the contract. +Total Issues: 39 diff --git a/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref.baseline.txt b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref.baseline.txt new file mode 100644 index 00000000000..51ae54e5cc5 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/ApiCompat/Baselines/WindowsBase-ref.baseline.txt @@ -0,0 +1,10 @@ +Compat issues with assembly WindowsBase: +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.ComponentModel.PropertyFilterAttribute' changed from '[AttributeUsageAttribute(192)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Method | AttributeTargets.Property)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.AttachedPropertyBrowsableForTypeAttribute' changed from '[AttributeUsageAttribute(64, AllowMultiple=true)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=true)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.AttachedPropertyBrowsableWhenAttributePresentAttribute' changed from '[AttributeUsageAttribute(64, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=false)]' in the implementation. +CannotRemoveAttribute : Attribute 'System.Windows.Markup.ValueSerializerAttribute' exists on 'System.Windows.DependencyProperty' in the contract but not the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Markup.DesignerSerializationOptionsAttribute' changed from '[AttributeUsageAttribute(448, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple=false)]' in the implementation. +CannotChangeAttribute : Attribute 'System.ComponentModel.EditorBrowsableAttribute' on 'System.Windows.Markup.InternalTypeHelper' changed from '[EditorBrowsableAttribute(1)]' in the contract to '[EditorBrowsableAttribute(EditorBrowsableState.Never)]' in the implementation. +CannotChangeAttribute : Attribute 'System.ComponentModel.EditorBrowsableAttribute' on 'System.Windows.Markup.ServiceProviders' changed from '[EditorBrowsableAttribute(1)]' in the contract to '[EditorBrowsableAttribute(EditorBrowsableState.Never)]' in the implementation. +CannotChangeAttribute : Attribute 'System.AttributeUsageAttribute' on 'System.Windows.Media.DisableDpiAwarenessAttribute' changed from '[AttributeUsageAttribute(1, AllowMultiple=false)]' in the contract to '[AttributeUsageAttribute(AttributeTargets.Assembly, AllowMultiple=false)]' in the implementation. +Total Issues: 8 diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj index 52a9e041a8d..ae90fb22271 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemCore/PresentationFramework-SystemCore.csproj @@ -4,7 +4,6 @@ AnyCPU;x64 false false - false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj index 952af945c3f..fca66dfba37 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemData/PresentationFramework-SystemData.csproj @@ -4,7 +4,6 @@ AnyCPU;x64 false false - false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj index 02c7d8f28b4..2c2dbc344bd 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemDrawing/PresentationFramework-SystemDrawing.csproj @@ -4,7 +4,6 @@ AnyCPU;x64 false false - false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj index fe6e950307a..63b23198ed4 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXml/PresentationFramework-SystemXml.csproj @@ -4,7 +4,6 @@ AnyCPU;x64 false false - false diff --git a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj index 9da2f96d40c..922c1cfd2b5 100644 --- a/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj +++ b/src/Microsoft.DotNet.Wpf/src/Extensions/PresentationFramework-SystemXmlLinq/PresentationFramework-SystemXmlLinq.csproj @@ -4,7 +4,6 @@ AnyCPU;x64 false false - false diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj index ee08a7b5f8d..e226a12a9ba 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj @@ -549,7 +549,6 @@ - @@ -1423,6 +1422,9 @@ + + false + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore.cs b/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore.cs new file mode 100644 index 00000000000..7a6b09d26f0 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/ref/PresentationCore.cs @@ -0,0 +1,13637 @@ +namespace System.IO.Packaging +{ + public static partial class PackageStore + { + public static void AddPackage(System.Uri uri, System.IO.Packaging.Package package) { } + public static System.IO.Packaging.Package GetPackage(System.Uri uri) { throw null; } + public static void RemovePackage(System.Uri uri) { } + } + public sealed partial class PackWebRequest : System.Net.WebRequest + { + internal PackWebRequest() { } + public override System.Net.Cache.RequestCachePolicy CachePolicy { get { throw null; } set { } } + public override string ConnectionGroupName { get { throw null; } set { } } + public override long ContentLength { get { throw null; } set { } } + public override string ContentType { get { throw null; } set { } } + public override System.Net.ICredentials Credentials { get { throw null; } set { } } + public override System.Net.WebHeaderCollection Headers { get { throw null; } set { } } + public override string Method { get { throw null; } set { } } + public override bool PreAuthenticate { get { throw null; } set { } } + public override System.Net.IWebProxy Proxy { get { throw null; } set { } } + public override System.Uri RequestUri { get { throw null; } } + public override int Timeout { get { throw null; } set { } } + public override bool UseDefaultCredentials { get { throw null; } set { } } + public System.Net.WebRequest GetInnerRequest() { throw null; } + public override System.IO.Stream GetRequestStream() { throw null; } + public override System.Net.WebResponse GetResponse() { throw null; } + } + public sealed partial class PackWebRequestFactory : System.Net.IWebRequestCreate + { + public PackWebRequestFactory() { } + System.Net.WebRequest System.Net.IWebRequestCreate.Create(System.Uri uri) { throw null; } + } + public sealed partial class PackWebResponse : System.Net.WebResponse + { + internal PackWebResponse() { } + public override long ContentLength { get { throw null; } } + public override string ContentType { get { throw null; } } + public override System.Net.WebHeaderCollection Headers { get { throw null; } } + public System.Net.WebResponse InnerResponse { get { throw null; } } + public override bool IsFromCache { get { throw null; } } + public override System.Uri ResponseUri { get { throw null; } } + public override void Close() { } + protected override void Dispose(bool disposing) { } + public override System.IO.Stream GetResponseStream() { throw null; } + } +} +namespace System.Windows +{ + public partial class AutoResizedEventArgs : System.EventArgs + { + public AutoResizedEventArgs(System.Windows.Size size) { } + public System.Windows.Size Size { get { throw null; } } + } + public delegate void AutoResizedEventHandler(object sender, System.Windows.AutoResizedEventArgs e); + public enum BaselineAlignment + { + Top = 0, + Center = 1, + Bottom = 2, + Baseline = 3, + TextTop = 4, + TextBottom = 5, + Subscript = 6, + Superscript = 7, + } + public static partial class Clipboard + { + public static void Clear() { } + public static bool ContainsAudio() { throw null; } + public static bool ContainsData(string format) { throw null; } + public static bool ContainsFileDropList() { throw null; } + public static bool ContainsImage() { throw null; } + public static bool ContainsText() { throw null; } + public static bool ContainsText(System.Windows.TextDataFormat format) { throw null; } + public static void Flush() { } + public static System.IO.Stream GetAudioStream() { throw null; } + public static object GetData(string format) { throw null; } + public static System.Windows.IDataObject GetDataObject() { throw null; } + public static System.Collections.Specialized.StringCollection GetFileDropList() { throw null; } + public static System.Windows.Media.Imaging.BitmapSource GetImage() { throw null; } + public static string GetText() { throw null; } + public static string GetText(System.Windows.TextDataFormat format) { throw null; } + public static bool IsCurrent(System.Windows.IDataObject data) { throw null; } + public static void SetAudio(byte[] audioBytes) { } + public static void SetAudio(System.IO.Stream audioStream) { } + public static void SetData(string format, object data) { } + public static void SetDataObject(object data) { } + public static void SetDataObject(object data, bool copy) { } + public static void SetFileDropList(System.Collections.Specialized.StringCollection fileDropList) { } + public static void SetImage(System.Windows.Media.Imaging.BitmapSource image) { } + public static void SetText(string text) { } + public static void SetText(string text, System.Windows.TextDataFormat format) { } + } + public partial class ContentElement : System.Windows.DependencyObject, System.Windows.IInputElement, System.Windows.Media.Animation.IAnimatable + { + public static readonly System.Windows.DependencyProperty AllowDropProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedWithinProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesOverProperty; + public static readonly System.Windows.RoutedEvent DragEnterEvent; + public static readonly System.Windows.RoutedEvent DragLeaveEvent; + public static readonly System.Windows.RoutedEvent DragOverEvent; + public static readonly System.Windows.RoutedEvent DropEvent; + public static readonly System.Windows.DependencyProperty FocusableProperty; + public static readonly System.Windows.RoutedEvent GiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent GotFocusEvent; + public static readonly System.Windows.RoutedEvent GotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent GotMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent GotStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent GotTouchCaptureEvent; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty IsFocusedProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusedProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusWithinProperty; + public static readonly System.Windows.DependencyProperty IsMouseCapturedProperty; + public static readonly System.Windows.DependencyProperty IsMouseCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsMouseDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsMouseOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusCapturedProperty; + public static readonly System.Windows.DependencyProperty IsStylusCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsStylusDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusOverProperty; + public static readonly System.Windows.RoutedEvent KeyDownEvent; + public static readonly System.Windows.RoutedEvent KeyUpEvent; + public static readonly System.Windows.RoutedEvent LostFocusEvent; + public static readonly System.Windows.RoutedEvent LostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent LostMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent LostStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent LostTouchCaptureEvent; + public static readonly System.Windows.RoutedEvent MouseDownEvent; + public static readonly System.Windows.RoutedEvent MouseEnterEvent; + public static readonly System.Windows.RoutedEvent MouseLeaveEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseMoveEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseUpEvent; + public static readonly System.Windows.RoutedEvent MouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewDragEnterEvent; + public static readonly System.Windows.RoutedEvent PreviewDragLeaveEvent; + public static readonly System.Windows.RoutedEvent PreviewDragOverEvent; + public static readonly System.Windows.RoutedEvent PreviewDropEvent; + public static readonly System.Windows.RoutedEvent PreviewGiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent PreviewGotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyDownEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyUpEvent; + public static readonly System.Windows.RoutedEvent PreviewLostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewQueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusUpEvent; + public static readonly System.Windows.RoutedEvent PreviewTextInputEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchDownEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchUpEvent; + public static readonly System.Windows.RoutedEvent QueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent QueryCursorEvent; + public static readonly System.Windows.RoutedEvent StylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent StylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent StylusDownEvent; + public static readonly System.Windows.RoutedEvent StylusEnterEvent; + public static readonly System.Windows.RoutedEvent StylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent StylusInRangeEvent; + public static readonly System.Windows.RoutedEvent StylusLeaveEvent; + public static readonly System.Windows.RoutedEvent StylusMoveEvent; + public static readonly System.Windows.RoutedEvent StylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent StylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent StylusUpEvent; + public static readonly System.Windows.RoutedEvent TextInputEvent; + public static readonly System.Windows.RoutedEvent TouchDownEvent; + public static readonly System.Windows.RoutedEvent TouchEnterEvent; + public static readonly System.Windows.RoutedEvent TouchLeaveEvent; + public static readonly System.Windows.RoutedEvent TouchMoveEvent; + public static readonly System.Windows.RoutedEvent TouchUpEvent; + public ContentElement() { } + public bool AllowDrop { get { throw null; } set { } } + public bool AreAnyTouchesCaptured { get { throw null; } } + public bool AreAnyTouchesCapturedWithin { get { throw null; } } + public bool AreAnyTouchesDirectlyOver { get { throw null; } } + public bool AreAnyTouchesOver { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.CommandBindingCollection CommandBindings { get { throw null; } } + public bool Focusable { get { throw null; } set { } } + public bool HasAnimatedProperties { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.InputBindingCollection InputBindings { get { throw null; } } + public bool IsEnabled { get { throw null; } set { } } + protected virtual bool IsEnabledCore { get { throw null; } } + public bool IsFocused { get { throw null; } } + public bool IsInputMethodEnabled { get { throw null; } } + public bool IsKeyboardFocused { get { throw null; } } + public bool IsKeyboardFocusWithin { get { throw null; } } + public bool IsMouseCaptured { get { throw null; } } + public bool IsMouseCaptureWithin { get { throw null; } } + public bool IsMouseDirectlyOver { get { throw null; } } + public bool IsMouseOver { get { throw null; } } + public bool IsStylusCaptured { get { throw null; } } + public bool IsStylusCaptureWithin { get { throw null; } } + public bool IsStylusDirectlyOver { get { throw null; } } + public bool IsStylusOver { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCaptured { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCapturedWithin { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesDirectlyOver { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesOver { get { throw null; } } + public event System.Windows.DragEventHandler DragEnter { add { } remove { } } + public event System.Windows.DragEventHandler DragLeave { add { } remove { } } + public event System.Windows.DragEventHandler DragOver { add { } remove { } } + public event System.Windows.DragEventHandler Drop { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler FocusableChanged { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler GiveFeedback { add { } remove { } } + public event System.Windows.RoutedEventHandler GotFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler GotMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler GotStylusCapture { add { } remove { } } + public event System.EventHandler GotTouchCapture { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsEnabledChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseDirectlyOverChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusDirectlyOverChanged { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyUp { add { } remove { } } + public event System.Windows.RoutedEventHandler LostFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler LostMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler LostStylusCapture { add { } remove { } } + public event System.EventHandler LostTouchCapture { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseDown { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseEnter { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseLeave { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler MouseWheel { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragEnter { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragLeave { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragOver { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDrop { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler PreviewGiveFeedback { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyUp { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler PreviewMouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler PreviewMouseWheel { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler PreviewStylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler PreviewTextInput { add { } remove { } } + public event System.EventHandler PreviewTouchDown { add { } remove { } } + public event System.EventHandler PreviewTouchMove { add { } remove { } } + public event System.EventHandler PreviewTouchUp { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler QueryContinueDrag { add { } remove { } } + public event System.Windows.Input.QueryCursorEventHandler QueryCursor { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler StylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusEnter { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusLeave { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler TextInput { add { } remove { } } + public event System.EventHandler TouchDown { add { } remove { } } + public event System.EventHandler TouchEnter { add { } remove { } } + public event System.EventHandler TouchLeave { add { } remove { } } + public event System.EventHandler TouchMove { add { } remove { } } + public event System.EventHandler TouchUp { add { } remove { } } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo) { } + public void AddToEventRoute(System.Windows.EventRoute route, System.Windows.RoutedEventArgs e) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public bool CaptureMouse() { throw null; } + public bool CaptureStylus() { throw null; } + public bool CaptureTouch(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public bool Focus() { throw null; } + public object GetAnimationBaseValue(System.Windows.DependencyProperty dp) { throw null; } + protected internal virtual System.Windows.DependencyObject GetUIParentCore() { throw null; } + public virtual bool MoveFocus(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected internal virtual void OnDragEnter(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDragLeave(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDragOver(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDrop(System.Windows.DragEventArgs e) { } + protected internal virtual void OnGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected virtual void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected internal virtual void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnGotMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnGotStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnGotTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnIsKeyboardFocusedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected internal virtual void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnLostFocus(System.Windows.RoutedEventArgs e) { } + protected internal virtual void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnLostStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnLostTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected internal virtual void OnPreviewDragEnter(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDragLeave(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDragOver(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDrop(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected internal virtual void OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnPreviewKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnPreviewLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnPreviewMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnPreviewMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected internal virtual void OnPreviewQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected internal virtual void OnPreviewStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnPreviewStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnPreviewStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected internal virtual void OnPreviewStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected internal virtual void OnPreviewStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected internal virtual void OnPreviewTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnPreviewTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnPreviewTouchUp(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected internal virtual void OnQueryCursor(System.Windows.Input.QueryCursorEventArgs e) { } + protected internal virtual void OnStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected internal virtual void OnStylusEnter(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusLeave(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected internal virtual void OnStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected internal virtual void OnTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchEnter(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchLeave(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchUp(System.Windows.Input.TouchEventArgs e) { } + public virtual System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) { throw null; } + public void RaiseEvent(System.Windows.RoutedEventArgs e) { } + public void ReleaseAllTouchCaptures() { } + public void ReleaseMouseCapture() { } + public void ReleaseStylusCapture() { } + public bool ReleaseTouchCapture(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeCommandBindings() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInputBindings() { throw null; } + } + public static partial class ContentOperations + { + public static System.Windows.DependencyObject GetParent(System.Windows.ContentElement reference) { throw null; } + public static void SetParent(System.Windows.ContentElement reference, System.Windows.DependencyObject parent) { } + } + public static partial class CoreCompatibilityPreferences + { + public static bool? EnableMultiMonitorDisplayClipping { get { throw null; } set { } } + public static bool IsAltKeyRequiredInAccessKeyDefaultScope { get { throw null; } set { } } + } + public partial class CultureInfoIetfLanguageTagConverter : System.ComponentModel.TypeConverter + { + public CultureInfoIetfLanguageTagConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public sealed partial class DataFormat + { + public DataFormat(string name, int id) { } + public int Id { get { throw null; } } + public string Name { get { throw null; } } + } + public static partial class DataFormats + { + public static readonly string Bitmap; + public static readonly string CommaSeparatedValue; + public static readonly string Dib; + public static readonly string Dif; + public static readonly string EnhancedMetafile; + public static readonly string FileDrop; + public static readonly string Html; + public static readonly string Locale; + public static readonly string MetafilePicture; + public static readonly string OemText; + public static readonly string Palette; + public static readonly string PenData; + public static readonly string Riff; + public static readonly string Rtf; + public static readonly string Serializable; + public static readonly string StringFormat; + public static readonly string SymbolicLink; + public static readonly string Text; + public static readonly string Tiff; + public static readonly string UnicodeText; + public static readonly string WaveAudio; + public static readonly string Xaml; + public static readonly string XamlPackage; + public static System.Windows.DataFormat GetDataFormat(int id) { throw null; } + public static System.Windows.DataFormat GetDataFormat(string format) { throw null; } + } + public sealed partial class DataObject : System.Runtime.InteropServices.ComTypes.IDataObject, System.Windows.IDataObject + { + public static readonly System.Windows.RoutedEvent CopyingEvent; + public static readonly System.Windows.RoutedEvent PastingEvent; + public static readonly System.Windows.RoutedEvent SettingDataEvent; + public DataObject() { } + public DataObject(object data) { } + public DataObject(string format, object data) { } + public DataObject(string format, object data, bool autoConvert) { } + public DataObject(System.Type format, object data) { } + public static void AddCopyingHandler(System.Windows.DependencyObject element, System.Windows.DataObjectCopyingEventHandler handler) { } + public static void AddPastingHandler(System.Windows.DependencyObject element, System.Windows.DataObjectPastingEventHandler handler) { } + public static void AddSettingDataHandler(System.Windows.DependencyObject element, System.Windows.DataObjectSettingDataEventHandler handler) { } + public bool ContainsAudio() { throw null; } + public bool ContainsFileDropList() { throw null; } + public bool ContainsImage() { throw null; } + public bool ContainsText() { throw null; } + public bool ContainsText(System.Windows.TextDataFormat format) { throw null; } + public System.IO.Stream GetAudioStream() { throw null; } + public object GetData(string format) { throw null; } + public object GetData(string format, bool autoConvert) { throw null; } + public object GetData(System.Type format) { throw null; } + public bool GetDataPresent(string format) { throw null; } + public bool GetDataPresent(string format, bool autoConvert) { throw null; } + public bool GetDataPresent(System.Type format) { throw null; } + public System.Collections.Specialized.StringCollection GetFileDropList() { throw null; } + public string[] GetFormats() { throw null; } + public string[] GetFormats(bool autoConvert) { throw null; } + public System.Windows.Media.Imaging.BitmapSource GetImage() { throw null; } + public string GetText() { throw null; } + public string GetText(System.Windows.TextDataFormat format) { throw null; } + public static void RemoveCopyingHandler(System.Windows.DependencyObject element, System.Windows.DataObjectCopyingEventHandler handler) { } + public static void RemovePastingHandler(System.Windows.DependencyObject element, System.Windows.DataObjectPastingEventHandler handler) { } + public static void RemoveSettingDataHandler(System.Windows.DependencyObject element, System.Windows.DataObjectSettingDataEventHandler handler) { } + public void SetAudio(byte[] audioBytes) { } + public void SetAudio(System.IO.Stream audioStream) { } + public void SetData(object data) { } + public void SetData(string format, object data) { } + public void SetData(string format, object data, bool autoConvert) { } + public void SetData(System.Type format, object data) { } + public void SetFileDropList(System.Collections.Specialized.StringCollection fileDropList) { } + public void SetImage(System.Windows.Media.Imaging.BitmapSource image) { } + public void SetText(string textData) { } + public void SetText(string textData, System.Windows.TextDataFormat format) { } + int System.Runtime.InteropServices.ComTypes.IDataObject.DAdvise(ref System.Runtime.InteropServices.ComTypes.FORMATETC pFormatetc, System.Runtime.InteropServices.ComTypes.ADVF advf, System.Runtime.InteropServices.ComTypes.IAdviseSink pAdvSink, out int pdwConnection) { throw null; } + void System.Runtime.InteropServices.ComTypes.IDataObject.DUnadvise(int dwConnection) { } + int System.Runtime.InteropServices.ComTypes.IDataObject.EnumDAdvise(out System.Runtime.InteropServices.ComTypes.IEnumSTATDATA enumAdvise) { throw null; } + System.Runtime.InteropServices.ComTypes.IEnumFORMATETC System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR dwDirection) { throw null; } + int System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc(ref System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcIn, out System.Runtime.InteropServices.ComTypes.FORMATETC pformatetcOut) { throw null; } + void System.Runtime.InteropServices.ComTypes.IDataObject.GetData(ref System.Runtime.InteropServices.ComTypes.FORMATETC formatetc, out System.Runtime.InteropServices.ComTypes.STGMEDIUM medium) { throw null; } + void System.Runtime.InteropServices.ComTypes.IDataObject.GetDataHere(ref System.Runtime.InteropServices.ComTypes.FORMATETC formatetc, ref System.Runtime.InteropServices.ComTypes.STGMEDIUM medium) { } + int System.Runtime.InteropServices.ComTypes.IDataObject.QueryGetData(ref System.Runtime.InteropServices.ComTypes.FORMATETC formatetc) { throw null; } + void System.Runtime.InteropServices.ComTypes.IDataObject.SetData(ref System.Runtime.InteropServices.ComTypes.FORMATETC pFormatetcIn, ref System.Runtime.InteropServices.ComTypes.STGMEDIUM pmedium, bool fRelease) { } + } + public sealed partial class DataObjectCopyingEventArgs : System.Windows.DataObjectEventArgs + { + public DataObjectCopyingEventArgs(System.Windows.IDataObject dataObject, bool isDragDrop) { } + public System.Windows.IDataObject DataObject { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DataObjectCopyingEventHandler(object sender, System.Windows.DataObjectCopyingEventArgs e); + public abstract partial class DataObjectEventArgs : System.Windows.RoutedEventArgs + { + internal DataObjectEventArgs() { } + public bool CommandCancelled { get { throw null; } } + public bool IsDragDrop { get { throw null; } } + public void CancelCommand() { } + } + public sealed partial class DataObjectPastingEventArgs : System.Windows.DataObjectEventArgs + { + public DataObjectPastingEventArgs(System.Windows.IDataObject dataObject, bool isDragDrop, string formatToApply) { } + public System.Windows.IDataObject DataObject { get { throw null; } set { } } + public string FormatToApply { get { throw null; } set { } } + public System.Windows.IDataObject SourceDataObject { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DataObjectPastingEventHandler(object sender, System.Windows.DataObjectPastingEventArgs e); + public sealed partial class DataObjectSettingDataEventArgs : System.Windows.DataObjectEventArgs + { + public DataObjectSettingDataEventArgs(System.Windows.IDataObject dataObject, string format) { } + public System.Windows.IDataObject DataObject { get { throw null; } } + public string Format { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DataObjectSettingDataEventHandler(object sender, System.Windows.DataObjectSettingDataEventArgs e); + public sealed partial class DpiChangedEventArgs : System.Windows.RoutedEventArgs + { + internal DpiChangedEventArgs() { } + public System.Windows.DpiScale NewDpi { get { throw null; } } + public System.Windows.DpiScale OldDpi { get { throw null; } } + } + public delegate void DpiChangedEventHandler(object sender, System.Windows.DpiChangedEventArgs e); + public partial struct DpiScale + { + public DpiScale(double dpiScaleX, double dpiScaleY) { throw null; } + public double DpiScaleX { get { throw null; } } + public double DpiScaleY { get { throw null; } } + public double PixelsPerDip { get { throw null; } } + public double PixelsPerInchX { get { throw null; } } + public double PixelsPerInchY { get { throw null; } } + } + public enum DragAction + { + Continue = 0, + Drop = 1, + Cancel = 2, + } + public static partial class DragDrop + { + public static readonly System.Windows.RoutedEvent DragEnterEvent; + public static readonly System.Windows.RoutedEvent DragLeaveEvent; + public static readonly System.Windows.RoutedEvent DragOverEvent; + public static readonly System.Windows.RoutedEvent DropEvent; + public static readonly System.Windows.RoutedEvent GiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent PreviewDragEnterEvent; + public static readonly System.Windows.RoutedEvent PreviewDragLeaveEvent; + public static readonly System.Windows.RoutedEvent PreviewDragOverEvent; + public static readonly System.Windows.RoutedEvent PreviewDropEvent; + public static readonly System.Windows.RoutedEvent PreviewGiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent PreviewQueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent QueryContinueDragEvent; + public static void AddDragEnterHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddDragLeaveHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddDragOverHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddDropHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddGiveFeedbackHandler(System.Windows.DependencyObject element, System.Windows.GiveFeedbackEventHandler handler) { } + public static void AddPreviewDragEnterHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddPreviewDragLeaveHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddPreviewDragOverHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddPreviewDropHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void AddPreviewGiveFeedbackHandler(System.Windows.DependencyObject element, System.Windows.GiveFeedbackEventHandler handler) { } + public static void AddPreviewQueryContinueDragHandler(System.Windows.DependencyObject element, System.Windows.QueryContinueDragEventHandler handler) { } + public static void AddQueryContinueDragHandler(System.Windows.DependencyObject element, System.Windows.QueryContinueDragEventHandler handler) { } + public static System.Windows.DragDropEffects DoDragDrop(System.Windows.DependencyObject dragSource, object data, System.Windows.DragDropEffects allowedEffects) { throw null; } + public static void RemoveDragEnterHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemoveDragLeaveHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemoveDragOverHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemoveDropHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemoveGiveFeedbackHandler(System.Windows.DependencyObject element, System.Windows.GiveFeedbackEventHandler handler) { } + public static void RemovePreviewDragEnterHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemovePreviewDragLeaveHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemovePreviewDragOverHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemovePreviewDropHandler(System.Windows.DependencyObject element, System.Windows.DragEventHandler handler) { } + public static void RemovePreviewGiveFeedbackHandler(System.Windows.DependencyObject element, System.Windows.GiveFeedbackEventHandler handler) { } + public static void RemovePreviewQueryContinueDragHandler(System.Windows.DependencyObject element, System.Windows.QueryContinueDragEventHandler handler) { } + public static void RemoveQueryContinueDragHandler(System.Windows.DependencyObject element, System.Windows.QueryContinueDragEventHandler handler) { } + } + [System.FlagsAttribute] + public enum DragDropEffects + { + Scroll = -2147483648, + All = -2147483645, + None = 0, + Copy = 1, + Move = 2, + Link = 4, + } + [System.FlagsAttribute] + public enum DragDropKeyStates + { + None = 0, + LeftMouseButton = 1, + RightMouseButton = 2, + ShiftKey = 4, + ControlKey = 8, + MiddleMouseButton = 16, + AltKey = 32, + } + public sealed partial class DragEventArgs : System.Windows.RoutedEventArgs + { + internal DragEventArgs() { } + public System.Windows.DragDropEffects AllowedEffects { get { throw null; } } + public System.Windows.IDataObject Data { get { throw null; } } + public System.Windows.DragDropEffects Effects { get { throw null; } set { } } + public System.Windows.DragDropKeyStates KeyStates { get { throw null; } } + public System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DragEventHandler(object sender, System.Windows.DragEventArgs e); + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.DurationConverter))] + public partial struct Duration + { + public Duration(System.TimeSpan timeSpan) { throw null; } + public static System.Windows.Duration Automatic { get { throw null; } } + public static System.Windows.Duration Forever { get { throw null; } } + public bool HasTimeSpan { get { throw null; } } + public System.TimeSpan TimeSpan { get { throw null; } } + public System.Windows.Duration Add(System.Windows.Duration duration) { throw null; } + public static int Compare(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public override bool Equals(object value) { throw null; } + public bool Equals(System.Windows.Duration duration) { throw null; } + public static bool Equals(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public override int GetHashCode() { throw null; } + public static System.Windows.Duration operator +(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static bool operator ==(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static bool operator >(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static bool operator >=(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static implicit operator System.Windows.Duration(System.TimeSpan timeSpan) { throw null; } + public static bool operator !=(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static bool operator <(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static bool operator <=(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static System.Windows.Duration operator -(System.Windows.Duration t1, System.Windows.Duration t2) { throw null; } + public static System.Windows.Duration operator +(System.Windows.Duration duration) { throw null; } + public static System.Windows.Duration Plus(System.Windows.Duration duration) { throw null; } + public System.Windows.Duration Subtract(System.Windows.Duration duration) { throw null; } + public override string ToString() { throw null; } + } + public partial class DurationConverter : System.ComponentModel.TypeConverter + { + public DurationConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo cultureInfo, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public static partial class EventManager + { + public static System.Windows.RoutedEvent[] GetRoutedEvents() { throw null; } + public static System.Windows.RoutedEvent[] GetRoutedEventsForOwner(System.Type ownerType) { throw null; } + public static void RegisterClassHandler(System.Type classType, System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public static void RegisterClassHandler(System.Type classType, System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo) { } + public static System.Windows.RoutedEvent RegisterRoutedEvent(string name, System.Windows.RoutingStrategy routingStrategy, System.Type handlerType, System.Type ownerType) { throw null; } + } + public partial class EventPrivateKey + { + public EventPrivateKey() { } + } + public sealed partial class EventRoute + { + public EventRoute(System.Windows.RoutedEvent routedEvent) { } + public void Add(object target, System.Delegate handler, bool handledEventsToo) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public object PeekBranchNode() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public object PeekBranchSource() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public object PopBranchNode() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public void PushBranchNode(object node, object source) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public enum FlowDirection + { + LeftToRight = 0, + RightToLeft = 1, + } + public enum FontCapitals + { + Normal = 0, + AllSmallCaps = 1, + SmallCaps = 2, + AllPetiteCaps = 3, + PetiteCaps = 4, + Unicase = 5, + Titling = 6, + } + public enum FontEastAsianLanguage + { + Normal = 0, + Jis78 = 1, + Jis83 = 2, + Jis90 = 3, + Jis04 = 4, + HojoKanji = 5, + NlcKanji = 6, + Simplified = 7, + Traditional = 8, + TraditionalNames = 9, + } + public enum FontEastAsianWidths + { + Normal = 0, + Proportional = 1, + Full = 2, + Half = 3, + Third = 4, + Quarter = 5, + } + public enum FontFraction + { + Normal = 0, + Slashed = 1, + Stacked = 2, + } + public enum FontNumeralAlignment + { + Normal = 0, + Proportional = 1, + Tabular = 2, + } + public enum FontNumeralStyle + { + Normal = 0, + Lining = 1, + OldStyle = 2, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontStretchConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public partial struct FontStretch : System.IFormattable + { + public static int Compare(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.FontStretch obj) { throw null; } + public static System.Windows.FontStretch FromOpenTypeStretch(int stretchValue) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public static bool operator >(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public static bool operator >=(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public static bool operator !=(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public static bool operator <(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + public static bool operator <=(System.Windows.FontStretch left, System.Windows.FontStretch right) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public int ToOpenTypeStretch() { throw null; } + public override string ToString() { throw null; } + } + public sealed partial class FontStretchConverter : System.ComponentModel.TypeConverter + { + public FontStretchConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public static partial class FontStretches + { + public static System.Windows.FontStretch Condensed { get { throw null; } } + public static System.Windows.FontStretch Expanded { get { throw null; } } + public static System.Windows.FontStretch ExtraCondensed { get { throw null; } } + public static System.Windows.FontStretch ExtraExpanded { get { throw null; } } + public static System.Windows.FontStretch Medium { get { throw null; } } + public static System.Windows.FontStretch Normal { get { throw null; } } + public static System.Windows.FontStretch SemiCondensed { get { throw null; } } + public static System.Windows.FontStretch SemiExpanded { get { throw null; } } + public static System.Windows.FontStretch UltraCondensed { get { throw null; } } + public static System.Windows.FontStretch UltraExpanded { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontStyleConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public partial struct FontStyle : System.IFormattable + { + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.FontStyle obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.FontStyle left, System.Windows.FontStyle right) { throw null; } + public static bool operator !=(System.Windows.FontStyle left, System.Windows.FontStyle right) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + } + public sealed partial class FontStyleConverter : System.ComponentModel.TypeConverter + { + public FontStyleConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public static partial class FontStyles + { + public static System.Windows.FontStyle Italic { get { throw null; } } + public static System.Windows.FontStyle Normal { get { throw null; } } + public static System.Windows.FontStyle Oblique { get { throw null; } } + } + public enum FontVariants + { + Normal = 0, + Superscript = 1, + Subscript = 2, + Ordinal = 3, + Inferior = 4, + Ruby = 5, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontWeightConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public partial struct FontWeight : System.IFormattable + { + public static int Compare(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.FontWeight obj) { throw null; } + public static System.Windows.FontWeight FromOpenTypeWeight(int weightValue) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public static bool operator >(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public static bool operator >=(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public static bool operator !=(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public static bool operator <(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + public static bool operator <=(System.Windows.FontWeight left, System.Windows.FontWeight right) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public int ToOpenTypeWeight() { throw null; } + public override string ToString() { throw null; } + } + public sealed partial class FontWeightConverter : System.ComponentModel.TypeConverter + { + public FontWeightConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public static partial class FontWeights + { + public static System.Windows.FontWeight Black { get { throw null; } } + public static System.Windows.FontWeight Bold { get { throw null; } } + public static System.Windows.FontWeight DemiBold { get { throw null; } } + public static System.Windows.FontWeight ExtraBlack { get { throw null; } } + public static System.Windows.FontWeight ExtraBold { get { throw null; } } + public static System.Windows.FontWeight ExtraLight { get { throw null; } } + public static System.Windows.FontWeight Heavy { get { throw null; } } + public static System.Windows.FontWeight Light { get { throw null; } } + public static System.Windows.FontWeight Medium { get { throw null; } } + public static System.Windows.FontWeight Normal { get { throw null; } } + public static System.Windows.FontWeight Regular { get { throw null; } } + public static System.Windows.FontWeight SemiBold { get { throw null; } } + public static System.Windows.FontWeight Thin { get { throw null; } } + public static System.Windows.FontWeight UltraBlack { get { throw null; } } + public static System.Windows.FontWeight UltraBold { get { throw null; } } + public static System.Windows.FontWeight UltraLight { get { throw null; } } + } + public partial class FreezableCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged where T : System.Windows.DependencyObject + { + public FreezableCollection() { } + public FreezableCollection(System.Collections.Generic.IEnumerable collection) { } + public FreezableCollection(int capacity) { } + public int Count { get { throw null; } } + public T this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public void Add(T value) { } + public void Clear() { } + public new System.Windows.FreezableCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.FreezableCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(T value) { throw null; } + public void CopyTo(T[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.FreezableCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(T value) { throw null; } + public void Insert(int index, T value) { } + public bool Remove(T value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public T Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class GiveFeedbackEventArgs : System.Windows.RoutedEventArgs + { + internal GiveFeedbackEventArgs() { } + public System.Windows.DragDropEffects Effects { get { throw null; } } + public bool UseDefaultCursors { get { throw null; } set { } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void GiveFeedbackEventHandler(object sender, System.Windows.GiveFeedbackEventArgs e); + public sealed partial class HwndDpiChangedEventArgs : System.ComponentModel.HandledEventArgs + { + internal HwndDpiChangedEventArgs() { } + public System.Windows.DpiScale NewDpi { get { throw null; } } + public System.Windows.DpiScale OldDpi { get { throw null; } } + public System.Windows.Rect SuggestedRect { get { throw null; } } + } + public delegate void HwndDpiChangedEventHandler(object sender, System.Windows.HwndDpiChangedEventArgs e); + public partial interface IContentHost + { + System.Collections.Generic.IEnumerator HostedElements { get; } + System.Collections.ObjectModel.ReadOnlyCollection GetRectangles(System.Windows.ContentElement child); + System.Windows.IInputElement InputHitTest(System.Windows.Point point); + void OnChildDesiredSizeChanged(System.Windows.UIElement child); + } + public partial interface IDataObject + { + object GetData(string format); + object GetData(string format, bool autoConvert); + object GetData(System.Type format); + bool GetDataPresent(string format); + bool GetDataPresent(string format, bool autoConvert); + bool GetDataPresent(System.Type format); + string[] GetFormats(); + string[] GetFormats(bool autoConvert); + void SetData(object data); + void SetData(string format, object data); + void SetData(string format, object data, bool autoConvert); + void SetData(System.Type format, object data); + } + public partial interface IInputElement + { + bool Focusable { get; set; } + bool IsEnabled { get; } + bool IsKeyboardFocused { get; } + bool IsKeyboardFocusWithin { get; } + bool IsMouseCaptured { get; } + bool IsMouseDirectlyOver { get; } + bool IsMouseOver { get; } + bool IsStylusCaptured { get; } + bool IsStylusDirectlyOver { get; } + bool IsStylusOver { get; } + event System.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus; + event System.Windows.Input.MouseEventHandler GotMouseCapture; + event System.Windows.Input.StylusEventHandler GotStylusCapture; + event System.Windows.Input.KeyEventHandler KeyDown; + event System.Windows.Input.KeyEventHandler KeyUp; + event System.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus; + event System.Windows.Input.MouseEventHandler LostMouseCapture; + event System.Windows.Input.StylusEventHandler LostStylusCapture; + event System.Windows.Input.MouseEventHandler MouseEnter; + event System.Windows.Input.MouseEventHandler MouseLeave; + event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown; + event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp; + event System.Windows.Input.MouseEventHandler MouseMove; + event System.Windows.Input.MouseButtonEventHandler MouseRightButtonDown; + event System.Windows.Input.MouseButtonEventHandler MouseRightButtonUp; + event System.Windows.Input.MouseWheelEventHandler MouseWheel; + event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus; + event System.Windows.Input.KeyEventHandler PreviewKeyDown; + event System.Windows.Input.KeyEventHandler PreviewKeyUp; + event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus; + event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown; + event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp; + event System.Windows.Input.MouseEventHandler PreviewMouseMove; + event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown; + event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp; + event System.Windows.Input.MouseWheelEventHandler PreviewMouseWheel; + event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown; + event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp; + event System.Windows.Input.StylusDownEventHandler PreviewStylusDown; + event System.Windows.Input.StylusEventHandler PreviewStylusInAirMove; + event System.Windows.Input.StylusEventHandler PreviewStylusInRange; + event System.Windows.Input.StylusEventHandler PreviewStylusMove; + event System.Windows.Input.StylusEventHandler PreviewStylusOutOfRange; + event System.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture; + event System.Windows.Input.StylusEventHandler PreviewStylusUp; + event System.Windows.Input.TextCompositionEventHandler PreviewTextInput; + event System.Windows.Input.StylusButtonEventHandler StylusButtonDown; + event System.Windows.Input.StylusButtonEventHandler StylusButtonUp; + event System.Windows.Input.StylusDownEventHandler StylusDown; + event System.Windows.Input.StylusEventHandler StylusEnter; + event System.Windows.Input.StylusEventHandler StylusInAirMove; + event System.Windows.Input.StylusEventHandler StylusInRange; + event System.Windows.Input.StylusEventHandler StylusLeave; + event System.Windows.Input.StylusEventHandler StylusMove; + event System.Windows.Input.StylusEventHandler StylusOutOfRange; + event System.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture; + event System.Windows.Input.StylusEventHandler StylusUp; + event System.Windows.Input.TextCompositionEventHandler TextInput; + void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler); + bool CaptureMouse(); + bool CaptureStylus(); + bool Focus(); + void RaiseEvent(System.Windows.RoutedEventArgs e); + void ReleaseMouseCapture(); + void ReleaseStylusCapture(); + void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler); + } + public partial class KeySplineConverter : System.ComponentModel.TypeConverter + { + public KeySplineConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptor, System.Type destinationType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo cultureInfo, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public partial class KeyTimeConverter : System.ComponentModel.TypeConverter + { + public KeyTimeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type type) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type type) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum LineBreakCondition + { + BreakDesired = 0, + BreakPossible = 1, + BreakRestrained = 2, + BreakAlways = 3, + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Field | System.AttributeTargets.Property | System.AttributeTargets.Struct, AllowMultiple = false, Inherited = true)] + public sealed partial class LocalizabilityAttribute : System.Attribute + { + public LocalizabilityAttribute(System.Windows.LocalizationCategory category) { } + public System.Windows.LocalizationCategory Category { get { throw null; } } + public System.Windows.Modifiability Modifiability { get { throw null; } set { } } + public System.Windows.Readability Readability { get { throw null; } set { } } + } + public enum LocalizationCategory + { + None = 0, + Text = 1, + Title = 2, + Label = 3, + Button = 4, + CheckBox = 5, + ComboBox = 6, + ListBox = 7, + Menu = 8, + RadioButton = 9, + ToolTip = 10, + Hyperlink = 11, + TextFlow = 12, + XmlData = 13, + Font = 14, + Inherit = 15, + Ignore = 16, + NeverLocalize = 17, + } + public enum Modifiability + { + Unmodifiable = 0, + Modifiable = 1, + Inherit = 2, + } + public abstract partial class PresentationSource : System.Windows.Threading.DispatcherObject + { + protected PresentationSource() { } + public System.Windows.Media.CompositionTarget CompositionTarget { get { throw null; } } + public static System.Collections.IEnumerable CurrentSources { get { throw null; } } + public abstract bool IsDisposed { get; } + public abstract System.Windows.Media.Visual RootVisual { get; set; } + public event System.EventHandler ContentRendered { add { } remove { } } + protected void AddSource() { } + public static void AddSourceChangedHandler(System.Windows.IInputElement element, System.Windows.SourceChangedEventHandler handler) { } + protected void ClearContentRenderedListeners() { } + public static System.Windows.PresentationSource FromDependencyObject(System.Windows.DependencyObject dependencyObject) { throw null; } + public static System.Windows.PresentationSource FromVisual(System.Windows.Media.Visual visual) { throw null; } + protected abstract System.Windows.Media.CompositionTarget GetCompositionTargetCore(); + protected void RemoveSource() { } + public static void RemoveSourceChangedHandler(System.Windows.IInputElement e, System.Windows.SourceChangedEventHandler handler) { } + protected void RootChanged(System.Windows.Media.Visual oldRoot, System.Windows.Media.Visual newRoot) { } + } + public sealed partial class QueryContinueDragEventArgs : System.Windows.RoutedEventArgs + { + internal QueryContinueDragEventArgs() { } + public System.Windows.DragAction Action { get { throw null; } set { } } + public bool EscapePressed { get { throw null; } } + public System.Windows.DragDropKeyStates KeyStates { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void QueryContinueDragEventHandler(object sender, System.Windows.QueryContinueDragEventArgs e); + public enum Readability + { + Unreadable = 0, + Readable = 1, + Inherit = 2, + } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Markup.RoutedEventConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.Markup.ValueSerializerAttribute("System.Windows.Markup.RoutedEventValueSerializer, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public sealed partial class RoutedEvent + { + internal RoutedEvent() { } + public System.Type HandlerType { get { throw null; } } + public string Name { get { throw null; } } + public System.Type OwnerType { get { throw null; } } + public System.Windows.RoutingStrategy RoutingStrategy { get { throw null; } } + public System.Windows.RoutedEvent AddOwner(System.Type ownerType) { throw null; } + public override string ToString() { throw null; } + } + public partial class RoutedEventArgs : System.EventArgs + { + public RoutedEventArgs() { } + public RoutedEventArgs(System.Windows.RoutedEvent routedEvent) { } + public RoutedEventArgs(System.Windows.RoutedEvent routedEvent, object source) { } + public bool Handled { get { throw null; } set { } } + public object OriginalSource { get { throw null; } } + public System.Windows.RoutedEvent RoutedEvent { get { throw null; } set { } } + public object Source { get { throw null; } set { } } + protected virtual void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + protected virtual void OnSetSource(object source) { } + } + public delegate void RoutedEventHandler(object sender, System.Windows.RoutedEventArgs e); + public partial struct RoutedEventHandlerInfo + { + public System.Delegate Handler { get { throw null; } } + public bool InvokeHandledEventsToo { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.RoutedEventHandlerInfo handlerInfo) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.RoutedEventHandlerInfo handlerInfo1, System.Windows.RoutedEventHandlerInfo handlerInfo2) { throw null; } + public static bool operator !=(System.Windows.RoutedEventHandlerInfo handlerInfo1, System.Windows.RoutedEventHandlerInfo handlerInfo2) { throw null; } + } + public enum RoutingStrategy + { + Tunnel = 0, + Bubble = 1, + Direct = 2, + } + public partial class SizeChangedInfo + { + public SizeChangedInfo(System.Windows.UIElement element, System.Windows.Size previousSize, bool widthChanged, bool heightChanged) { } + public bool HeightChanged { get { throw null; } } + public System.Windows.Size NewSize { get { throw null; } } + public System.Windows.Size PreviousSize { get { throw null; } } + public bool WidthChanged { get { throw null; } } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public enum SizeToContent + { + Manual = 0, + Width = 1, + Height = 2, + WidthAndHeight = 3, + } + public sealed partial class SourceChangedEventArgs : System.Windows.RoutedEventArgs + { + public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource) { } + public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource, System.Windows.IInputElement element, System.Windows.IInputElement oldParent) { } + public System.Windows.IInputElement Element { get { throw null; } } + public System.Windows.PresentationSource NewSource { get { throw null; } } + public System.Windows.IInputElement OldParent { get { throw null; } } + public System.Windows.PresentationSource OldSource { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void SourceChangedEventHandler(object sender, System.Windows.SourceChangedEventArgs e); + public partial class StrokeCollectionConverter : System.ComponentModel.TypeConverter + { + public StrokeCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public enum TextAlignment + { + Left = 0, + Right = 1, + Center = 2, + Justify = 3, + } + public enum TextDataFormat + { + Text = 0, + UnicodeText = 1, + Rtf = 2, + Html = 3, + CommaSeparatedValue = 4, + Xaml = 5, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public sealed partial class TextDecoration : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty LocationProperty; + public static readonly System.Windows.DependencyProperty PenOffsetProperty; + public static readonly System.Windows.DependencyProperty PenOffsetUnitProperty; + public static readonly System.Windows.DependencyProperty PenProperty; + public static readonly System.Windows.DependencyProperty PenThicknessUnitProperty; + public TextDecoration() { } + public TextDecoration(System.Windows.TextDecorationLocation location, System.Windows.Media.Pen pen, double penOffset, System.Windows.TextDecorationUnit penOffsetUnit, System.Windows.TextDecorationUnit penThicknessUnit) { } + public System.Windows.TextDecorationLocation Location { get { throw null; } set { } } + public System.Windows.Media.Pen Pen { get { throw null; } set { } } + public double PenOffset { get { throw null; } set { } } + public System.Windows.TextDecorationUnit PenOffsetUnit { get { throw null; } set { } } + public System.Windows.TextDecorationUnit PenThicknessUnit { get { throw null; } set { } } + public new System.Windows.TextDecoration Clone() { throw null; } + public new System.Windows.TextDecoration CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.TextDecorationCollectionConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class TextDecorationCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public TextDecorationCollection() { } + public TextDecorationCollection(System.Collections.Generic.IEnumerable collection) { } + public TextDecorationCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.TextDecoration this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + public void Add(System.Collections.Generic.IEnumerable textDecorations) { } + public void Add(System.Windows.TextDecoration value) { } + public void Clear() { } + public new System.Windows.TextDecorationCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.TextDecorationCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.TextDecoration value) { throw null; } + public void CopyTo(System.Windows.TextDecoration[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.TextDecorationCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.TextDecoration value) { throw null; } + public void Insert(int index, System.Windows.TextDecoration value) { } + public bool Remove(System.Windows.TextDecoration value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public bool TryRemove(System.Collections.Generic.IEnumerable textDecorations, out System.Windows.TextDecorationCollection result) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.TextDecoration Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class TextDecorationCollectionConverter : System.ComponentModel.TypeConverter + { + public TextDecorationCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object input) { throw null; } + public static new System.Windows.TextDecorationCollection ConvertFromString(string text) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum TextDecorationLocation + { + Underline = 0, + OverLine = 1, + Strikethrough = 2, + Baseline = 3, + } + public static partial class TextDecorations + { + public static System.Windows.TextDecorationCollection Baseline { get { throw null; } } + public static System.Windows.TextDecorationCollection OverLine { get { throw null; } } + public static System.Windows.TextDecorationCollection Strikethrough { get { throw null; } } + public static System.Windows.TextDecorationCollection Underline { get { throw null; } } + } + public enum TextDecorationUnit + { + FontRecommended = 0, + FontRenderingEmSize = 1, + Pixel = 2, + } + public enum TextMarkerStyle + { + None = 0, + Disc = 1, + Circle = 2, + Square = 3, + Box = 4, + LowerRoman = 5, + UpperRoman = 6, + LowerLatin = 7, + UpperLatin = 8, + Decimal = 9, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public enum TextTrimming + { + None = 0, + CharacterEllipsis = 1, + WordEllipsis = 2, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public enum TextWrapping + { + WrapWithOverflow = 0, + NoWrap = 1, + Wrap = 2, + } + [System.Windows.Markup.UidPropertyAttribute("Uid")] + public partial class UIElement : System.Windows.Media.Visual, System.Windows.IInputElement, System.Windows.Media.Animation.IAnimatable + { + public static readonly System.Windows.DependencyProperty AllowDropProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedWithinProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesOverProperty; + public static readonly System.Windows.DependencyProperty BitmapEffectInputProperty; + public static readonly System.Windows.DependencyProperty BitmapEffectProperty; + public static readonly System.Windows.DependencyProperty CacheModeProperty; + public static readonly System.Windows.DependencyProperty ClipProperty; + public static readonly System.Windows.DependencyProperty ClipToBoundsProperty; + public static readonly System.Windows.RoutedEvent DragEnterEvent; + public static readonly System.Windows.RoutedEvent DragLeaveEvent; + public static readonly System.Windows.RoutedEvent DragOverEvent; + public static readonly System.Windows.RoutedEvent DropEvent; + public static readonly System.Windows.DependencyProperty EffectProperty; + public static readonly System.Windows.DependencyProperty FocusableProperty; + public static readonly System.Windows.RoutedEvent GiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent GotFocusEvent; + public static readonly System.Windows.RoutedEvent GotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent GotMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent GotStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent GotTouchCaptureEvent; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty IsFocusedProperty; + public static readonly System.Windows.DependencyProperty IsHitTestVisibleProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusedProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusWithinProperty; + public static readonly System.Windows.DependencyProperty IsManipulationEnabledProperty; + public static readonly System.Windows.DependencyProperty IsMouseCapturedProperty; + public static readonly System.Windows.DependencyProperty IsMouseCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsMouseDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsMouseOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusCapturedProperty; + public static readonly System.Windows.DependencyProperty IsStylusCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsStylusDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusOverProperty; + public static readonly System.Windows.DependencyProperty IsVisibleProperty; + public static readonly System.Windows.RoutedEvent KeyDownEvent; + public static readonly System.Windows.RoutedEvent KeyUpEvent; + public static readonly System.Windows.RoutedEvent LostFocusEvent; + public static readonly System.Windows.RoutedEvent LostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent LostMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent LostStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent LostTouchCaptureEvent; + public static readonly System.Windows.RoutedEvent ManipulationBoundaryFeedbackEvent; + public static readonly System.Windows.RoutedEvent ManipulationCompletedEvent; + public static readonly System.Windows.RoutedEvent ManipulationDeltaEvent; + public static readonly System.Windows.RoutedEvent ManipulationInertiaStartingEvent; + public static readonly System.Windows.RoutedEvent ManipulationStartedEvent; + public static readonly System.Windows.RoutedEvent ManipulationStartingEvent; + public static readonly System.Windows.RoutedEvent MouseDownEvent; + public static readonly System.Windows.RoutedEvent MouseEnterEvent; + public static readonly System.Windows.RoutedEvent MouseLeaveEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseMoveEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseUpEvent; + public static readonly System.Windows.RoutedEvent MouseWheelEvent; + public static readonly System.Windows.DependencyProperty OpacityMaskProperty; + public static readonly System.Windows.DependencyProperty OpacityProperty; + public static readonly System.Windows.RoutedEvent PreviewDragEnterEvent; + public static readonly System.Windows.RoutedEvent PreviewDragLeaveEvent; + public static readonly System.Windows.RoutedEvent PreviewDragOverEvent; + public static readonly System.Windows.RoutedEvent PreviewDropEvent; + public static readonly System.Windows.RoutedEvent PreviewGiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent PreviewGotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyDownEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyUpEvent; + public static readonly System.Windows.RoutedEvent PreviewLostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewQueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusUpEvent; + public static readonly System.Windows.RoutedEvent PreviewTextInputEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchDownEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchUpEvent; + public static readonly System.Windows.RoutedEvent QueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent QueryCursorEvent; + public static readonly System.Windows.DependencyProperty RenderTransformOriginProperty; + public static readonly System.Windows.DependencyProperty RenderTransformProperty; + public static readonly System.Windows.DependencyProperty SnapsToDevicePixelsProperty; + public static readonly System.Windows.RoutedEvent StylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent StylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent StylusDownEvent; + public static readonly System.Windows.RoutedEvent StylusEnterEvent; + public static readonly System.Windows.RoutedEvent StylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent StylusInRangeEvent; + public static readonly System.Windows.RoutedEvent StylusLeaveEvent; + public static readonly System.Windows.RoutedEvent StylusMoveEvent; + public static readonly System.Windows.RoutedEvent StylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent StylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent StylusUpEvent; + public static readonly System.Windows.RoutedEvent TextInputEvent; + public static readonly System.Windows.RoutedEvent TouchDownEvent; + public static readonly System.Windows.RoutedEvent TouchEnterEvent; + public static readonly System.Windows.RoutedEvent TouchLeaveEvent; + public static readonly System.Windows.RoutedEvent TouchMoveEvent; + public static readonly System.Windows.RoutedEvent TouchUpEvent; + public static readonly System.Windows.DependencyProperty UidProperty; + public static readonly System.Windows.DependencyProperty VisibilityProperty; + public UIElement() { } + public bool AllowDrop { get { throw null; } set { } } + public bool AreAnyTouchesCaptured { get { throw null; } } + public bool AreAnyTouchesCapturedWithin { get { throw null; } } + public bool AreAnyTouchesDirectlyOver { get { throw null; } } + public bool AreAnyTouchesOver { get { throw null; } } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffect BitmapEffect { get { throw null; } set { } } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput { get { throw null; } set { } } + public System.Windows.Media.CacheMode CacheMode { get { throw null; } set { } } + public System.Windows.Media.Geometry Clip { get { throw null; } set { } } + public bool ClipToBounds { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.CommandBindingCollection CommandBindings { get { throw null; } } + public System.Windows.Size DesiredSize { get { throw null; } } + public System.Windows.Media.Effects.Effect Effect { get { throw null; } set { } } + public bool Focusable { get { throw null; } set { } } + public bool HasAnimatedProperties { get { throw null; } } + protected internal virtual bool HasEffectiveKeyboardFocus { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.InputBindingCollection InputBindings { get { throw null; } } + public bool IsArrangeValid { get { throw null; } } + public bool IsEnabled { get { throw null; } set { } } + protected virtual bool IsEnabledCore { get { throw null; } } + public bool IsFocused { get { throw null; } } + public bool IsHitTestVisible { get { throw null; } set { } } + public bool IsInputMethodEnabled { get { throw null; } } + public bool IsKeyboardFocused { get { throw null; } } + public bool IsKeyboardFocusWithin { get { throw null; } } + public bool IsManipulationEnabled { get { throw null; } set { } } + public bool IsMeasureValid { get { throw null; } } + public bool IsMouseCaptured { get { throw null; } } + public bool IsMouseCaptureWithin { get { throw null; } } + public bool IsMouseDirectlyOver { get { throw null; } } + public bool IsMouseOver { get { throw null; } } + public bool IsStylusCaptured { get { throw null; } } + public bool IsStylusCaptureWithin { get { throw null; } } + public bool IsStylusDirectlyOver { get { throw null; } } + public bool IsStylusOver { get { throw null; } } + public bool IsVisible { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Brush OpacityMask { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.ObsoleteAttribute("PersistId is an obsolete property and may be removed in a future release. The value of this property is not defined.")] + public int PersistId { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Size RenderSize { get { throw null; } set { } } + public System.Windows.Media.Transform RenderTransform { get { throw null; } set { } } + public System.Windows.Point RenderTransformOrigin { get { throw null; } set { } } + public bool SnapsToDevicePixels { get { throw null; } set { } } + protected System.Windows.Input.StylusPlugIns.StylusPlugInCollection StylusPlugIns { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCaptured { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCapturedWithin { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesDirectlyOver { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesOver { get { throw null; } } + public string Uid { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public System.Windows.Visibility Visibility { get { throw null; } set { } } + public event System.Windows.DragEventHandler DragEnter { add { } remove { } } + public event System.Windows.DragEventHandler DragLeave { add { } remove { } } + public event System.Windows.DragEventHandler DragOver { add { } remove { } } + public event System.Windows.DragEventHandler Drop { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler FocusableChanged { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler GiveFeedback { add { } remove { } } + public event System.Windows.RoutedEventHandler GotFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler GotMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler GotStylusCapture { add { } remove { } } + public event System.EventHandler GotTouchCapture { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsEnabledChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsHitTestVisibleChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseDirectlyOverChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusDirectlyOverChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsVisibleChanged { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyUp { add { } remove { } } + public event System.EventHandler LayoutUpdated { add { } remove { } } + public event System.Windows.RoutedEventHandler LostFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler LostMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler LostStylusCapture { add { } remove { } } + public event System.EventHandler LostTouchCapture { add { } remove { } } + public event System.EventHandler ManipulationBoundaryFeedback { add { } remove { } } + public event System.EventHandler ManipulationCompleted { add { } remove { } } + public event System.EventHandler ManipulationDelta { add { } remove { } } + public event System.EventHandler ManipulationInertiaStarting { add { } remove { } } + public event System.EventHandler ManipulationStarted { add { } remove { } } + public event System.EventHandler ManipulationStarting { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseDown { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseEnter { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseLeave { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler MouseWheel { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragEnter { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragLeave { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragOver { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDrop { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler PreviewGiveFeedback { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyUp { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler PreviewMouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler PreviewMouseWheel { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler PreviewStylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler PreviewTextInput { add { } remove { } } + public event System.EventHandler PreviewTouchDown { add { } remove { } } + public event System.EventHandler PreviewTouchMove { add { } remove { } } + public event System.EventHandler PreviewTouchUp { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler QueryContinueDrag { add { } remove { } } + public event System.Windows.Input.QueryCursorEventHandler QueryCursor { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler StylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusEnter { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusLeave { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler TextInput { add { } remove { } } + public event System.EventHandler TouchDown { add { } remove { } } + public event System.EventHandler TouchEnter { add { } remove { } } + public event System.EventHandler TouchLeave { add { } remove { } } + public event System.EventHandler TouchMove { add { } remove { } } + public event System.EventHandler TouchUp { add { } remove { } } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo) { } + public void AddToEventRoute(System.Windows.EventRoute route, System.Windows.RoutedEventArgs e) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void Arrange(System.Windows.Rect finalRect) { } + protected virtual void ArrangeCore(System.Windows.Rect finalRect) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public bool CaptureMouse() { throw null; } + public bool CaptureStylus() { throw null; } + public bool CaptureTouch(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public bool Focus() { throw null; } + public object GetAnimationBaseValue(System.Windows.DependencyProperty dp) { throw null; } + protected virtual System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected internal virtual System.Windows.DependencyObject GetUIParentCore() { throw null; } + protected override System.Windows.Media.GeometryHitTestResult HitTestCore(System.Windows.Media.GeometryHitTestParameters hitTestParameters) { throw null; } + protected override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + public System.Windows.IInputElement InputHitTest(System.Windows.Point point) { throw null; } + public void InvalidateArrange() { } + public void InvalidateMeasure() { } + public void InvalidateVisual() { } + public void Measure(System.Windows.Size availableSize) { } + protected virtual System.Windows.Size MeasureCore(System.Windows.Size availableSize) { throw null; } + public virtual bool MoveFocus(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected virtual void OnChildDesiredSizeChanged(System.Windows.UIElement child) { } + protected virtual System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDragEnter(System.Windows.DragEventArgs e) { } + protected virtual void OnDragLeave(System.Windows.DragEventArgs e) { } + protected virtual void OnDragOver(System.Windows.DragEventArgs e) { } + protected virtual void OnDrop(System.Windows.DragEventArgs e) { } + protected virtual void OnGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected virtual void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected virtual void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected virtual void OnGotMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnGotStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnGotTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnIsKeyboardFocusedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnLostFocus(System.Windows.RoutedEventArgs e) { } + protected virtual void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected virtual void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnLostStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnLostTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnManipulationBoundaryFeedback(System.Windows.Input.ManipulationBoundaryFeedbackEventArgs e) { } + protected virtual void OnManipulationCompleted(System.Windows.Input.ManipulationCompletedEventArgs e) { } + protected virtual void OnManipulationDelta(System.Windows.Input.ManipulationDeltaEventArgs e) { } + protected virtual void OnManipulationInertiaStarting(System.Windows.Input.ManipulationInertiaStartingEventArgs e) { } + protected virtual void OnManipulationStarted(System.Windows.Input.ManipulationStartedEventArgs e) { } + protected virtual void OnManipulationStarting(System.Windows.Input.ManipulationStartingEventArgs e) { } + protected virtual void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected virtual void OnPreviewDragEnter(System.Windows.DragEventArgs e) { } + protected virtual void OnPreviewDragLeave(System.Windows.DragEventArgs e) { } + protected virtual void OnPreviewDragOver(System.Windows.DragEventArgs e) { } + protected virtual void OnPreviewDrop(System.Windows.DragEventArgs e) { } + protected virtual void OnPreviewGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected virtual void OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected virtual void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnPreviewKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnPreviewLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected virtual void OnPreviewMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected virtual void OnPreviewMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected virtual void OnPreviewQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected virtual void OnPreviewStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected virtual void OnPreviewStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected virtual void OnPreviewStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected virtual void OnPreviewStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnPreviewStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnPreviewStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnPreviewStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnPreviewStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected virtual void OnPreviewStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnPreviewTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected virtual void OnPreviewTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnPreviewTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnPreviewTouchUp(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected virtual void OnQueryCursor(System.Windows.Input.QueryCursorEventArgs e) { } + protected virtual void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + protected internal virtual void OnRenderSizeChanged(System.Windows.SizeChangedInfo info) { } + protected virtual void OnStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected virtual void OnStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected virtual void OnStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected virtual void OnStylusEnter(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusLeave(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected virtual void OnStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected virtual void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected virtual void OnTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnTouchEnter(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnTouchLeave(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnTouchUp(System.Windows.Input.TouchEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + public virtual System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) { throw null; } + public void RaiseEvent(System.Windows.RoutedEventArgs e) { } + public void ReleaseAllTouchCaptures() { } + public void ReleaseMouseCapture() { } + public void ReleaseStylusCapture() { } + public bool ReleaseTouchCapture(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeCommandBindings() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInputBindings() { throw null; } + public System.Windows.Point TranslatePoint(System.Windows.Point point, System.Windows.UIElement relativeTo) { throw null; } + public void UpdateLayout() { } + } + public abstract partial class UIElement3D : System.Windows.Media.Media3D.Visual3D, System.Windows.IInputElement + { + public static readonly System.Windows.DependencyProperty AllowDropProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesCapturedWithinProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty AreAnyTouchesOverProperty; + public static readonly System.Windows.RoutedEvent DragEnterEvent; + public static readonly System.Windows.RoutedEvent DragLeaveEvent; + public static readonly System.Windows.RoutedEvent DragOverEvent; + public static readonly System.Windows.RoutedEvent DropEvent; + public static readonly System.Windows.DependencyProperty FocusableProperty; + public static readonly System.Windows.RoutedEvent GiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent GotFocusEvent; + public static readonly System.Windows.RoutedEvent GotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent GotMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent GotStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent GotTouchCaptureEvent; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty IsFocusedProperty; + public static readonly System.Windows.DependencyProperty IsHitTestVisibleProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusedProperty; + public static readonly System.Windows.DependencyProperty IsKeyboardFocusWithinProperty; + public static readonly System.Windows.DependencyProperty IsMouseCapturedProperty; + public static readonly System.Windows.DependencyProperty IsMouseCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsMouseDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsMouseOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusCapturedProperty; + public static readonly System.Windows.DependencyProperty IsStylusCaptureWithinProperty; + public static readonly System.Windows.DependencyProperty IsStylusDirectlyOverProperty; + public static readonly System.Windows.DependencyProperty IsStylusOverProperty; + public static readonly System.Windows.DependencyProperty IsVisibleProperty; + public static readonly System.Windows.RoutedEvent KeyDownEvent; + public static readonly System.Windows.RoutedEvent KeyUpEvent; + public static readonly System.Windows.RoutedEvent LostFocusEvent; + public static readonly System.Windows.RoutedEvent LostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent LostMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent LostStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent LostTouchCaptureEvent; + public static readonly System.Windows.RoutedEvent MouseDownEvent; + public static readonly System.Windows.RoutedEvent MouseEnterEvent; + public static readonly System.Windows.RoutedEvent MouseLeaveEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseMoveEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent MouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent MouseUpEvent; + public static readonly System.Windows.RoutedEvent MouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewDragEnterEvent; + public static readonly System.Windows.RoutedEvent PreviewDragLeaveEvent; + public static readonly System.Windows.RoutedEvent PreviewDragOverEvent; + public static readonly System.Windows.RoutedEvent PreviewDropEvent; + public static readonly System.Windows.RoutedEvent PreviewGiveFeedbackEvent; + public static readonly System.Windows.RoutedEvent PreviewGotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyDownEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyUpEvent; + public static readonly System.Windows.RoutedEvent PreviewLostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseLeftButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseRightButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewQueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusUpEvent; + public static readonly System.Windows.RoutedEvent PreviewTextInputEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchDownEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewTouchUpEvent; + public static readonly System.Windows.RoutedEvent QueryContinueDragEvent; + public static readonly System.Windows.RoutedEvent QueryCursorEvent; + public static readonly System.Windows.RoutedEvent StylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent StylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent StylusDownEvent; + public static readonly System.Windows.RoutedEvent StylusEnterEvent; + public static readonly System.Windows.RoutedEvent StylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent StylusInRangeEvent; + public static readonly System.Windows.RoutedEvent StylusLeaveEvent; + public static readonly System.Windows.RoutedEvent StylusMoveEvent; + public static readonly System.Windows.RoutedEvent StylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent StylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent StylusUpEvent; + public static readonly System.Windows.RoutedEvent TextInputEvent; + public static readonly System.Windows.RoutedEvent TouchDownEvent; + public static readonly System.Windows.RoutedEvent TouchEnterEvent; + public static readonly System.Windows.RoutedEvent TouchLeaveEvent; + public static readonly System.Windows.RoutedEvent TouchMoveEvent; + public static readonly System.Windows.RoutedEvent TouchUpEvent; + public static readonly System.Windows.DependencyProperty VisibilityProperty; + protected UIElement3D() { } + public bool AllowDrop { get { throw null; } set { } } + public bool AreAnyTouchesCaptured { get { throw null; } } + public bool AreAnyTouchesCapturedWithin { get { throw null; } } + public bool AreAnyTouchesDirectlyOver { get { throw null; } } + public bool AreAnyTouchesOver { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.CommandBindingCollection CommandBindings { get { throw null; } } + public bool Focusable { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Input.InputBindingCollection InputBindings { get { throw null; } } + public bool IsEnabled { get { throw null; } set { } } + protected virtual bool IsEnabledCore { get { throw null; } } + public bool IsFocused { get { throw null; } } + public bool IsHitTestVisible { get { throw null; } set { } } + public bool IsInputMethodEnabled { get { throw null; } } + public bool IsKeyboardFocused { get { throw null; } } + public bool IsKeyboardFocusWithin { get { throw null; } } + public bool IsMouseCaptured { get { throw null; } } + public bool IsMouseCaptureWithin { get { throw null; } } + public bool IsMouseDirectlyOver { get { throw null; } } + public bool IsMouseOver { get { throw null; } } + public bool IsStylusCaptured { get { throw null; } } + public bool IsStylusCaptureWithin { get { throw null; } } + public bool IsStylusDirectlyOver { get { throw null; } } + public bool IsStylusOver { get { throw null; } } + public bool IsVisible { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCaptured { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesCapturedWithin { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesDirectlyOver { get { throw null; } } + public System.Collections.Generic.IEnumerable TouchesOver { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public System.Windows.Visibility Visibility { get { throw null; } set { } } + public event System.Windows.DragEventHandler DragEnter { add { } remove { } } + public event System.Windows.DragEventHandler DragLeave { add { } remove { } } + public event System.Windows.DragEventHandler DragOver { add { } remove { } } + public event System.Windows.DragEventHandler Drop { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler FocusableChanged { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler GiveFeedback { add { } remove { } } + public event System.Windows.RoutedEventHandler GotFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler GotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler GotMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler GotStylusCapture { add { } remove { } } + public event System.EventHandler GotTouchCapture { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsEnabledChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsHitTestVisibleChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsKeyboardFocusWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsMouseDirectlyOverChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCapturedChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusCaptureWithinChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsStylusDirectlyOverChanged { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler IsVisibleChanged { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler KeyUp { add { } remove { } } + public event System.Windows.RoutedEventHandler LostFocus { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler LostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseEventHandler LostMouseCapture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler LostStylusCapture { add { } remove { } } + public event System.EventHandler LostTouchCapture { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseDown { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseEnter { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseLeave { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler MouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler MouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler MouseWheel { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragEnter { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragLeave { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDragOver { add { } remove { } } + public event System.Windows.DragEventHandler PreviewDrop { add { } remove { } } + public event System.Windows.GiveFeedbackEventHandler PreviewGiveFeedback { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyDown { add { } remove { } } + public event System.Windows.Input.KeyEventHandler PreviewKeyUp { add { } remove { } } + public event System.Windows.Input.KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseLeftButtonUp { add { } remove { } } + public event System.Windows.Input.MouseEventHandler PreviewMouseMove { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonDown { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseRightButtonUp { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseUp { add { } remove { } } + public event System.Windows.Input.MouseWheelEventHandler PreviewMouseWheel { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler PreviewStylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler PreviewStylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler PreviewStylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler PreviewStylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler PreviewTextInput { add { } remove { } } + public event System.EventHandler PreviewTouchDown { add { } remove { } } + public event System.EventHandler PreviewTouchMove { add { } remove { } } + public event System.EventHandler PreviewTouchUp { add { } remove { } } + public event System.Windows.QueryContinueDragEventHandler QueryContinueDrag { add { } remove { } } + public event System.Windows.Input.QueryCursorEventHandler QueryCursor { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonDown { add { } remove { } } + public event System.Windows.Input.StylusButtonEventHandler StylusButtonUp { add { } remove { } } + public event System.Windows.Input.StylusDownEventHandler StylusDown { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusEnter { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInAirMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusInRange { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusLeave { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusMove { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusOutOfRange { add { } remove { } } + public event System.Windows.Input.StylusSystemGestureEventHandler StylusSystemGesture { add { } remove { } } + public event System.Windows.Input.StylusEventHandler StylusUp { add { } remove { } } + public event System.Windows.Input.TextCompositionEventHandler TextInput { add { } remove { } } + public event System.EventHandler TouchDown { add { } remove { } } + public event System.EventHandler TouchEnter { add { } remove { } } + public event System.EventHandler TouchLeave { add { } remove { } } + public event System.EventHandler TouchMove { add { } remove { } } + public event System.EventHandler TouchUp { add { } remove { } } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo) { } + public void AddToEventRoute(System.Windows.EventRoute route, System.Windows.RoutedEventArgs e) { } + public bool CaptureMouse() { throw null; } + public bool CaptureStylus() { throw null; } + public bool CaptureTouch(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public bool Focus() { throw null; } + protected internal System.Windows.DependencyObject GetUIParentCore() { throw null; } + public void InvalidateModel() { } + public virtual bool MoveFocus(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected virtual System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected internal virtual void OnDragEnter(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDragLeave(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDragOver(System.Windows.DragEventArgs e) { } + protected internal virtual void OnDrop(System.Windows.DragEventArgs e) { } + protected internal virtual void OnGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected virtual void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected internal virtual void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnGotMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnGotStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnGotTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnIsKeyboardFocusedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsMouseDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusCaptureWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnIsStylusDirectlyOverChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected internal virtual void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnLostFocus(System.Windows.RoutedEventArgs e) { } + protected internal virtual void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnLostStylusCapture(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnLostTouchCapture(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected internal virtual void OnPreviewDragEnter(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDragLeave(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDragOver(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewDrop(System.Windows.DragEventArgs e) { } + protected internal virtual void OnPreviewGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected internal virtual void OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnPreviewKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected internal virtual void OnPreviewLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal virtual void OnPreviewMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnPreviewMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal virtual void OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected internal virtual void OnPreviewQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected internal virtual void OnPreviewStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnPreviewStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnPreviewStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected internal virtual void OnPreviewStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected internal virtual void OnPreviewStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnPreviewTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected internal virtual void OnPreviewTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnPreviewTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnPreviewTouchUp(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected internal virtual void OnQueryCursor(System.Windows.Input.QueryCursorEventArgs e) { } + protected internal virtual void OnStylusButtonDown(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnStylusButtonUp(System.Windows.Input.StylusButtonEventArgs e) { } + protected internal virtual void OnStylusDown(System.Windows.Input.StylusDownEventArgs e) { } + protected internal virtual void OnStylusEnter(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusInAirMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusInRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusLeave(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusMove(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusOutOfRange(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + protected internal virtual void OnStylusUp(System.Windows.Input.StylusEventArgs e) { } + protected internal virtual void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected internal virtual void OnTouchDown(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchEnter(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchLeave(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchMove(System.Windows.Input.TouchEventArgs e) { } + protected internal virtual void OnTouchUp(System.Windows.Input.TouchEventArgs e) { } + protected virtual void OnUpdateModel() { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + public virtual System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) { throw null; } + public void RaiseEvent(System.Windows.RoutedEventArgs e) { } + public void ReleaseAllTouchCaptures() { } + public void ReleaseMouseCapture() { } + public void ReleaseStylusCapture() { } + public bool ReleaseTouchCapture(System.Windows.Input.TouchDevice touchDevice) { throw null; } + public void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeCommandBindings() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInputBindings() { throw null; } + } + public partial class UIPropertyMetadata : System.Windows.PropertyMetadata + { + public UIPropertyMetadata() { } + public UIPropertyMetadata(object defaultValue) { } + public UIPropertyMetadata(object defaultValue, System.Windows.PropertyChangedCallback propertyChangedCallback) { } + public UIPropertyMetadata(object defaultValue, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback) { } + public UIPropertyMetadata(object defaultValue, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback, bool isAnimationProhibited) { } + public UIPropertyMetadata(System.Windows.PropertyChangedCallback propertyChangedCallback) { } + public bool IsAnimationProhibited { get { throw null; } set { } } + } + public enum Visibility : byte + { + Visible = (byte)0, + Hidden = (byte)1, + Collapsed = (byte)2, + } +} +namespace System.Windows.Automation +{ + public enum AutomationLiveSetting + { + Off = 0, + Polite = 1, + Assertive = 2, + } + public static partial class AutomationProperties + { + public static readonly System.Windows.DependencyProperty AcceleratorKeyProperty; + public static readonly System.Windows.DependencyProperty AccessKeyProperty; + public static readonly System.Windows.DependencyProperty AutomationIdProperty; + public static readonly System.Windows.DependencyProperty HelpTextProperty; + public static readonly System.Windows.DependencyProperty IsColumnHeaderProperty; + public static readonly System.Windows.DependencyProperty IsOffscreenBehaviorProperty; + public static readonly System.Windows.DependencyProperty IsRequiredForFormProperty; + public static readonly System.Windows.DependencyProperty IsRowHeaderProperty; + public static readonly System.Windows.DependencyProperty ItemStatusProperty; + public static readonly System.Windows.DependencyProperty ItemTypeProperty; + public static readonly System.Windows.DependencyProperty LabeledByProperty; + public static readonly System.Windows.DependencyProperty LiveSettingProperty; + public static readonly System.Windows.DependencyProperty NameProperty; + public static readonly System.Windows.DependencyProperty PositionInSetProperty; + public static readonly System.Windows.DependencyProperty SizeOfSetProperty; + public static string GetAcceleratorKey(System.Windows.DependencyObject element) { throw null; } + public static string GetAccessKey(System.Windows.DependencyObject element) { throw null; } + public static string GetAutomationId(System.Windows.DependencyObject element) { throw null; } + public static string GetHelpText(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsColumnHeader(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Automation.IsOffscreenBehavior GetIsOffscreenBehavior(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsRequiredForForm(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsRowHeader(System.Windows.DependencyObject element) { throw null; } + public static string GetItemStatus(System.Windows.DependencyObject element) { throw null; } + public static string GetItemType(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.UIElement GetLabeledBy(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Automation.AutomationLiveSetting GetLiveSetting(System.Windows.DependencyObject element) { throw null; } + public static string GetName(System.Windows.DependencyObject element) { throw null; } + public static int GetPositionInSet(System.Windows.DependencyObject element) { throw null; } + public static int GetSizeOfSet(System.Windows.DependencyObject element) { throw null; } + public static void SetAcceleratorKey(System.Windows.DependencyObject element, string value) { } + public static void SetAccessKey(System.Windows.DependencyObject element, string value) { } + public static void SetAutomationId(System.Windows.DependencyObject element, string value) { } + public static void SetHelpText(System.Windows.DependencyObject element, string value) { } + public static void SetIsColumnHeader(System.Windows.DependencyObject element, bool value) { } + public static void SetIsOffscreenBehavior(System.Windows.DependencyObject element, System.Windows.Automation.IsOffscreenBehavior value) { } + public static void SetIsRequiredForForm(System.Windows.DependencyObject element, bool value) { } + public static void SetIsRowHeader(System.Windows.DependencyObject element, bool value) { } + public static void SetItemStatus(System.Windows.DependencyObject element, string value) { } + public static void SetItemType(System.Windows.DependencyObject element, string value) { } + public static void SetLabeledBy(System.Windows.DependencyObject element, System.Windows.UIElement value) { } + public static void SetLiveSetting(System.Windows.DependencyObject element, System.Windows.Automation.AutomationLiveSetting value) { } + public static void SetName(System.Windows.DependencyObject element, string value) { } + public static void SetPositionInSet(System.Windows.DependencyObject element, int value) { } + public static void SetSizeOfSet(System.Windows.DependencyObject element, int value) { } + } + public enum IsOffscreenBehavior + { + Default = 0, + Onscreen = 1, + Offscreen = 2, + FromClip = 3, + } +} +namespace System.Windows.Automation.Peers +{ + public enum AutomationControlType + { + Button = 0, + Calendar = 1, + CheckBox = 2, + ComboBox = 3, + Edit = 4, + Hyperlink = 5, + Image = 6, + ListItem = 7, + List = 8, + Menu = 9, + MenuBar = 10, + MenuItem = 11, + ProgressBar = 12, + RadioButton = 13, + ScrollBar = 14, + Slider = 15, + Spinner = 16, + StatusBar = 17, + Tab = 18, + TabItem = 19, + Text = 20, + ToolBar = 21, + ToolTip = 22, + Tree = 23, + TreeItem = 24, + Custom = 25, + Group = 26, + Thumb = 27, + DataGrid = 28, + DataItem = 29, + Document = 30, + SplitButton = 31, + Window = 32, + Pane = 33, + Header = 34, + HeaderItem = 35, + Table = 36, + TitleBar = 37, + Separator = 38, + } + public enum AutomationEvents + { + ToolTipOpened = 0, + ToolTipClosed = 1, + MenuOpened = 2, + MenuClosed = 3, + AutomationFocusChanged = 4, + InvokePatternOnInvoked = 5, + SelectionItemPatternOnElementAddedToSelection = 6, + SelectionItemPatternOnElementRemovedFromSelection = 7, + SelectionItemPatternOnElementSelected = 8, + SelectionPatternOnInvalidated = 9, + TextPatternOnTextSelectionChanged = 10, + TextPatternOnTextChanged = 11, + AsyncContentLoaded = 12, + PropertyChanged = 13, + StructureChanged = 14, + InputReachedTarget = 15, + InputReachedOtherElement = 16, + InputDiscarded = 17, + LiveRegionChanged = 18, + } + public enum AutomationOrientation + { + None = 0, + Horizontal = 1, + Vertical = 2, + } + public abstract partial class AutomationPeer : System.Windows.Threading.DispatcherObject + { + protected AutomationPeer() { } + public System.Windows.Automation.Peers.AutomationPeer EventsSource { get { throw null; } set { } } + protected internal virtual bool IsHwndHost { get { throw null; } } + public string GetAcceleratorKey() { throw null; } + protected abstract string GetAcceleratorKeyCore(); + public string GetAccessKey() { throw null; } + protected abstract string GetAccessKeyCore(); + public System.Windows.Automation.Peers.AutomationControlType GetAutomationControlType() { throw null; } + protected abstract System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore(); + public string GetAutomationId() { throw null; } + protected abstract string GetAutomationIdCore(); + public System.Windows.Rect GetBoundingRectangle() { throw null; } + protected abstract System.Windows.Rect GetBoundingRectangleCore(); + public System.Collections.Generic.List GetChildren() { throw null; } + protected abstract System.Collections.Generic.List GetChildrenCore(); + public string GetClassName() { throw null; } + protected abstract string GetClassNameCore(); + public System.Windows.Point GetClickablePoint() { throw null; } + protected abstract System.Windows.Point GetClickablePointCore(); + public System.Collections.Generic.List GetControlledPeers() { throw null; } + protected virtual System.Collections.Generic.List GetControlledPeersCore() { throw null; } + public string GetHelpText() { throw null; } + protected abstract string GetHelpTextCore(); + protected virtual System.Windows.Automation.Peers.HostedWindowWrapper GetHostRawElementProviderCore() { throw null; } + public string GetItemStatus() { throw null; } + protected abstract string GetItemStatusCore(); + public string GetItemType() { throw null; } + protected abstract string GetItemTypeCore(); + public System.Windows.Automation.Peers.AutomationPeer GetLabeledBy() { throw null; } + protected abstract System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore(); + public System.Windows.Automation.AutomationLiveSetting GetLiveSetting() { throw null; } + protected virtual System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + public string GetLocalizedControlType() { throw null; } + protected virtual string GetLocalizedControlTypeCore() { throw null; } + public string GetName() { throw null; } + protected abstract string GetNameCore(); + public System.Windows.Automation.Peers.AutomationOrientation GetOrientation() { throw null; } + protected abstract System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore(); + public System.Windows.Automation.Peers.AutomationPeer GetParent() { throw null; } + public abstract object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface); + public System.Windows.Automation.Peers.AutomationPeer GetPeerFromPoint(System.Windows.Point point) { throw null; } + protected virtual System.Windows.Automation.Peers.AutomationPeer GetPeerFromPointCore(System.Windows.Point point) { throw null; } + public int GetPositionInSet() { throw null; } + protected virtual int GetPositionInSetCore() { throw null; } + public int GetSizeOfSet() { throw null; } + protected virtual int GetSizeOfSetCore() { throw null; } + public bool HasKeyboardFocus() { throw null; } + protected abstract bool HasKeyboardFocusCore(); + public void InvalidatePeer() { } + public bool IsContentElement() { throw null; } + protected abstract bool IsContentElementCore(); + public bool IsControlElement() { throw null; } + protected abstract bool IsControlElementCore(); + public bool IsEnabled() { throw null; } + protected abstract bool IsEnabledCore(); + public bool IsKeyboardFocusable() { throw null; } + protected abstract bool IsKeyboardFocusableCore(); + public bool IsOffscreen() { throw null; } + protected abstract bool IsOffscreenCore(); + public bool IsPassword() { throw null; } + protected abstract bool IsPasswordCore(); + public bool IsRequiredForForm() { throw null; } + protected abstract bool IsRequiredForFormCore(); + public static bool ListenerExists(System.Windows.Automation.Peers.AutomationEvents eventId) { throw null; } + protected System.Windows.Automation.Peers.AutomationPeer PeerFromProvider(System.Windows.Automation.Provider.IRawElementProviderSimple provider) { throw null; } + protected internal System.Windows.Automation.Provider.IRawElementProviderSimple ProviderFromPeer(System.Windows.Automation.Peers.AutomationPeer peer) { throw null; } + public void RaiseAsyncContentLoadedEvent(System.Windows.Automation.AsyncContentLoadedEventArgs args) { } + public void RaiseAutomationEvent(System.Windows.Automation.Peers.AutomationEvents eventId) { } + public void RaisePropertyChangedEvent(System.Windows.Automation.AutomationProperty property, object oldValue, object newValue) { } + public void ResetChildrenCache() { } + public void SetFocus() { } + protected abstract void SetFocusCore(); + } + public partial class ContentElementAutomationPeer : System.Windows.Automation.Peers.AutomationPeer + { + public ContentElementAutomationPeer(System.Windows.ContentElement owner) { } + public System.Windows.ContentElement Owner { get { throw null; } } + public static System.Windows.Automation.Peers.AutomationPeer CreatePeerForElement(System.Windows.ContentElement element) { throw null; } + public static System.Windows.Automation.Peers.AutomationPeer FromElement(System.Windows.ContentElement element) { throw null; } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + } + public partial class GenericRootAutomationPeer : System.Windows.Automation.Peers.UIElementAutomationPeer + { + public GenericRootAutomationPeer(System.Windows.UIElement owner) : base(default(System.Windows.UIElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + } + public sealed partial class HostedWindowWrapper + { + public HostedWindowWrapper(System.IntPtr hwnd) { } + } + public enum PatternInterface + { + Invoke = 0, + Selection = 1, + Value = 2, + RangeValue = 3, + Scroll = 4, + ScrollItem = 5, + ExpandCollapse = 6, + Grid = 7, + GridItem = 8, + MultipleView = 9, + Window = 10, + SelectionItem = 11, + Dock = 12, + Table = 13, + TableItem = 14, + Toggle = 15, + Transform = 16, + Text = 17, + ItemContainer = 18, + VirtualizedItem = 19, + SynchronizedInput = 20, + } + public partial class UIElement3DAutomationPeer : System.Windows.Automation.Peers.AutomationPeer + { + public UIElement3DAutomationPeer(System.Windows.UIElement3D owner) { } + public System.Windows.UIElement3D Owner { get { throw null; } } + public static System.Windows.Automation.Peers.AutomationPeer CreatePeerForElement(System.Windows.UIElement3D element) { throw null; } + public static System.Windows.Automation.Peers.AutomationPeer FromElement(System.Windows.UIElement3D element) { throw null; } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + } + public partial class UIElementAutomationPeer : System.Windows.Automation.Peers.AutomationPeer + { + public UIElementAutomationPeer(System.Windows.UIElement owner) { } + public System.Windows.UIElement Owner { get { throw null; } } + public static System.Windows.Automation.Peers.AutomationPeer CreatePeerForElement(System.Windows.UIElement element) { throw null; } + public static System.Windows.Automation.Peers.AutomationPeer FromElement(System.Windows.UIElement element) { throw null; } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + } +} +namespace System.Windows.Diagnostics +{ + public static partial class VisualDiagnostics + { + public static event System.EventHandler VisualTreeChanged { add { } remove { } } + public static void DisableVisualTreeChanged() { } + public static void EnableVisualTreeChanged() { } + public static System.Windows.Diagnostics.XamlSourceInfo GetXamlSourceInfo(object obj) { throw null; } + } + public partial class VisualTreeChangeEventArgs : System.EventArgs + { + public VisualTreeChangeEventArgs(System.Windows.DependencyObject parent, System.Windows.DependencyObject child, int childIndex, System.Windows.Diagnostics.VisualTreeChangeType changeType) { } + public System.Windows.Diagnostics.VisualTreeChangeType ChangeType { get { throw null; } } + public System.Windows.DependencyObject Child { get { throw null; } } + public int ChildIndex { get { throw null; } } + public System.Windows.DependencyObject Parent { get { throw null; } } + } + public enum VisualTreeChangeType + { + Add = 0, + Remove = 1, + } + public partial class XamlSourceInfo + { + public XamlSourceInfo(System.Uri sourceUri, int lineNumber, int linePosition) { } + public int LineNumber { get { throw null; } } + public int LinePosition { get { throw null; } } + public System.Uri SourceUri { get { throw null; } } + } +} +namespace System.Windows.Documents +{ + public abstract partial class ContentPosition + { + public static readonly System.Windows.Documents.ContentPosition Missing; + protected ContentPosition() { } + } + public partial class DocumentPage : System.IDisposable + { + public static readonly System.Windows.Documents.DocumentPage Missing; + public DocumentPage(System.Windows.Media.Visual visual) { } + public DocumentPage(System.Windows.Media.Visual visual, System.Windows.Size pageSize, System.Windows.Rect bleedBox, System.Windows.Rect contentBox) { } + public virtual System.Windows.Rect BleedBox { get { throw null; } } + public virtual System.Windows.Rect ContentBox { get { throw null; } } + public virtual System.Windows.Size Size { get { throw null; } } + public virtual System.Windows.Media.Visual Visual { get { throw null; } } + public event System.EventHandler PageDestroyed { add { } remove { } } + public virtual void Dispose() { } + protected void OnPageDestroyed(System.EventArgs e) { } + protected void SetBleedBox(System.Windows.Rect bleedBox) { } + protected void SetContentBox(System.Windows.Rect contentBox) { } + protected void SetSize(System.Windows.Size size) { } + protected void SetVisual(System.Windows.Media.Visual visual) { } + } + public abstract partial class DocumentPaginator + { + protected DocumentPaginator() { } + public abstract bool IsPageCountValid { get; } + public abstract int PageCount { get; } + public abstract System.Windows.Size PageSize { get; set; } + public abstract System.Windows.Documents.IDocumentPaginatorSource Source { get; } + public event System.ComponentModel.AsyncCompletedEventHandler ComputePageCountCompleted { add { } remove { } } + public event System.Windows.Documents.GetPageCompletedEventHandler GetPageCompleted { add { } remove { } } + public event System.Windows.Documents.PagesChangedEventHandler PagesChanged { add { } remove { } } + public virtual void CancelAsync(object userState) { } + public virtual void ComputePageCount() { } + public virtual void ComputePageCountAsync() { } + public virtual void ComputePageCountAsync(object userState) { } + public abstract System.Windows.Documents.DocumentPage GetPage(int pageNumber); + public virtual void GetPageAsync(int pageNumber) { } + public virtual void GetPageAsync(int pageNumber, object userState) { } + protected virtual void OnComputePageCountCompleted(System.ComponentModel.AsyncCompletedEventArgs e) { } + protected virtual void OnGetPageCompleted(System.Windows.Documents.GetPageCompletedEventArgs e) { } + protected virtual void OnPagesChanged(System.Windows.Documents.PagesChangedEventArgs e) { } + } + public abstract partial class DynamicDocumentPaginator : System.Windows.Documents.DocumentPaginator + { + protected DynamicDocumentPaginator() { } + public virtual bool IsBackgroundPaginationEnabled { get { throw null; } set { } } + public event System.Windows.Documents.GetPageNumberCompletedEventHandler GetPageNumberCompleted { add { } remove { } } + public event System.EventHandler PaginationCompleted { add { } remove { } } + public event System.Windows.Documents.PaginationProgressEventHandler PaginationProgress { add { } remove { } } + public abstract System.Windows.Documents.ContentPosition GetObjectPosition(object value); + public abstract int GetPageNumber(System.Windows.Documents.ContentPosition contentPosition); + public virtual void GetPageNumberAsync(System.Windows.Documents.ContentPosition contentPosition) { } + public virtual void GetPageNumberAsync(System.Windows.Documents.ContentPosition contentPosition, object userState) { } + public abstract System.Windows.Documents.ContentPosition GetPagePosition(System.Windows.Documents.DocumentPage page); + protected virtual void OnGetPageNumberCompleted(System.Windows.Documents.GetPageNumberCompletedEventArgs e) { } + protected virtual void OnPaginationCompleted(System.EventArgs e) { } + protected virtual void OnPaginationProgress(System.Windows.Documents.PaginationProgressEventArgs e) { } + } + public partial class GetPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs + { + public GetPageCompletedEventArgs(System.Windows.Documents.DocumentPage page, int pageNumber, System.Exception error, bool cancelled, object userState) : base(default(System.Exception), default(bool), default(object)) { } + public System.Windows.Documents.DocumentPage DocumentPage { get { throw null; } } + public int PageNumber { get { throw null; } } + } + public delegate void GetPageCompletedEventHandler(object sender, System.Windows.Documents.GetPageCompletedEventArgs e); + public partial class GetPageNumberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs + { + public GetPageNumberCompletedEventArgs(System.Windows.Documents.ContentPosition contentPosition, int pageNumber, System.Exception error, bool cancelled, object userState) : base(default(System.Exception), default(bool), default(object)) { } + public System.Windows.Documents.ContentPosition ContentPosition { get { throw null; } } + public int PageNumber { get { throw null; } } + } + public delegate void GetPageNumberCompletedEventHandler(object sender, System.Windows.Documents.GetPageNumberCompletedEventArgs e); + public partial interface IDocumentPaginatorSource + { + System.Windows.Documents.DocumentPaginator DocumentPaginator { get; } + } + public partial class PagesChangedEventArgs : System.EventArgs + { + public PagesChangedEventArgs(int start, int count) { } + public int Count { get { throw null; } } + public int Start { get { throw null; } } + } + public delegate void PagesChangedEventHandler(object sender, System.Windows.Documents.PagesChangedEventArgs e); + public partial class PaginationProgressEventArgs : System.EventArgs + { + public PaginationProgressEventArgs(int start, int count) { } + public int Count { get { throw null; } } + public int Start { get { throw null; } } + } + public delegate void PaginationProgressEventHandler(object sender, System.Windows.Documents.PaginationProgressEventArgs e); +} +namespace System.Windows.Ink +{ + public enum ApplicationGesture + { + AllGestures = 0, + NoGesture = 61440, + ScratchOut = 61441, + Triangle = 61442, + Square = 61443, + Star = 61444, + Check = 61445, + Curlicue = 61456, + DoubleCurlicue = 61457, + Circle = 61472, + DoubleCircle = 61473, + SemicircleLeft = 61480, + SemicircleRight = 61481, + ChevronUp = 61488, + ChevronDown = 61489, + ChevronLeft = 61490, + ChevronRight = 61491, + ArrowUp = 61496, + ArrowDown = 61497, + ArrowLeft = 61498, + ArrowRight = 61499, + Up = 61528, + Down = 61529, + Left = 61530, + Right = 61531, + UpDown = 61536, + DownUp = 61537, + LeftRight = 61538, + RightLeft = 61539, + UpLeftLong = 61540, + UpRightLong = 61541, + DownLeftLong = 61542, + DownRightLong = 61543, + UpLeft = 61544, + UpRight = 61545, + DownLeft = 61546, + DownRight = 61547, + LeftUp = 61548, + LeftDown = 61549, + RightUp = 61550, + RightDown = 61551, + Exclamation = 61604, + Tap = 61680, + DoubleTap = 61681, + } + public static partial class DrawingAttributeIds + { + public static readonly System.Guid Color; + public static readonly System.Guid DrawingFlags; + public static readonly System.Guid IsHighlighter; + public static readonly System.Guid StylusHeight; + public static readonly System.Guid StylusTip; + public static readonly System.Guid StylusTipTransform; + public static readonly System.Guid StylusWidth; + } + public partial class DrawingAttributes : System.ComponentModel.INotifyPropertyChanged + { + public static readonly double MaxHeight; + public static readonly double MaxWidth; + public static readonly double MinHeight; + public static readonly double MinWidth; + public DrawingAttributes() { } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public bool FitToCurve { get { throw null; } set { } } + public double Height { get { throw null; } set { } } + public bool IgnorePressure { get { throw null; } set { } } + public bool IsHighlighter { get { throw null; } set { } } + public System.Windows.Ink.StylusTip StylusTip { get { throw null; } set { } } + public System.Windows.Media.Matrix StylusTipTransform { get { throw null; } set { } } + public double Width { get { throw null; } set { } } + public event System.Windows.Ink.PropertyDataChangedEventHandler AttributeChanged { add { } remove { } } + public event System.Windows.Ink.PropertyDataChangedEventHandler PropertyDataChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public void AddPropertyData(System.Guid propertyDataId, object propertyData) { } + public virtual System.Windows.Ink.DrawingAttributes Clone() { throw null; } + public bool ContainsPropertyData(System.Guid propertyDataId) { throw null; } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public object GetPropertyData(System.Guid propertyDataId) { throw null; } + public System.Guid[] GetPropertyDataIds() { throw null; } + protected virtual void OnAttributeChanged(System.Windows.Ink.PropertyDataChangedEventArgs e) { } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + protected virtual void OnPropertyDataChanged(System.Windows.Ink.PropertyDataChangedEventArgs e) { } + public static bool operator ==(System.Windows.Ink.DrawingAttributes first, System.Windows.Ink.DrawingAttributes second) { throw null; } + public static bool operator !=(System.Windows.Ink.DrawingAttributes first, System.Windows.Ink.DrawingAttributes second) { throw null; } + public void RemovePropertyData(System.Guid propertyDataId) { } + } + public partial class DrawingAttributesReplacedEventArgs : System.EventArgs + { + public DrawingAttributesReplacedEventArgs(System.Windows.Ink.DrawingAttributes newDrawingAttributes, System.Windows.Ink.DrawingAttributes previousDrawingAttributes) { } + public System.Windows.Ink.DrawingAttributes NewDrawingAttributes { get { throw null; } } + public System.Windows.Ink.DrawingAttributes PreviousDrawingAttributes { get { throw null; } } + } + public delegate void DrawingAttributesReplacedEventHandler(object sender, System.Windows.Ink.DrawingAttributesReplacedEventArgs e); + public sealed partial class EllipseStylusShape : System.Windows.Ink.StylusShape + { + public EllipseStylusShape(double width, double height) { } + public EllipseStylusShape(double width, double height, double rotation) { } + } + public partial class GestureRecognitionResult + { + internal GestureRecognitionResult() { } + public System.Windows.Ink.ApplicationGesture ApplicationGesture { get { throw null; } } + public System.Windows.Ink.RecognitionConfidence RecognitionConfidence { get { throw null; } } + } + public sealed partial class GestureRecognizer : System.Windows.DependencyObject, System.IDisposable + { + public GestureRecognizer() { } + public GestureRecognizer(System.Collections.Generic.IEnumerable enabledApplicationGestures) { } + public bool IsRecognizerAvailable { get { throw null; } } + public void Dispose() { } + public System.Collections.ObjectModel.ReadOnlyCollection GetEnabledGestures() { throw null; } + public System.Collections.ObjectModel.ReadOnlyCollection Recognize(System.Windows.Ink.StrokeCollection strokes) { throw null; } + public void SetEnabledGestures(System.Collections.Generic.IEnumerable applicationGestures) { } + } + public abstract partial class IncrementalHitTester + { + internal IncrementalHitTester() { } + public bool IsValid { get { throw null; } } + public void AddPoint(System.Windows.Point point) { } + public void AddPoints(System.Collections.Generic.IEnumerable points) { } + public void AddPoints(System.Windows.Input.StylusPointCollection stylusPoints) { } + protected abstract void AddPointsCore(System.Collections.Generic.IEnumerable points); + public void EndHitTesting() { } + } + public partial class IncrementalLassoHitTester : System.Windows.Ink.IncrementalHitTester + { + internal IncrementalLassoHitTester() { } + public event System.Windows.Ink.LassoSelectionChangedEventHandler SelectionChanged { add { } remove { } } + protected override void AddPointsCore(System.Collections.Generic.IEnumerable points) { } + protected void OnSelectionChanged(System.Windows.Ink.LassoSelectionChangedEventArgs eventArgs) { } + } + public partial class IncrementalStrokeHitTester : System.Windows.Ink.IncrementalHitTester + { + internal IncrementalStrokeHitTester() { } + public event System.Windows.Ink.StrokeHitEventHandler StrokeHit { add { } remove { } } + protected override void AddPointsCore(System.Collections.Generic.IEnumerable points) { } + protected void OnStrokeHit(System.Windows.Ink.StrokeHitEventArgs eventArgs) { } + } + public partial class LassoSelectionChangedEventArgs : System.EventArgs + { + internal LassoSelectionChangedEventArgs() { } + public System.Windows.Ink.StrokeCollection DeselectedStrokes { get { throw null; } } + public System.Windows.Ink.StrokeCollection SelectedStrokes { get { throw null; } } + } + public delegate void LassoSelectionChangedEventHandler(object sender, System.Windows.Ink.LassoSelectionChangedEventArgs e); + public partial class PropertyDataChangedEventArgs : System.EventArgs + { + public PropertyDataChangedEventArgs(System.Guid propertyGuid, object newValue, object previousValue) { } + public object NewValue { get { throw null; } } + public object PreviousValue { get { throw null; } } + public System.Guid PropertyGuid { get { throw null; } } + } + public delegate void PropertyDataChangedEventHandler(object sender, System.Windows.Ink.PropertyDataChangedEventArgs e); + public enum RecognitionConfidence + { + Strong = 0, + Intermediate = 1, + Poor = 2, + } + public sealed partial class RectangleStylusShape : System.Windows.Ink.StylusShape + { + public RectangleStylusShape(double width, double height) { } + public RectangleStylusShape(double width, double height, double rotation) { } + } + public partial class Stroke : System.ComponentModel.INotifyPropertyChanged + { + public Stroke(System.Windows.Input.StylusPointCollection stylusPoints) { } + public Stroke(System.Windows.Input.StylusPointCollection stylusPoints, System.Windows.Ink.DrawingAttributes drawingAttributes) { } + public System.Windows.Ink.DrawingAttributes DrawingAttributes { get { throw null; } set { } } + public System.Windows.Input.StylusPointCollection StylusPoints { get { throw null; } set { } } + public event System.Windows.Ink.PropertyDataChangedEventHandler DrawingAttributesChanged { add { } remove { } } + public event System.Windows.Ink.DrawingAttributesReplacedEventHandler DrawingAttributesReplaced { add { } remove { } } + public event System.EventHandler Invalidated { add { } remove { } } + public event System.Windows.Ink.PropertyDataChangedEventHandler PropertyDataChanged { add { } remove { } } + public event System.EventHandler StylusPointsChanged { add { } remove { } } + public event System.Windows.Ink.StylusPointsReplacedEventHandler StylusPointsReplaced { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public void AddPropertyData(System.Guid propertyDataId, object propertyData) { } + public virtual System.Windows.Ink.Stroke Clone() { throw null; } + public bool ContainsPropertyData(System.Guid propertyDataId) { throw null; } + public void Draw(System.Windows.Media.DrawingContext context) { } + public void Draw(System.Windows.Media.DrawingContext drawingContext, System.Windows.Ink.DrawingAttributes drawingAttributes) { } + protected virtual void DrawCore(System.Windows.Media.DrawingContext drawingContext, System.Windows.Ink.DrawingAttributes drawingAttributes) { } + public System.Windows.Input.StylusPointCollection GetBezierStylusPoints() { throw null; } + public virtual System.Windows.Rect GetBounds() { throw null; } + public System.Windows.Ink.StrokeCollection GetClipResult(System.Collections.Generic.IEnumerable lassoPoints) { throw null; } + public System.Windows.Ink.StrokeCollection GetClipResult(System.Windows.Rect bounds) { throw null; } + public System.Windows.Ink.StrokeCollection GetEraseResult(System.Collections.Generic.IEnumerable lassoPoints) { throw null; } + public System.Windows.Ink.StrokeCollection GetEraseResult(System.Collections.Generic.IEnumerable eraserPath, System.Windows.Ink.StylusShape eraserShape) { throw null; } + public System.Windows.Ink.StrokeCollection GetEraseResult(System.Windows.Rect bounds) { throw null; } + public System.Windows.Media.Geometry GetGeometry() { throw null; } + public System.Windows.Media.Geometry GetGeometry(System.Windows.Ink.DrawingAttributes drawingAttributes) { throw null; } + public object GetPropertyData(System.Guid propertyDataId) { throw null; } + public System.Guid[] GetPropertyDataIds() { throw null; } + public bool HitTest(System.Collections.Generic.IEnumerable lassoPoints, int percentageWithinLasso) { throw null; } + public bool HitTest(System.Collections.Generic.IEnumerable path, System.Windows.Ink.StylusShape stylusShape) { throw null; } + public bool HitTest(System.Windows.Point point) { throw null; } + public bool HitTest(System.Windows.Point point, double diameter) { throw null; } + public bool HitTest(System.Windows.Rect bounds, int percentageWithinBounds) { throw null; } + protected virtual void OnDrawingAttributesChanged(System.Windows.Ink.PropertyDataChangedEventArgs e) { } + protected virtual void OnDrawingAttributesReplaced(System.Windows.Ink.DrawingAttributesReplacedEventArgs e) { } + protected virtual void OnInvalidated(System.EventArgs e) { } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + protected virtual void OnPropertyDataChanged(System.Windows.Ink.PropertyDataChangedEventArgs e) { } + protected virtual void OnStylusPointsChanged(System.EventArgs e) { } + protected virtual void OnStylusPointsReplaced(System.Windows.Ink.StylusPointsReplacedEventArgs e) { } + public void RemovePropertyData(System.Guid propertyDataId) { } + public virtual void Transform(System.Windows.Media.Matrix transformMatrix, bool applyToStylusTip) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.StrokeCollectionConverter))] + public partial class StrokeCollection : System.Collections.ObjectModel.Collection, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged + { + public static readonly string InkSerializedFormat; + public StrokeCollection() { } + public StrokeCollection(System.Collections.Generic.IEnumerable strokes) { } + public StrokeCollection(System.IO.Stream stream) { } + public event System.Windows.Ink.PropertyDataChangedEventHandler PropertyDataChanged { add { } remove { } } + public event System.Windows.Ink.StrokeCollectionChangedEventHandler StrokesChanged { add { } remove { } } + event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public void Add(System.Windows.Ink.StrokeCollection strokes) { } + public void AddPropertyData(System.Guid propertyDataId, object propertyData) { } + protected sealed override void ClearItems() { } + public void Clip(System.Collections.Generic.IEnumerable lassoPoints) { } + public void Clip(System.Windows.Rect bounds) { } + public virtual System.Windows.Ink.StrokeCollection Clone() { throw null; } + public bool ContainsPropertyData(System.Guid propertyDataId) { throw null; } + public void Draw(System.Windows.Media.DrawingContext context) { } + public void Erase(System.Collections.Generic.IEnumerable lassoPoints) { } + public void Erase(System.Collections.Generic.IEnumerable eraserPath, System.Windows.Ink.StylusShape eraserShape) { } + public void Erase(System.Windows.Rect bounds) { } + public System.Windows.Rect GetBounds() { throw null; } + public System.Windows.Ink.IncrementalLassoHitTester GetIncrementalLassoHitTester(int percentageWithinLasso) { throw null; } + public System.Windows.Ink.IncrementalStrokeHitTester GetIncrementalStrokeHitTester(System.Windows.Ink.StylusShape eraserShape) { throw null; } + public object GetPropertyData(System.Guid propertyDataId) { throw null; } + public System.Guid[] GetPropertyDataIds() { throw null; } + public System.Windows.Ink.StrokeCollection HitTest(System.Collections.Generic.IEnumerable lassoPoints, int percentageWithinLasso) { throw null; } + public System.Windows.Ink.StrokeCollection HitTest(System.Collections.Generic.IEnumerable path, System.Windows.Ink.StylusShape stylusShape) { throw null; } + public System.Windows.Ink.StrokeCollection HitTest(System.Windows.Point point) { throw null; } + public System.Windows.Ink.StrokeCollection HitTest(System.Windows.Point point, double diameter) { throw null; } + public System.Windows.Ink.StrokeCollection HitTest(System.Windows.Rect bounds, int percentageWithinBounds) { throw null; } + public new int IndexOf(System.Windows.Ink.Stroke stroke) { throw null; } + protected sealed override void InsertItem(int index, System.Windows.Ink.Stroke stroke) { } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + protected virtual void OnPropertyDataChanged(System.Windows.Ink.PropertyDataChangedEventArgs e) { } + protected virtual void OnStrokesChanged(System.Windows.Ink.StrokeCollectionChangedEventArgs e) { } + public void Remove(System.Windows.Ink.StrokeCollection strokes) { } + protected sealed override void RemoveItem(int index) { } + public void RemovePropertyData(System.Guid propertyDataId) { } + public void Replace(System.Windows.Ink.Stroke strokeToReplace, System.Windows.Ink.StrokeCollection strokesToReplaceWith) { } + public void Replace(System.Windows.Ink.StrokeCollection strokesToReplace, System.Windows.Ink.StrokeCollection strokesToReplaceWith) { } + public void Save(System.IO.Stream stream) { } + public virtual void Save(System.IO.Stream stream, bool compress) { } + protected sealed override void SetItem(int index, System.Windows.Ink.Stroke stroke) { } + public void Transform(System.Windows.Media.Matrix transformMatrix, bool applyToStylusTip) { } + } + public partial class StrokeCollectionChangedEventArgs : System.EventArgs + { + public StrokeCollectionChangedEventArgs(System.Windows.Ink.StrokeCollection added, System.Windows.Ink.StrokeCollection removed) { } + public System.Windows.Ink.StrokeCollection Added { get { throw null; } } + public System.Windows.Ink.StrokeCollection Removed { get { throw null; } } + } + public delegate void StrokeCollectionChangedEventHandler(object sender, System.Windows.Ink.StrokeCollectionChangedEventArgs e); + public partial class StrokeHitEventArgs : System.EventArgs + { + internal StrokeHitEventArgs() { } + public System.Windows.Ink.Stroke HitStroke { get { throw null; } } + public System.Windows.Ink.StrokeCollection GetPointEraseResults() { throw null; } + } + public delegate void StrokeHitEventHandler(object sender, System.Windows.Ink.StrokeHitEventArgs e); + public partial class StylusPointsReplacedEventArgs : System.EventArgs + { + public StylusPointsReplacedEventArgs(System.Windows.Input.StylusPointCollection newStylusPoints, System.Windows.Input.StylusPointCollection previousStylusPoints) { } + public System.Windows.Input.StylusPointCollection NewStylusPoints { get { throw null; } } + public System.Windows.Input.StylusPointCollection PreviousStylusPoints { get { throw null; } } + } + public delegate void StylusPointsReplacedEventHandler(object sender, System.Windows.Ink.StylusPointsReplacedEventArgs e); + public abstract partial class StylusShape + { + internal StylusShape() { } + public double Height { get { throw null; } } + public double Rotation { get { throw null; } } + public double Width { get { throw null; } } + } + public enum StylusTip + { + Rectangle = 0, + Ellipse = 1, + } +} +namespace System.Windows.Input +{ + public partial class AccessKeyEventArgs : System.EventArgs + { + internal AccessKeyEventArgs() { } + public bool IsMultiple { get { throw null; } } + public string Key { get { throw null; } } + } + public sealed partial class AccessKeyManager + { + internal AccessKeyManager() { } + public static readonly System.Windows.RoutedEvent AccessKeyPressedEvent; + public static void AddAccessKeyPressedHandler(System.Windows.DependencyObject element, System.Windows.Input.AccessKeyPressedEventHandler handler) { } + public static bool IsKeyRegistered(object scope, string key) { throw null; } + public static bool ProcessKey(object scope, string key, bool isMultiple) { throw null; } + public static void Register(string key, System.Windows.IInputElement element) { } + public static void RemoveAccessKeyPressedHandler(System.Windows.DependencyObject element, System.Windows.Input.AccessKeyPressedEventHandler handler) { } + public static void Unregister(string key, System.Windows.IInputElement element) { } + } + public partial class AccessKeyPressedEventArgs : System.Windows.RoutedEventArgs + { + public AccessKeyPressedEventArgs() { } + public AccessKeyPressedEventArgs(string key) { } + public string Key { get { throw null; } } + public object Scope { get { throw null; } set { } } + public System.Windows.UIElement Target { get { throw null; } set { } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void AccessKeyPressedEventHandler(object sender, System.Windows.Input.AccessKeyPressedEventArgs e); + public static partial class ApplicationCommands + { + public static System.Windows.Input.RoutedUICommand CancelPrint { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Close { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ContextMenu { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Copy { get { throw null; } } + public static System.Windows.Input.RoutedUICommand CorrectionList { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Cut { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Delete { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Find { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Help { get { throw null; } } + public static System.Windows.Input.RoutedUICommand New { get { throw null; } } + public static System.Windows.Input.RoutedUICommand NotACommand { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Open { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Paste { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Print { get { throw null; } } + public static System.Windows.Input.RoutedUICommand PrintPreview { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Properties { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Redo { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Replace { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Save { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SaveAs { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectAll { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Stop { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Undo { get { throw null; } } + } + public partial class CanExecuteChangedEventManager : System.Windows.WeakEventManager + { + internal CanExecuteChangedEventManager() { } + public static void AddHandler(System.Windows.Input.ICommand source, System.EventHandler handler) { } + protected override bool Purge(object source, object data, bool purgeAll) { throw null; } + public static void RemoveHandler(System.Windows.Input.ICommand source, System.EventHandler handler) { } + protected override void StartListening(object source) { } + protected override void StopListening(object source) { } + } + public sealed partial class CanExecuteRoutedEventArgs : System.Windows.RoutedEventArgs + { + internal CanExecuteRoutedEventArgs() { } + public bool CanExecute { get { throw null; } set { } } + public System.Windows.Input.ICommand Command { get { throw null; } } + public bool ContinueRouting { get { throw null; } set { } } + public object Parameter { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object target) { } + } + public delegate void CanExecuteRoutedEventHandler(object sender, System.Windows.Input.CanExecuteRoutedEventArgs e); + public enum CaptureMode + { + None = 0, + Element = 1, + SubTree = 2, + } + public partial class CommandBinding + { + public CommandBinding() { } + public CommandBinding(System.Windows.Input.ICommand command) { } + public CommandBinding(System.Windows.Input.ICommand command, System.Windows.Input.ExecutedRoutedEventHandler executed) { } + public CommandBinding(System.Windows.Input.ICommand command, System.Windows.Input.ExecutedRoutedEventHandler executed, System.Windows.Input.CanExecuteRoutedEventHandler canExecute) { } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + public event System.Windows.Input.CanExecuteRoutedEventHandler CanExecute { add { } remove { } } + public event System.Windows.Input.ExecutedRoutedEventHandler Executed { add { } remove { } } + public event System.Windows.Input.CanExecuteRoutedEventHandler PreviewCanExecute { add { } remove { } } + public event System.Windows.Input.ExecutedRoutedEventHandler PreviewExecuted { add { } remove { } } + } + public sealed partial class CommandBindingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public CommandBindingCollection() { } + public CommandBindingCollection(System.Collections.IList commandBindings) { } + public int Count { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Input.CommandBinding this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Input.CommandBinding commandBinding) { throw null; } + public void AddRange(System.Collections.ICollection collection) { } + public void Clear() { } + public bool Contains(System.Windows.Input.CommandBinding commandBinding) { throw null; } + public void CopyTo(System.Windows.Input.CommandBinding[] commandBindings, int index) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Input.CommandBinding value) { throw null; } + public void Insert(int index, System.Windows.Input.CommandBinding commandBinding) { } + public void Remove(System.Windows.Input.CommandBinding commandBinding) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object commandBinding) { throw null; } + bool System.Collections.IList.Contains(object key) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object commandBinding) { } + } + public sealed partial class CommandManager + { + internal CommandManager() { } + public static readonly System.Windows.RoutedEvent CanExecuteEvent; + public static readonly System.Windows.RoutedEvent ExecutedEvent; + public static readonly System.Windows.RoutedEvent PreviewCanExecuteEvent; + public static readonly System.Windows.RoutedEvent PreviewExecutedEvent; + public static event System.EventHandler RequerySuggested { add { } remove { } } + public static void AddCanExecuteHandler(System.Windows.UIElement element, System.Windows.Input.CanExecuteRoutedEventHandler handler) { } + public static void AddExecutedHandler(System.Windows.UIElement element, System.Windows.Input.ExecutedRoutedEventHandler handler) { } + public static void AddPreviewCanExecuteHandler(System.Windows.UIElement element, System.Windows.Input.CanExecuteRoutedEventHandler handler) { } + public static void AddPreviewExecutedHandler(System.Windows.UIElement element, System.Windows.Input.ExecutedRoutedEventHandler handler) { } + public static void InvalidateRequerySuggested() { } + public static void RegisterClassCommandBinding(System.Type type, System.Windows.Input.CommandBinding commandBinding) { } + public static void RegisterClassInputBinding(System.Type type, System.Windows.Input.InputBinding inputBinding) { } + public static void RemoveCanExecuteHandler(System.Windows.UIElement element, System.Windows.Input.CanExecuteRoutedEventHandler handler) { } + public static void RemoveExecutedHandler(System.Windows.UIElement element, System.Windows.Input.ExecutedRoutedEventHandler handler) { } + public static void RemovePreviewCanExecuteHandler(System.Windows.UIElement element, System.Windows.Input.CanExecuteRoutedEventHandler handler) { } + public static void RemovePreviewExecutedHandler(System.Windows.UIElement element, System.Windows.Input.ExecutedRoutedEventHandler handler) { } + } + public static partial class ComponentCommands + { + public static System.Windows.Input.RoutedUICommand ExtendSelectionDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ExtendSelectionLeft { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ExtendSelectionRight { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ExtendSelectionUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusBack { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusForward { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusPageDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusPageUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveFocusUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveLeft { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveRight { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToHome { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToPageDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToPageUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ScrollByLine { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ScrollPageDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ScrollPageLeft { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ScrollPageRight { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ScrollPageUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToHome { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToPageDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToPageUp { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.CursorConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class Cursor : System.IDisposable + { + public Cursor(System.IO.Stream cursorStream) { } + public Cursor(System.IO.Stream cursorStream, bool scaleWithDpi) { } + public Cursor(string cursorFile) { } + public Cursor(string cursorFile, bool scaleWithDpi) { } + public void Dispose() { } + ~Cursor() { } + public override string ToString() { throw null; } + } + public partial class CursorConverter : System.ComponentModel.TypeConverter + { + public CursorConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + } + public static partial class Cursors + { + public static System.Windows.Input.Cursor AppStarting { get { throw null; } } + public static System.Windows.Input.Cursor Arrow { get { throw null; } } + public static System.Windows.Input.Cursor ArrowCD { get { throw null; } } + public static System.Windows.Input.Cursor Cross { get { throw null; } } + public static System.Windows.Input.Cursor Hand { get { throw null; } } + public static System.Windows.Input.Cursor Help { get { throw null; } } + public static System.Windows.Input.Cursor IBeam { get { throw null; } } + public static System.Windows.Input.Cursor No { get { throw null; } } + public static System.Windows.Input.Cursor None { get { throw null; } } + public static System.Windows.Input.Cursor Pen { get { throw null; } } + public static System.Windows.Input.Cursor ScrollAll { get { throw null; } } + public static System.Windows.Input.Cursor ScrollE { get { throw null; } } + public static System.Windows.Input.Cursor ScrollN { get { throw null; } } + public static System.Windows.Input.Cursor ScrollNE { get { throw null; } } + public static System.Windows.Input.Cursor ScrollNS { get { throw null; } } + public static System.Windows.Input.Cursor ScrollNW { get { throw null; } } + public static System.Windows.Input.Cursor ScrollS { get { throw null; } } + public static System.Windows.Input.Cursor ScrollSE { get { throw null; } } + public static System.Windows.Input.Cursor ScrollSW { get { throw null; } } + public static System.Windows.Input.Cursor ScrollW { get { throw null; } } + public static System.Windows.Input.Cursor ScrollWE { get { throw null; } } + public static System.Windows.Input.Cursor SizeAll { get { throw null; } } + public static System.Windows.Input.Cursor SizeNESW { get { throw null; } } + public static System.Windows.Input.Cursor SizeNS { get { throw null; } } + public static System.Windows.Input.Cursor SizeNWSE { get { throw null; } } + public static System.Windows.Input.Cursor SizeWE { get { throw null; } } + public static System.Windows.Input.Cursor UpArrow { get { throw null; } } + public static System.Windows.Input.Cursor Wait { get { throw null; } } + } + public enum CursorType + { + None = 0, + No = 1, + Arrow = 2, + AppStarting = 3, + Cross = 4, + Help = 5, + IBeam = 6, + SizeAll = 7, + SizeNESW = 8, + SizeNS = 9, + SizeNWSE = 10, + SizeWE = 11, + UpArrow = 12, + Wait = 13, + Hand = 14, + Pen = 15, + ScrollNS = 16, + ScrollWE = 17, + ScrollAll = 18, + ScrollN = 19, + ScrollS = 20, + ScrollW = 21, + ScrollE = 22, + ScrollNW = 23, + ScrollNE = 24, + ScrollSW = 25, + ScrollSE = 26, + ArrowCD = 27, + } + public sealed partial class ExecutedRoutedEventArgs : System.Windows.RoutedEventArgs + { + internal ExecutedRoutedEventArgs() { } + public System.Windows.Input.ICommand Command { get { throw null; } } + public object Parameter { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object target) { } + } + public delegate void ExecutedRoutedEventHandler(object sender, System.Windows.Input.ExecutedRoutedEventArgs e); + public static partial class FocusManager + { + public static readonly System.Windows.DependencyProperty FocusedElementProperty; + public static readonly System.Windows.RoutedEvent GotFocusEvent; + public static readonly System.Windows.DependencyProperty IsFocusScopeProperty; + public static readonly System.Windows.RoutedEvent LostFocusEvent; + public static void AddGotFocusHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void AddLostFocusHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public static System.Windows.IInputElement GetFocusedElement(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.DependencyObject GetFocusScope(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsFocusScope(System.Windows.DependencyObject element) { throw null; } + public static void RemoveGotFocusHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void RemoveLostFocusHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void SetFocusedElement(System.Windows.DependencyObject element, System.Windows.IInputElement value) { } + public static void SetIsFocusScope(System.Windows.DependencyObject element, bool value) { } + } + public partial interface ICommandSource + { + System.Windows.Input.ICommand Command { get; } + object CommandParameter { get; } + System.Windows.IInputElement CommandTarget { get; } + } + public partial interface IInputLanguageSource + { + System.Globalization.CultureInfo CurrentInputLanguage { get; set; } + System.Collections.IEnumerable InputLanguageList { get; } + void Initialize(); + void Uninitialize(); + } + public partial interface IManipulator + { + int Id { get; } + event System.EventHandler Updated; + System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo); + void ManipulationEnded(bool cancel); + } + [System.FlagsAttribute] + public enum ImeConversionModeValues + { + DoNotCare = -2147483648, + Native = 1, + Katakana = 2, + FullShape = 4, + Roman = 8, + CharCode = 16, + NoConversion = 32, + Eudc = 64, + Symbol = 128, + Fixed = 256, + Alphanumeric = 512, + } + [System.FlagsAttribute] + public enum ImeSentenceModeValues + { + DoNotCare = -2147483648, + None = 0, + PluralClause = 1, + SingleConversion = 2, + Automatic = 4, + PhrasePrediction = 8, + Conversation = 16, + } + public partial class InertiaExpansionBehavior + { + public InertiaExpansionBehavior() { } + public double DesiredDeceleration { get { throw null; } set { } } + public System.Windows.Vector DesiredExpansion { get { throw null; } set { } } + public double InitialRadius { get { throw null; } set { } } + public System.Windows.Vector InitialVelocity { get { throw null; } set { } } + } + public partial class InertiaRotationBehavior + { + public InertiaRotationBehavior() { } + public double DesiredDeceleration { get { throw null; } set { } } + public double DesiredRotation { get { throw null; } set { } } + public double InitialVelocity { get { throw null; } set { } } + } + public partial class InertiaTranslationBehavior + { + public InertiaTranslationBehavior() { } + public double DesiredDeceleration { get { throw null; } set { } } + public double DesiredDisplacement { get { throw null; } set { } } + public System.Windows.Vector InitialVelocity { get { throw null; } set { } } + } + public partial class InputBinding : System.Windows.Freezable, System.Windows.Input.ICommandSource + { + public static readonly System.Windows.DependencyProperty CommandParameterProperty; + public static readonly System.Windows.DependencyProperty CommandProperty; + public static readonly System.Windows.DependencyProperty CommandTargetProperty; + protected InputBinding() { } + public InputBinding(System.Windows.Input.ICommand command, System.Windows.Input.InputGesture gesture) { } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + public object CommandParameter { get { throw null; } set { } } + public System.Windows.IInputElement CommandTarget { get { throw null; } set { } } + public virtual System.Windows.Input.InputGesture Gesture { get { throw null; } set { } } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + } + public sealed partial class InputBindingCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public InputBindingCollection() { } + public InputBindingCollection(System.Collections.IList inputBindings) { } + public int Count { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Input.InputBinding this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Input.InputBinding inputBinding) { throw null; } + public void AddRange(System.Collections.ICollection collection) { } + public void Clear() { } + public bool Contains(System.Windows.Input.InputBinding key) { throw null; } + public void CopyTo(System.Windows.Input.InputBinding[] inputBindings, int index) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Input.InputBinding value) { throw null; } + public void Insert(int index, System.Windows.Input.InputBinding inputBinding) { } + public void Remove(System.Windows.Input.InputBinding inputBinding) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object inputBinding) { throw null; } + bool System.Collections.IList.Contains(object key) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object inputBinding) { } + } + public abstract partial class InputDevice : System.Windows.Threading.DispatcherObject + { + protected InputDevice() { } + public abstract System.Windows.PresentationSource ActiveSource { get; } + public abstract System.Windows.IInputElement Target { get; } + } + public partial class InputEventArgs : System.Windows.RoutedEventArgs + { + public InputEventArgs(System.Windows.Input.InputDevice inputDevice, int timestamp) { } + public System.Windows.Input.InputDevice Device { get { throw null; } } + public int Timestamp { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void InputEventHandler(object sender, System.Windows.Input.InputEventArgs e); + public abstract partial class InputGesture + { + protected InputGesture() { } + public abstract bool Matches(object targetElement, System.Windows.Input.InputEventArgs inputEventArgs); + } + public sealed partial class InputGestureCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public InputGestureCollection() { } + public InputGestureCollection(System.Collections.IList inputGestures) { } + public int Count { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Input.InputGesture this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Input.InputGesture inputGesture) { throw null; } + public void AddRange(System.Collections.ICollection collection) { } + public void Clear() { } + public bool Contains(System.Windows.Input.InputGesture key) { throw null; } + public void CopyTo(System.Windows.Input.InputGesture[] inputGestures, int index) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Input.InputGesture value) { throw null; } + public void Insert(int index, System.Windows.Input.InputGesture inputGesture) { } + public void Remove(System.Windows.Input.InputGesture inputGesture) { } + public void RemoveAt(int index) { } + public void Seal() { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object inputGesture) { throw null; } + bool System.Collections.IList.Contains(object key) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object inputGesture) { } + } + public partial class InputLanguageChangedEventArgs : System.Windows.Input.InputLanguageEventArgs + { + public InputLanguageChangedEventArgs(System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId) : base(default(System.Globalization.CultureInfo), default(System.Globalization.CultureInfo)) { } + } + public partial class InputLanguageChangingEventArgs : System.Windows.Input.InputLanguageEventArgs + { + public InputLanguageChangingEventArgs(System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId) : base(default(System.Globalization.CultureInfo), default(System.Globalization.CultureInfo)) { } + public bool Rejected { get { throw null; } set { } } + } + public abstract partial class InputLanguageEventArgs : System.EventArgs + { + protected InputLanguageEventArgs(System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId) { } + public virtual System.Globalization.CultureInfo NewLanguage { get { throw null; } } + public virtual System.Globalization.CultureInfo PreviousLanguage { get { throw null; } } + } + public delegate void InputLanguageEventHandler(object sender, System.Windows.Input.InputLanguageEventArgs e); + public sealed partial class InputLanguageManager : System.Windows.Threading.DispatcherObject + { + internal InputLanguageManager() { } + public static readonly System.Windows.DependencyProperty InputLanguageProperty; + public static readonly System.Windows.DependencyProperty RestoreInputLanguageProperty; + public System.Collections.IEnumerable AvailableInputLanguages { get { throw null; } } + public static System.Windows.Input.InputLanguageManager Current { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public System.Globalization.CultureInfo CurrentInputLanguage { get { throw null; } set { } } + public event System.Windows.Input.InputLanguageEventHandler InputLanguageChanged { add { } remove { } } + public event System.Windows.Input.InputLanguageEventHandler InputLanguageChanging { add { } remove { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Globalization.CultureInfo GetInputLanguage(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetRestoreInputLanguage(System.Windows.DependencyObject target) { throw null; } + public void RegisterInputLanguageSource(System.Windows.Input.IInputLanguageSource inputLanguageSource) { } + public void ReportInputLanguageChanged(System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId) { } + public bool ReportInputLanguageChanging(System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId) { throw null; } + public static void SetInputLanguage(System.Windows.DependencyObject target, System.Globalization.CultureInfo inputLanguage) { } + public static void SetRestoreInputLanguage(System.Windows.DependencyObject target, bool restore) { } + } + public sealed partial class InputManager : System.Windows.Threading.DispatcherObject + { + internal InputManager() { } + public static System.Windows.Input.InputManager Current { get { throw null; } } + public System.Collections.ICollection InputProviders { get { throw null; } } + public bool IsInMenuMode { get { throw null; } } + public System.Windows.Input.InputDevice MostRecentInputDevice { get { throw null; } } + public System.Windows.Input.KeyboardDevice PrimaryKeyboardDevice { get { throw null; } } + public System.Windows.Input.MouseDevice PrimaryMouseDevice { get { throw null; } } + public event System.EventHandler EnterMenuMode { add { } remove { } } + public event System.EventHandler HitTestInvalidatedAsync { add { } remove { } } + public event System.EventHandler LeaveMenuMode { add { } remove { } } + public event System.Windows.Input.NotifyInputEventHandler PostNotifyInput { add { } remove { } } + public event System.Windows.Input.ProcessInputEventHandler PostProcessInput { add { } remove { } } + public event System.Windows.Input.NotifyInputEventHandler PreNotifyInput { add { } remove { } } + public event System.Windows.Input.PreProcessInputEventHandler PreProcessInput { add { } remove { } } + public void PopMenuMode(System.Windows.PresentationSource menuSite) { } + public bool ProcessInput(System.Windows.Input.InputEventArgs input) { throw null; } + public void PushMenuMode(System.Windows.PresentationSource menuSite) { } + } + public partial class InputMethod : System.Windows.Threading.DispatcherObject + { + internal InputMethod() { } + public static readonly System.Windows.DependencyProperty InputScopeProperty; + public static readonly System.Windows.DependencyProperty IsInputMethodEnabledProperty; + public static readonly System.Windows.DependencyProperty IsInputMethodSuspendedProperty; + public static readonly System.Windows.DependencyProperty PreferredImeConversionModeProperty; + public static readonly System.Windows.DependencyProperty PreferredImeSentenceModeProperty; + public static readonly System.Windows.DependencyProperty PreferredImeStateProperty; + public bool CanShowConfigurationUI { get { throw null; } } + public bool CanShowRegisterWordUI { get { throw null; } } + public static System.Windows.Input.InputMethod Current { get { throw null; } } + public System.Windows.Input.InputMethodState HandwritingState { get { throw null; } set { } } + public System.Windows.Input.ImeConversionModeValues ImeConversionMode { get { throw null; } set { } } + public System.Windows.Input.ImeSentenceModeValues ImeSentenceMode { get { throw null; } set { } } + public System.Windows.Input.InputMethodState ImeState { get { throw null; } set { } } + public System.Windows.Input.InputMethodState MicrophoneState { get { throw null; } set { } } + public System.Windows.Input.SpeechMode SpeechMode { get { throw null; } set { } } + public event System.Windows.Input.InputMethodStateChangedEventHandler StateChanged { add { } remove { } } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.InputScope GetInputScope(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsInputMethodEnabled(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsInputMethodSuspended(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.ImeConversionModeValues GetPreferredImeConversionMode(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.ImeSentenceModeValues GetPreferredImeSentenceMode(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.InputMethodState GetPreferredImeState(System.Windows.DependencyObject target) { throw null; } + public static void SetInputScope(System.Windows.DependencyObject target, System.Windows.Input.InputScope value) { } + public static void SetIsInputMethodEnabled(System.Windows.DependencyObject target, bool value) { } + public static void SetIsInputMethodSuspended(System.Windows.DependencyObject target, bool value) { } + public static void SetPreferredImeConversionMode(System.Windows.DependencyObject target, System.Windows.Input.ImeConversionModeValues value) { } + public static void SetPreferredImeSentenceMode(System.Windows.DependencyObject target, System.Windows.Input.ImeSentenceModeValues value) { } + public static void SetPreferredImeState(System.Windows.DependencyObject target, System.Windows.Input.InputMethodState value) { } + public void ShowConfigureUI() { } + public void ShowConfigureUI(System.Windows.UIElement element) { } + public void ShowRegisterWordUI() { } + public void ShowRegisterWordUI(string registeredText) { } + public void ShowRegisterWordUI(System.Windows.UIElement element, string registeredText) { } + } + public enum InputMethodState + { + Off = 0, + On = 1, + DoNotCare = 2, + } + public partial class InputMethodStateChangedEventArgs : System.EventArgs + { + internal InputMethodStateChangedEventArgs() { } + public bool IsHandwritingStateChanged { get { throw null; } } + public bool IsImeConversionModeChanged { get { throw null; } } + public bool IsImeSentenceModeChanged { get { throw null; } } + public bool IsImeStateChanged { get { throw null; } } + public bool IsMicrophoneStateChanged { get { throw null; } } + public bool IsSpeechModeChanged { get { throw null; } } + } + public delegate void InputMethodStateChangedEventHandler(object sender, System.Windows.Input.InputMethodStateChangedEventArgs e); + public enum InputMode + { + Foreground = 0, + Sink = 1, + } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.InputScopeConverter, PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public partial class InputScope + { + public InputScope() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.IList Names { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.IList PhraseList { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string RegularExpression { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string SrgsMarkup { get { throw null; } set { } } + } + public partial class InputScopeConverter : System.ComponentModel.TypeConverter + { + public InputScopeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.InputScopeNameConverter, PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.Markup.ContentPropertyAttribute("NameValue")] + public partial class InputScopeName : System.Windows.Markup.IAddChild + { + public InputScopeName() { } + public InputScopeName(System.Windows.Input.InputScopeNameValue nameValue) { } + public System.Windows.Input.InputScopeNameValue NameValue { get { throw null; } set { } } + public void AddChild(object value) { } + public void AddText(string name) { } + } + public partial class InputScopeNameConverter : System.ComponentModel.TypeConverter + { + public InputScopeNameConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum InputScopeNameValue + { + Xml = -4, + Srgs = -3, + RegularExpression = -2, + PhraseList = -1, + Default = 0, + Url = 1, + FullFilePath = 2, + FileName = 3, + EmailUserName = 4, + EmailSmtpAddress = 5, + LogOnName = 6, + PersonalFullName = 7, + PersonalNamePrefix = 8, + PersonalGivenName = 9, + PersonalMiddleName = 10, + PersonalSurname = 11, + PersonalNameSuffix = 12, + PostalAddress = 13, + PostalCode = 14, + AddressStreet = 15, + AddressStateOrProvince = 16, + AddressCity = 17, + AddressCountryName = 18, + AddressCountryShortName = 19, + CurrencyAmountAndSymbol = 20, + CurrencyAmount = 21, + Date = 22, + DateMonth = 23, + DateDay = 24, + DateYear = 25, + DateMonthName = 26, + DateDayName = 27, + Digits = 28, + Number = 29, + OneChar = 30, + Password = 31, + TelephoneNumber = 32, + TelephoneCountryCode = 33, + TelephoneAreaCode = 34, + TelephoneLocalNumber = 35, + Time = 36, + TimeHour = 37, + TimeMinorSec = 38, + NumberFullWidth = 39, + AlphanumericHalfWidth = 40, + AlphanumericFullWidth = 41, + CurrencyChinese = 42, + Bopomofo = 43, + Hiragana = 44, + KatakanaHalfWidth = 45, + KatakanaFullWidth = 46, + Hanja = 47, + } + [System.Windows.Markup.ContentPropertyAttribute("Name")] + public partial class InputScopePhrase : System.Windows.Markup.IAddChild + { + public InputScopePhrase() { } + public InputScopePhrase(string name) { } + public string Name { get { throw null; } set { } } + public void AddChild(object value) { } + public void AddText(string name) { } + } + public enum InputType + { + Keyboard = 0, + Mouse = 1, + Stylus = 2, + Hid = 3, + Text = 4, + Command = 5, + } + public partial class KeyBinding : System.Windows.Input.InputBinding + { + public static readonly System.Windows.DependencyProperty KeyProperty; + public static readonly System.Windows.DependencyProperty ModifiersProperty; + public KeyBinding() { } + public KeyBinding(System.Windows.Input.ICommand command, System.Windows.Input.Key key, System.Windows.Input.ModifierKeys modifiers) { } + public KeyBinding(System.Windows.Input.ICommand command, System.Windows.Input.KeyGesture gesture) { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.KeyGestureConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Input.KeyGestureValueSerializer))] + public override System.Windows.Input.InputGesture Gesture { get { throw null; } set { } } + public System.Windows.Input.Key Key { get { throw null; } set { } } + public System.Windows.Input.ModifierKeys Modifiers { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public static partial class Keyboard + { + public static readonly System.Windows.RoutedEvent GotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent KeyboardInputProviderAcquireFocusEvent; + public static readonly System.Windows.RoutedEvent KeyDownEvent; + public static readonly System.Windows.RoutedEvent KeyUpEvent; + public static readonly System.Windows.RoutedEvent LostKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewGotKeyboardFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyboardInputProviderAcquireFocusEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyDownEvent; + public static readonly System.Windows.RoutedEvent PreviewKeyUpEvent; + public static readonly System.Windows.RoutedEvent PreviewLostKeyboardFocusEvent; + public static System.Windows.Input.RestoreFocusMode DefaultRestoreFocusMode { get { throw null; } set { } } + public static System.Windows.IInputElement FocusedElement { get { throw null; } } + public static System.Windows.Input.ModifierKeys Modifiers { get { throw null; } } + public static System.Windows.Input.KeyboardDevice PrimaryDevice { get { throw null; } } + public static void AddGotKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void AddKeyboardInputProviderAcquireFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardInputProviderAcquireFocusEventHandler handler) { } + public static void AddKeyDownHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void AddKeyUpHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void AddLostKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void AddPreviewGotKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void AddPreviewKeyboardInputProviderAcquireFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardInputProviderAcquireFocusEventHandler handler) { } + public static void AddPreviewKeyDownHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void AddPreviewKeyUpHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void AddPreviewLostKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void ClearFocus() { } + public static System.Windows.IInputElement Focus(System.Windows.IInputElement element) { throw null; } + public static System.Windows.Input.KeyStates GetKeyStates(System.Windows.Input.Key key) { throw null; } + public static bool IsKeyDown(System.Windows.Input.Key key) { throw null; } + public static bool IsKeyToggled(System.Windows.Input.Key key) { throw null; } + public static bool IsKeyUp(System.Windows.Input.Key key) { throw null; } + public static void RemoveGotKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void RemoveKeyboardInputProviderAcquireFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardInputProviderAcquireFocusEventHandler handler) { } + public static void RemoveKeyDownHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void RemoveKeyUpHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void RemoveLostKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void RemovePreviewGotKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + public static void RemovePreviewKeyboardInputProviderAcquireFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardInputProviderAcquireFocusEventHandler handler) { } + public static void RemovePreviewKeyDownHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void RemovePreviewKeyUpHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyEventHandler handler) { } + public static void RemovePreviewLostKeyboardFocusHandler(System.Windows.DependencyObject element, System.Windows.Input.KeyboardFocusChangedEventHandler handler) { } + } + public abstract partial class KeyboardDevice : System.Windows.Input.InputDevice + { + protected KeyboardDevice(System.Windows.Input.InputManager inputManager) { } + public override System.Windows.PresentationSource ActiveSource { get { throw null; } } + public System.Windows.Input.RestoreFocusMode DefaultRestoreFocusMode { get { throw null; } set { } } + public System.Windows.IInputElement FocusedElement { get { throw null; } } + public System.Windows.Input.ModifierKeys Modifiers { get { throw null; } } + public override System.Windows.IInputElement Target { get { throw null; } } + public void ClearFocus() { } + public System.Windows.IInputElement Focus(System.Windows.IInputElement element) { throw null; } + public System.Windows.Input.KeyStates GetKeyStates(System.Windows.Input.Key key) { throw null; } + protected abstract System.Windows.Input.KeyStates GetKeyStatesFromSystem(System.Windows.Input.Key key); + public bool IsKeyDown(System.Windows.Input.Key key) { throw null; } + public bool IsKeyToggled(System.Windows.Input.Key key) { throw null; } + public bool IsKeyUp(System.Windows.Input.Key key) { throw null; } + } + public partial class KeyboardEventArgs : System.Windows.Input.InputEventArgs + { + public KeyboardEventArgs(System.Windows.Input.KeyboardDevice keyboard, int timestamp) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.KeyboardDevice KeyboardDevice { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void KeyboardEventHandler(object sender, System.Windows.Input.KeyboardEventArgs e); + public partial class KeyboardFocusChangedEventArgs : System.Windows.Input.KeyboardEventArgs + { + public KeyboardFocusChangedEventArgs(System.Windows.Input.KeyboardDevice keyboard, int timestamp, System.Windows.IInputElement oldFocus, System.Windows.IInputElement newFocus) : base(default(System.Windows.Input.KeyboardDevice), default(int)) { } + public System.Windows.IInputElement NewFocus { get { throw null; } } + public System.Windows.IInputElement OldFocus { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void KeyboardFocusChangedEventHandler(object sender, System.Windows.Input.KeyboardFocusChangedEventArgs e); + public partial class KeyboardInputProviderAcquireFocusEventArgs : System.Windows.Input.KeyboardEventArgs + { + public KeyboardInputProviderAcquireFocusEventArgs(System.Windows.Input.KeyboardDevice keyboard, int timestamp, bool focusAcquired) : base(default(System.Windows.Input.KeyboardDevice), default(int)) { } + public bool FocusAcquired { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void KeyboardInputProviderAcquireFocusEventHandler(object sender, System.Windows.Input.KeyboardInputProviderAcquireFocusEventArgs e); + public partial class KeyEventArgs : System.Windows.Input.KeyboardEventArgs + { + public KeyEventArgs(System.Windows.Input.KeyboardDevice keyboard, System.Windows.PresentationSource inputSource, int timestamp, System.Windows.Input.Key key) : base(default(System.Windows.Input.KeyboardDevice), default(int)) { } + public System.Windows.Input.Key DeadCharProcessedKey { get { throw null; } } + public System.Windows.Input.Key ImeProcessedKey { get { throw null; } } + public System.Windows.PresentationSource InputSource { get { throw null; } } + public bool IsDown { get { throw null; } } + public bool IsRepeat { get { throw null; } } + public bool IsToggled { get { throw null; } } + public bool IsUp { get { throw null; } } + public System.Windows.Input.Key Key { get { throw null; } } + public System.Windows.Input.KeyStates KeyStates { get { throw null; } } + public System.Windows.Input.Key SystemKey { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void KeyEventHandler(object sender, System.Windows.Input.KeyEventArgs e); + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.KeyGestureConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Input.KeyGestureValueSerializer))] + public partial class KeyGesture : System.Windows.Input.InputGesture + { + public KeyGesture(System.Windows.Input.Key key) { } + public KeyGesture(System.Windows.Input.Key key, System.Windows.Input.ModifierKeys modifiers) { } + public KeyGesture(System.Windows.Input.Key key, System.Windows.Input.ModifierKeys modifiers, string displayString) { } + public string DisplayString { get { throw null; } } + public System.Windows.Input.Key Key { get { throw null; } } + public System.Windows.Input.ModifierKeys Modifiers { get { throw null; } } + public string GetDisplayStringForCulture(System.Globalization.CultureInfo culture) { throw null; } + public override bool Matches(object targetElement, System.Windows.Input.InputEventArgs inputEventArgs) { throw null; } + } + public partial class KeyGestureConverter : System.ComponentModel.TypeConverter + { + public KeyGestureConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class KeyGestureValueSerializer : System.Windows.Markup.ValueSerializer + { + public KeyGestureValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + [System.FlagsAttribute] + public enum KeyStates : byte + { + None = (byte)0, + Down = (byte)1, + Toggled = (byte)2, + } + public static partial class Manipulation + { + public static void AddManipulator(System.Windows.UIElement element, System.Windows.Input.IManipulator manipulator) { } + public static void CompleteManipulation(System.Windows.UIElement element) { } + public static System.Windows.IInputElement GetManipulationContainer(System.Windows.UIElement element) { throw null; } + public static System.Windows.Input.ManipulationModes GetManipulationMode(System.Windows.UIElement element) { throw null; } + public static System.Windows.Input.ManipulationPivot GetManipulationPivot(System.Windows.UIElement element) { throw null; } + public static bool IsManipulationActive(System.Windows.UIElement element) { throw null; } + public static void RemoveManipulator(System.Windows.UIElement element, System.Windows.Input.IManipulator manipulator) { } + public static void SetManipulationContainer(System.Windows.UIElement element, System.Windows.IInputElement container) { } + public static void SetManipulationMode(System.Windows.UIElement element, System.Windows.Input.ManipulationModes mode) { } + [System.ComponentModel.BrowsableAttribute(false)] + public static void SetManipulationParameter(System.Windows.UIElement element, System.Windows.Input.Manipulations.ManipulationParameters2D parameter) { } + public static void SetManipulationPivot(System.Windows.UIElement element, System.Windows.Input.ManipulationPivot pivot) { } + public static void StartInertia(System.Windows.UIElement element) { } + } + public sealed partial class ManipulationBoundaryFeedbackEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationBoundaryFeedbackEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.ManipulationDelta BoundaryFeedback { get { throw null; } } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public sealed partial class ManipulationCompletedEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationCompletedEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.ManipulationVelocities FinalVelocities { get { throw null; } } + public bool IsInertial { get { throw null; } } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } } + public System.Windows.Point ManipulationOrigin { get { throw null; } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + public System.Windows.Input.ManipulationDelta TotalManipulation { get { throw null; } } + public bool Cancel() { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public partial class ManipulationDelta + { + public ManipulationDelta(System.Windows.Vector translation, double rotation, System.Windows.Vector scale, System.Windows.Vector expansion) { } + public System.Windows.Vector Expansion { get { throw null; } } + public double Rotation { get { throw null; } } + public System.Windows.Vector Scale { get { throw null; } } + public System.Windows.Vector Translation { get { throw null; } } + } + public sealed partial class ManipulationDeltaEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationDeltaEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.ManipulationDelta CumulativeManipulation { get { throw null; } } + public System.Windows.Input.ManipulationDelta DeltaManipulation { get { throw null; } } + public bool IsInertial { get { throw null; } } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } } + public System.Windows.Point ManipulationOrigin { get { throw null; } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + public System.Windows.Input.ManipulationVelocities Velocities { get { throw null; } } + public bool Cancel() { throw null; } + public void Complete() { } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + public void ReportBoundaryFeedback(System.Windows.Input.ManipulationDelta unusedManipulation) { } + public void StartInertia() { } + } + public sealed partial class ManipulationInertiaStartingEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationInertiaStartingEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.InertiaExpansionBehavior ExpansionBehavior { get { throw null; } set { } } + public System.Windows.Input.ManipulationVelocities InitialVelocities { get { throw null; } } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } } + public System.Windows.Point ManipulationOrigin { get { throw null; } set { } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + public System.Windows.Input.InertiaRotationBehavior RotationBehavior { get { throw null; } set { } } + public System.Windows.Input.InertiaTranslationBehavior TranslationBehavior { get { throw null; } set { } } + public bool Cancel() { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + [System.ComponentModel.BrowsableAttribute(false)] + public void SetInertiaParameter(System.Windows.Input.Manipulations.InertiaParameters2D parameter) { } + } + [System.FlagsAttribute] + public enum ManipulationModes + { + None = 0, + TranslateX = 1, + TranslateY = 2, + Translate = 3, + Rotate = 4, + Scale = 8, + All = 15, + } + public partial class ManipulationPivot + { + public ManipulationPivot() { } + public ManipulationPivot(System.Windows.Point center, double radius) { } + public System.Windows.Point Center { get { throw null; } set { } } + public double Radius { get { throw null; } set { } } + } + public sealed partial class ManipulationStartedEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationStartedEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } } + public System.Windows.Point ManipulationOrigin { get { throw null; } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + public bool Cancel() { throw null; } + public void Complete() { } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public sealed partial class ManipulationStartingEventArgs : System.Windows.Input.InputEventArgs + { + internal ManipulationStartingEventArgs() : base(default(System.Windows.Input.InputDevice), default(int)) { } + public bool IsSingleTouchEnabled { get { throw null; } set { } } + public System.Windows.IInputElement ManipulationContainer { get { throw null; } set { } } + public System.Collections.Generic.IEnumerable Manipulators { get { throw null; } } + public System.Windows.Input.ManipulationModes Mode { get { throw null; } set { } } + public System.Windows.Input.ManipulationPivot Pivot { get { throw null; } set { } } + public bool Cancel() { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + [System.ComponentModel.BrowsableAttribute(false)] + public void SetManipulationParameter(System.Windows.Input.Manipulations.ManipulationParameters2D parameter) { } + } + public partial class ManipulationVelocities + { + public ManipulationVelocities(System.Windows.Vector linearVelocity, double angularVelocity, System.Windows.Vector expansionVelocity) { } + public double AngularVelocity { get { throw null; } } + public System.Windows.Vector ExpansionVelocity { get { throw null; } } + public System.Windows.Vector LinearVelocity { get { throw null; } } + } + public static partial class MediaCommands + { + public static System.Windows.Input.RoutedUICommand BoostBass { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ChannelDown { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ChannelUp { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseBass { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseMicrophoneVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseTreble { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand FastForward { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseBass { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseMicrophoneVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseTreble { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MuteMicrophoneVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MuteVolume { get { throw null; } } + public static System.Windows.Input.RoutedUICommand NextTrack { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Pause { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Play { get { throw null; } } + public static System.Windows.Input.RoutedUICommand PreviousTrack { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Record { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Rewind { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Select { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Stop { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleMicrophoneOnOff { get { throw null; } } + public static System.Windows.Input.RoutedUICommand TogglePlayPause { get { throw null; } } + } + public static partial class Mouse + { + public static readonly System.Windows.RoutedEvent GotMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent LostMouseCaptureEvent; + public static readonly System.Windows.RoutedEvent MouseDownEvent; + public static readonly System.Windows.RoutedEvent MouseEnterEvent; + public static readonly System.Windows.RoutedEvent MouseLeaveEvent; + public static readonly System.Windows.RoutedEvent MouseMoveEvent; + public static readonly System.Windows.RoutedEvent MouseUpEvent; + public const int MouseWheelDeltaForOneLine = 120; + public static readonly System.Windows.RoutedEvent MouseWheelEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseDownEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseDownOutsideCapturedElementEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseUpEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseUpOutsideCapturedElementEvent; + public static readonly System.Windows.RoutedEvent PreviewMouseWheelEvent; + public static readonly System.Windows.RoutedEvent QueryCursorEvent; + public static System.Windows.IInputElement Captured { get { throw null; } } + public static System.Windows.IInputElement DirectlyOver { get { throw null; } } + public static System.Windows.Input.MouseButtonState LeftButton { get { throw null; } } + public static System.Windows.Input.MouseButtonState MiddleButton { get { throw null; } } + public static System.Windows.Input.Cursor OverrideCursor { get { throw null; } set { } } + public static System.Windows.Input.MouseDevice PrimaryDevice { get { throw null; } } + public static System.Windows.Input.MouseButtonState RightButton { get { throw null; } } + public static System.Windows.Input.MouseButtonState XButton1 { get { throw null; } } + public static System.Windows.Input.MouseButtonState XButton2 { get { throw null; } } + public static void AddGotMouseCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddLostMouseCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddMouseDownHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddMouseEnterHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddMouseLeaveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddMouseMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddMouseUpHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddMouseWheelHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseWheelEventHandler handler) { } + public static void AddPreviewMouseDownHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddPreviewMouseDownOutsideCapturedElementHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddPreviewMouseMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void AddPreviewMouseUpHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddPreviewMouseUpOutsideCapturedElementHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void AddPreviewMouseWheelHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseWheelEventHandler handler) { } + public static void AddQueryCursorHandler(System.Windows.DependencyObject element, System.Windows.Input.QueryCursorEventHandler handler) { } + public static bool Capture(System.Windows.IInputElement element) { throw null; } + public static bool Capture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { throw null; } + public static int GetIntermediatePoints(System.Windows.IInputElement relativeTo, System.Windows.Point[] points) { throw null; } + public static System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + public static void RemoveGotMouseCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemoveLostMouseCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemoveMouseDownHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemoveMouseEnterHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemoveMouseLeaveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemoveMouseMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemoveMouseUpHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemoveMouseWheelHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseWheelEventHandler handler) { } + public static void RemovePreviewMouseDownHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemovePreviewMouseDownOutsideCapturedElementHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemovePreviewMouseMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseEventHandler handler) { } + public static void RemovePreviewMouseUpHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemovePreviewMouseUpOutsideCapturedElementHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseButtonEventHandler handler) { } + public static void RemovePreviewMouseWheelHandler(System.Windows.DependencyObject element, System.Windows.Input.MouseWheelEventHandler handler) { } + public static void RemoveQueryCursorHandler(System.Windows.DependencyObject element, System.Windows.Input.QueryCursorEventHandler handler) { } + public static bool SetCursor(System.Windows.Input.Cursor cursor) { throw null; } + public static void Synchronize() { } + public static void UpdateCursor() { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.MouseActionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Input.MouseActionValueSerializer))] + public enum MouseAction : byte + { + None = (byte)0, + LeftClick = (byte)1, + RightClick = (byte)2, + MiddleClick = (byte)3, + WheelClick = (byte)4, + LeftDoubleClick = (byte)5, + RightDoubleClick = (byte)6, + MiddleDoubleClick = (byte)7, + } + public partial class MouseActionConverter : System.ComponentModel.TypeConverter + { + public MouseActionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class MouseActionValueSerializer : System.Windows.Markup.ValueSerializer + { + public MouseActionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class MouseBinding : System.Windows.Input.InputBinding + { + public static readonly System.Windows.DependencyProperty MouseActionProperty; + public MouseBinding() { } + public MouseBinding(System.Windows.Input.ICommand command, System.Windows.Input.MouseGesture gesture) { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.MouseGestureConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Input.MouseGestureValueSerializer))] + public override System.Windows.Input.InputGesture Gesture { get { throw null; } set { } } + public System.Windows.Input.MouseAction MouseAction { get { throw null; } set { } } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + } + public enum MouseButton + { + Left = 0, + Middle = 1, + Right = 2, + XButton1 = 3, + XButton2 = 4, + } + public partial class MouseButtonEventArgs : System.Windows.Input.MouseEventArgs + { + public MouseButtonEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp, System.Windows.Input.MouseButton button) : base(default(System.Windows.Input.MouseDevice), default(int)) { } + public MouseButtonEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp, System.Windows.Input.MouseButton button, System.Windows.Input.StylusDevice stylusDevice) : base(default(System.Windows.Input.MouseDevice), default(int)) { } + public System.Windows.Input.MouseButtonState ButtonState { get { throw null; } } + public System.Windows.Input.MouseButton ChangedButton { get { throw null; } } + public int ClickCount { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void MouseButtonEventHandler(object sender, System.Windows.Input.MouseButtonEventArgs e); + public enum MouseButtonState + { + Released = 0, + Pressed = 1, + } + public abstract partial class MouseDevice : System.Windows.Input.InputDevice + { + internal MouseDevice() { } + public override System.Windows.PresentationSource ActiveSource { get { throw null; } } + public System.Windows.IInputElement Captured { get { throw null; } } + public System.Windows.IInputElement DirectlyOver { get { throw null; } } + public System.Windows.Input.MouseButtonState LeftButton { get { throw null; } } + public System.Windows.Input.MouseButtonState MiddleButton { get { throw null; } } + public System.Windows.Input.Cursor OverrideCursor { get { throw null; } set { } } + public System.Windows.Input.MouseButtonState RightButton { get { throw null; } } + public override System.Windows.IInputElement Target { get { throw null; } } + public System.Windows.Input.MouseButtonState XButton1 { get { throw null; } } + public System.Windows.Input.MouseButtonState XButton2 { get { throw null; } } + public bool Capture(System.Windows.IInputElement element) { throw null; } + public bool Capture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { throw null; } + protected System.Windows.Input.MouseButtonState GetButtonState(System.Windows.Input.MouseButton mouseButton) { throw null; } + protected System.Windows.Point GetClientPosition() { throw null; } + protected System.Windows.Point GetClientPosition(System.Windows.PresentationSource presentationSource) { throw null; } + public System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + protected System.Windows.Point GetScreenPosition() { throw null; } + public bool SetCursor(System.Windows.Input.Cursor cursor) { throw null; } + public void Synchronize() { } + public void UpdateCursor() { } + } + public partial class MouseEventArgs : System.Windows.Input.InputEventArgs + { + public MouseEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public MouseEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp, System.Windows.Input.StylusDevice stylusDevice) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.MouseButtonState LeftButton { get { throw null; } } + public System.Windows.Input.MouseButtonState MiddleButton { get { throw null; } } + public System.Windows.Input.MouseDevice MouseDevice { get { throw null; } } + public System.Windows.Input.MouseButtonState RightButton { get { throw null; } } + public System.Windows.Input.StylusDevice StylusDevice { get { throw null; } } + public System.Windows.Input.MouseButtonState XButton1 { get { throw null; } } + public System.Windows.Input.MouseButtonState XButton2 { get { throw null; } } + public System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void MouseEventHandler(object sender, System.Windows.Input.MouseEventArgs e); + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Input.MouseGestureConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Input.MouseGestureValueSerializer))] + public partial class MouseGesture : System.Windows.Input.InputGesture + { + public MouseGesture() { } + public MouseGesture(System.Windows.Input.MouseAction mouseAction) { } + public MouseGesture(System.Windows.Input.MouseAction mouseAction, System.Windows.Input.ModifierKeys modifiers) { } + public System.Windows.Input.ModifierKeys Modifiers { get { throw null; } set { } } + public System.Windows.Input.MouseAction MouseAction { get { throw null; } set { } } + public override bool Matches(object targetElement, System.Windows.Input.InputEventArgs inputEventArgs) { throw null; } + } + public partial class MouseGestureConverter : System.ComponentModel.TypeConverter + { + public MouseGestureConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class MouseGestureValueSerializer : System.Windows.Markup.ValueSerializer + { + public MouseGestureValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class MouseWheelEventArgs : System.Windows.Input.MouseEventArgs + { + public MouseWheelEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp, int delta) : base(default(System.Windows.Input.MouseDevice), default(int)) { } + public int Delta { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void MouseWheelEventHandler(object sender, System.Windows.Input.MouseWheelEventArgs e); + public static partial class NavigationCommands + { + public static System.Windows.Input.RoutedUICommand BrowseBack { get { throw null; } } + public static System.Windows.Input.RoutedUICommand BrowseForward { get { throw null; } } + public static System.Windows.Input.RoutedUICommand BrowseHome { get { throw null; } } + public static System.Windows.Input.RoutedUICommand BrowseStop { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseZoom { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Favorites { get { throw null; } } + public static System.Windows.Input.RoutedUICommand FirstPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand GoToPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseZoom { get { throw null; } } + public static System.Windows.Input.RoutedUICommand LastPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand NavigateJournal { get { throw null; } } + public static System.Windows.Input.RoutedUICommand NextPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand PreviousPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Refresh { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Search { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Zoom { get { throw null; } } + } + public partial class NotifyInputEventArgs : System.EventArgs + { + internal NotifyInputEventArgs() { } + public System.Windows.Input.InputManager InputManager { get { throw null; } } + public System.Windows.Input.StagingAreaInputItem StagingItem { get { throw null; } } + } + public delegate void NotifyInputEventHandler(object sender, System.Windows.Input.NotifyInputEventArgs e); + public sealed partial class PreProcessInputEventArgs : System.Windows.Input.ProcessInputEventArgs + { + internal PreProcessInputEventArgs() { } + public bool Canceled { get { throw null; } } + public void Cancel() { } + } + public delegate void PreProcessInputEventHandler(object sender, System.Windows.Input.PreProcessInputEventArgs e); + public partial class ProcessInputEventArgs : System.Windows.Input.NotifyInputEventArgs + { + internal ProcessInputEventArgs() { } + public System.Windows.Input.StagingAreaInputItem PeekInput() { throw null; } + public System.Windows.Input.StagingAreaInputItem PopInput() { throw null; } + public System.Windows.Input.StagingAreaInputItem PushInput(System.Windows.Input.InputEventArgs input, System.Windows.Input.StagingAreaInputItem promote) { throw null; } + public System.Windows.Input.StagingAreaInputItem PushInput(System.Windows.Input.StagingAreaInputItem input) { throw null; } + } + public delegate void ProcessInputEventHandler(object sender, System.Windows.Input.ProcessInputEventArgs e); + public partial class QueryCursorEventArgs : System.Windows.Input.MouseEventArgs + { + public QueryCursorEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp) : base(default(System.Windows.Input.MouseDevice), default(int)) { } + public QueryCursorEventArgs(System.Windows.Input.MouseDevice mouse, int timestamp, System.Windows.Input.StylusDevice stylusDevice) : base(default(System.Windows.Input.MouseDevice), default(int)) { } + public System.Windows.Input.Cursor Cursor { get { throw null; } set { } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void QueryCursorEventHandler(object sender, System.Windows.Input.QueryCursorEventArgs e); + public enum RestoreFocusMode + { + Auto = 0, + None = 1, + } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.Markup.ValueSerializerAttribute("System.Windows.Input.CommandValueSerializer, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public partial class RoutedCommand : System.Windows.Input.ICommand + { + public RoutedCommand() { } + public RoutedCommand(string name, System.Type ownerType) { } + public RoutedCommand(string name, System.Type ownerType, System.Windows.Input.InputGestureCollection inputGestures) { } + public System.Windows.Input.InputGestureCollection InputGestures { get { throw null; } } + public string Name { get { throw null; } } + public System.Type OwnerType { get { throw null; } } + public event System.EventHandler CanExecuteChanged { add { } remove { } } + public bool CanExecute(object parameter, System.Windows.IInputElement target) { throw null; } + public void Execute(object parameter, System.Windows.IInputElement target) { } + bool System.Windows.Input.ICommand.CanExecute(object parameter) { throw null; } + void System.Windows.Input.ICommand.Execute(object parameter) { } + } + [System.ComponentModel.TypeConverterAttribute("System.Windows.Input.CommandConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public partial class RoutedUICommand : System.Windows.Input.RoutedCommand + { + public RoutedUICommand() { } + public RoutedUICommand(string text, string name, System.Type ownerType) { } + public RoutedUICommand(string text, string name, System.Type ownerType, System.Windows.Input.InputGestureCollection inputGestures) { } + public string Text { get { throw null; } set { } } + } + public enum SpeechMode + { + Dictation = 0, + Command = 1, + Indeterminate = 2, + } + public partial class StagingAreaInputItem + { + internal StagingAreaInputItem() { } + public System.Windows.Input.InputEventArgs Input { get { throw null; } } + public object GetData(object key) { throw null; } + public void SetData(object key, object value) { } + } + public static partial class Stylus + { + public static readonly System.Windows.RoutedEvent GotStylusCaptureEvent; + public static readonly System.Windows.DependencyProperty IsFlicksEnabledProperty; + public static readonly System.Windows.DependencyProperty IsPressAndHoldEnabledProperty; + public static readonly System.Windows.DependencyProperty IsTapFeedbackEnabledProperty; + public static readonly System.Windows.DependencyProperty IsTouchFeedbackEnabledProperty; + public static readonly System.Windows.RoutedEvent LostStylusCaptureEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusDownEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusInRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusMoveEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent PreviewStylusUpEvent; + public static readonly System.Windows.RoutedEvent StylusButtonDownEvent; + public static readonly System.Windows.RoutedEvent StylusButtonUpEvent; + public static readonly System.Windows.RoutedEvent StylusDownEvent; + public static readonly System.Windows.RoutedEvent StylusEnterEvent; + public static readonly System.Windows.RoutedEvent StylusInAirMoveEvent; + public static readonly System.Windows.RoutedEvent StylusInRangeEvent; + public static readonly System.Windows.RoutedEvent StylusLeaveEvent; + public static readonly System.Windows.RoutedEvent StylusMoveEvent; + public static readonly System.Windows.RoutedEvent StylusOutOfRangeEvent; + public static readonly System.Windows.RoutedEvent StylusSystemGestureEvent; + public static readonly System.Windows.RoutedEvent StylusUpEvent; + public static System.Windows.IInputElement Captured { get { throw null; } } + public static System.Windows.Input.StylusDevice CurrentStylusDevice { get { throw null; } } + public static System.Windows.IInputElement DirectlyOver { get { throw null; } } + public static void AddGotStylusCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddLostStylusCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddPreviewStylusButtonDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void AddPreviewStylusButtonUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void AddPreviewStylusDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusDownEventHandler handler) { } + public static void AddPreviewStylusInAirMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddPreviewStylusInRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddPreviewStylusMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddPreviewStylusOutOfRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddPreviewStylusSystemGestureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusSystemGestureEventHandler handler) { } + public static void AddPreviewStylusUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusButtonDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void AddStylusButtonUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void AddStylusDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusDownEventHandler handler) { } + public static void AddStylusEnterHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusInAirMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusInRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusLeaveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusOutOfRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void AddStylusSystemGestureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusSystemGestureEventHandler handler) { } + public static void AddStylusUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static bool Capture(System.Windows.IInputElement element) { throw null; } + public static bool Capture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsFlicksEnabled(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsPressAndHoldEnabled(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsTapFeedbackEnabled(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsTouchFeedbackEnabled(System.Windows.DependencyObject element) { throw null; } + public static void RemoveGotStylusCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveLostStylusCaptureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemovePreviewStylusButtonDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void RemovePreviewStylusButtonUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void RemovePreviewStylusDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusDownEventHandler handler) { } + public static void RemovePreviewStylusInAirMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemovePreviewStylusInRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemovePreviewStylusMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemovePreviewStylusOutOfRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemovePreviewStylusSystemGestureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusSystemGestureEventHandler handler) { } + public static void RemovePreviewStylusUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusButtonDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void RemoveStylusButtonUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusButtonEventHandler handler) { } + public static void RemoveStylusDownHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusDownEventHandler handler) { } + public static void RemoveStylusEnterHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusInAirMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusInRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusLeaveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusMoveHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusOutOfRangeHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void RemoveStylusSystemGestureHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusSystemGestureEventHandler handler) { } + public static void RemoveStylusUpHandler(System.Windows.DependencyObject element, System.Windows.Input.StylusEventHandler handler) { } + public static void SetIsFlicksEnabled(System.Windows.DependencyObject element, bool enabled) { } + public static void SetIsPressAndHoldEnabled(System.Windows.DependencyObject element, bool enabled) { } + public static void SetIsTapFeedbackEnabled(System.Windows.DependencyObject element, bool enabled) { } + public static void SetIsTouchFeedbackEnabled(System.Windows.DependencyObject element, bool enabled) { } + public static void Synchronize() { } + } + public partial class StylusButton + { + internal StylusButton() { } + public System.Guid Guid { get { throw null; } } + public string Name { get { throw null; } } + public System.Windows.Input.StylusButtonState StylusButtonState { get { throw null; } } + public System.Windows.Input.StylusDevice StylusDevice { get { throw null; } } + public override string ToString() { throw null; } + } + public partial class StylusButtonCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal StylusButtonCollection() : base(default(System.Collections.Generic.IList)) { } + public System.Windows.Input.StylusButton GetStylusButtonByGuid(System.Guid guid) { throw null; } + } + public partial class StylusButtonEventArgs : System.Windows.Input.StylusEventArgs + { + public StylusButtonEventArgs(System.Windows.Input.StylusDevice stylusDevice, int timestamp, System.Windows.Input.StylusButton button) : base(default(System.Windows.Input.StylusDevice), default(int)) { } + public System.Windows.Input.StylusButton StylusButton { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void StylusButtonEventHandler(object sender, System.Windows.Input.StylusButtonEventArgs e); + public enum StylusButtonState + { + Up = 0, + Down = 1, + } + public sealed partial class StylusDevice : System.Windows.Input.InputDevice + { + internal StylusDevice() { } + public override System.Windows.PresentationSource ActiveSource { get { throw null; } } + public System.Windows.IInputElement Captured { get { throw null; } } + public System.Windows.IInputElement DirectlyOver { get { throw null; } } + public int Id { get { throw null; } } + public bool InAir { get { throw null; } } + public bool InRange { get { throw null; } } + public bool Inverted { get { throw null; } } + public bool IsValid { get { throw null; } } + public string Name { get { throw null; } } + public System.Windows.Input.StylusButtonCollection StylusButtons { get { throw null; } } + public System.Windows.Input.TabletDevice TabletDevice { get { throw null; } } + public override System.Windows.IInputElement Target { get { throw null; } } + public bool Capture(System.Windows.IInputElement element) { throw null; } + public bool Capture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { throw null; } + public System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.StylusPointCollection GetStylusPoints(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.StylusPointCollection GetStylusPoints(System.Windows.IInputElement relativeTo, System.Windows.Input.StylusPointDescription subsetToReformatTo) { throw null; } + public void Synchronize() { } + public override string ToString() { throw null; } + } + public partial class StylusDeviceCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal StylusDeviceCollection() : base(default(System.Collections.Generic.IList)) { } + } + public partial class StylusDownEventArgs : System.Windows.Input.StylusEventArgs + { + public StylusDownEventArgs(System.Windows.Input.StylusDevice stylusDevice, int timestamp) : base(default(System.Windows.Input.StylusDevice), default(int)) { } + public int TapCount { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void StylusDownEventHandler(object sender, System.Windows.Input.StylusDownEventArgs e); + public partial class StylusEventArgs : System.Windows.Input.InputEventArgs + { + public StylusEventArgs(System.Windows.Input.StylusDevice stylus, int timestamp) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public bool InAir { get { throw null; } } + public bool Inverted { get { throw null; } } + public System.Windows.Input.StylusDevice StylusDevice { get { throw null; } } + public System.Windows.Point GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.StylusPointCollection GetStylusPoints(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.StylusPointCollection GetStylusPoints(System.Windows.IInputElement relativeTo, System.Windows.Input.StylusPointDescription subsetToReformatTo) { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void StylusEventHandler(object sender, System.Windows.Input.StylusEventArgs e); + public partial struct StylusPoint : System.IEquatable + { + public static readonly double MaxXY; + public static readonly double MinXY; + public StylusPoint(double x, double y) { throw null; } + public StylusPoint(double x, double y, float pressureFactor) { throw null; } + public StylusPoint(double x, double y, float pressureFactor, System.Windows.Input.StylusPointDescription stylusPointDescription, int[] additionalValues) { throw null; } + public System.Windows.Input.StylusPointDescription Description { get { throw null; } } + public float PressureFactor { get { throw null; } set { } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Input.StylusPoint value) { throw null; } + public static bool Equals(System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2) { throw null; } + public override int GetHashCode() { throw null; } + public int GetPropertyValue(System.Windows.Input.StylusPointProperty stylusPointProperty) { throw null; } + public bool HasProperty(System.Windows.Input.StylusPointProperty stylusPointProperty) { throw null; } + public static bool operator ==(System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2) { throw null; } + public static explicit operator System.Windows.Point(System.Windows.Input.StylusPoint stylusPoint) { throw null; } + public static bool operator !=(System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2) { throw null; } + public void SetPropertyValue(System.Windows.Input.StylusPointProperty stylusPointProperty, int value) { } + public System.Windows.Point ToPoint() { throw null; } + } + public partial class StylusPointCollection : System.Collections.ObjectModel.Collection + { + public StylusPointCollection() { } + public StylusPointCollection(System.Collections.Generic.IEnumerable stylusPoints) { } + public StylusPointCollection(System.Collections.Generic.IEnumerable points) { } + public StylusPointCollection(int initialCapacity) { } + public StylusPointCollection(System.Windows.Input.StylusPointDescription stylusPointDescription) { } + public StylusPointCollection(System.Windows.Input.StylusPointDescription stylusPointDescription, int initialCapacity) { } + public System.Windows.Input.StylusPointDescription Description { get { throw null; } } + public event System.EventHandler Changed { add { } remove { } } + public void Add(System.Windows.Input.StylusPointCollection stylusPoints) { } + protected sealed override void ClearItems() { } + public System.Windows.Input.StylusPointCollection Clone() { throw null; } + protected sealed override void InsertItem(int index, System.Windows.Input.StylusPoint stylusPoint) { } + protected virtual void OnChanged(System.EventArgs e) { } + public static explicit operator System.Windows.Point[](System.Windows.Input.StylusPointCollection stylusPoints) { throw null; } + public System.Windows.Input.StylusPointCollection Reformat(System.Windows.Input.StylusPointDescription subsetToReformatTo) { throw null; } + protected sealed override void RemoveItem(int index) { } + protected sealed override void SetItem(int index, System.Windows.Input.StylusPoint stylusPoint) { } + public int[] ToHiMetricArray() { throw null; } + } + public partial class StylusPointDescription + { + public StylusPointDescription() { } + public StylusPointDescription(System.Collections.Generic.IEnumerable stylusPointPropertyInfos) { } + public int PropertyCount { get { throw null; } } + public static bool AreCompatible(System.Windows.Input.StylusPointDescription stylusPointDescription1, System.Windows.Input.StylusPointDescription stylusPointDescription2) { throw null; } + public static System.Windows.Input.StylusPointDescription GetCommonDescription(System.Windows.Input.StylusPointDescription stylusPointDescription, System.Windows.Input.StylusPointDescription stylusPointDescriptionPreserveInfo) { throw null; } + public System.Windows.Input.StylusPointPropertyInfo GetPropertyInfo(System.Windows.Input.StylusPointProperty stylusPointProperty) { throw null; } + public System.Collections.ObjectModel.ReadOnlyCollection GetStylusPointProperties() { throw null; } + public bool HasProperty(System.Windows.Input.StylusPointProperty stylusPointProperty) { throw null; } + public bool IsSubsetOf(System.Windows.Input.StylusPointDescription stylusPointDescriptionSuperset) { throw null; } + } + public static partial class StylusPointProperties + { + public static readonly System.Windows.Input.StylusPointProperty AltitudeOrientation; + public static readonly System.Windows.Input.StylusPointProperty AzimuthOrientation; + public static readonly System.Windows.Input.StylusPointProperty BarrelButton; + public static readonly System.Windows.Input.StylusPointProperty ButtonPressure; + public static readonly System.Windows.Input.StylusPointProperty Height; + public static readonly System.Windows.Input.StylusPointProperty NormalPressure; + public static readonly System.Windows.Input.StylusPointProperty PacketStatus; + public static readonly System.Windows.Input.StylusPointProperty PitchRotation; + public static readonly System.Windows.Input.StylusPointProperty RollRotation; + public static readonly System.Windows.Input.StylusPointProperty SecondaryTipButton; + public static readonly System.Windows.Input.StylusPointProperty SerialNumber; + public static readonly System.Windows.Input.StylusPointProperty SystemTouch; + public static readonly System.Windows.Input.StylusPointProperty TangentPressure; + public static readonly System.Windows.Input.StylusPointProperty TipButton; + public static readonly System.Windows.Input.StylusPointProperty TwistOrientation; + public static readonly System.Windows.Input.StylusPointProperty Width; + public static readonly System.Windows.Input.StylusPointProperty X; + public static readonly System.Windows.Input.StylusPointProperty XTiltOrientation; + public static readonly System.Windows.Input.StylusPointProperty Y; + public static readonly System.Windows.Input.StylusPointProperty YawRotation; + public static readonly System.Windows.Input.StylusPointProperty YTiltOrientation; + public static readonly System.Windows.Input.StylusPointProperty Z; + } + public partial class StylusPointProperty + { + public StylusPointProperty(System.Guid identifier, bool isButton) { } + protected StylusPointProperty(System.Windows.Input.StylusPointProperty stylusPointProperty) { } + public System.Guid Id { get { throw null; } } + public bool IsButton { get { throw null; } } + public override string ToString() { throw null; } + } + public partial class StylusPointPropertyInfo : System.Windows.Input.StylusPointProperty + { + public StylusPointPropertyInfo(System.Windows.Input.StylusPointProperty stylusPointProperty) : base(default(System.Guid), default(bool)) { } + public StylusPointPropertyInfo(System.Windows.Input.StylusPointProperty stylusPointProperty, int minimum, int maximum, System.Windows.Input.StylusPointPropertyUnit unit, float resolution) : base(default(System.Guid), default(bool)) { } + public int Maximum { get { throw null; } } + public int Minimum { get { throw null; } } + public float Resolution { get { throw null; } } + public System.Windows.Input.StylusPointPropertyUnit Unit { get { throw null; } } + } + public enum StylusPointPropertyUnit + { + None = 0, + Inches = 1, + Centimeters = 2, + Degrees = 3, + Radians = 4, + Seconds = 5, + Pounds = 6, + Grams = 7, + } + public partial class StylusSystemGestureEventArgs : System.Windows.Input.StylusEventArgs + { + public StylusSystemGestureEventArgs(System.Windows.Input.StylusDevice stylusDevice, int timestamp, System.Windows.Input.SystemGesture systemGesture) : base(default(System.Windows.Input.StylusDevice), default(int)) { } + public System.Windows.Input.SystemGesture SystemGesture { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void StylusSystemGestureEventHandler(object sender, System.Windows.Input.StylusSystemGestureEventArgs e); + public enum SystemGesture + { + None = 0, + Tap = 16, + RightTap = 18, + Drag = 19, + RightDrag = 20, + HoldEnter = 21, + HoldLeave = 22, + HoverEnter = 23, + HoverLeave = 24, + Flick = 31, + TwoFingerTap = 4352, + } + public static partial class Tablet + { + public static System.Windows.Input.TabletDevice CurrentTabletDevice { get { throw null; } } + public static System.Windows.Input.TabletDeviceCollection TabletDevices { get { throw null; } } + } + public sealed partial class TabletDevice : System.Windows.Input.InputDevice + { + internal TabletDevice() { } + public override System.Windows.PresentationSource ActiveSource { get { throw null; } } + public int Id { get { throw null; } } + public string Name { get { throw null; } } + public string ProductId { get { throw null; } } + public System.Windows.Input.StylusDeviceCollection StylusDevices { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection SupportedStylusPointProperties { get { throw null; } } + public System.Windows.Input.TabletHardwareCapabilities TabletHardwareCapabilities { get { throw null; } } + public override System.Windows.IInputElement Target { get { throw null; } } + public System.Windows.Input.TabletDeviceType Type { get { throw null; } } + public override string ToString() { throw null; } + } + public partial class TabletDeviceCollection : System.Collections.ICollection, System.Collections.IEnumerable + { + public TabletDeviceCollection() { } + public int Count { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Input.TabletDevice this[int index] { get { throw null; } } + public object SyncRoot { get { throw null; } } + public void CopyTo(System.Windows.Input.TabletDevice[] array, int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public enum TabletDeviceType + { + Stylus = 0, + Touch = 1, + } + [System.FlagsAttribute] + public enum TabletHardwareCapabilities + { + None = 0, + Integrated = 1, + StylusMustTouch = 2, + HardProximity = 4, + StylusHasPhysicalIds = 8, + SupportsPressure = 1073741824, + } + public partial class TextComposition : System.Windows.Threading.DispatcherObject + { + public TextComposition(System.Windows.Input.InputManager inputManager, System.Windows.IInputElement source, string resultText) { } + public TextComposition(System.Windows.Input.InputManager inputManager, System.Windows.IInputElement source, string resultText, System.Windows.Input.TextCompositionAutoComplete autoComplete) { } + public System.Windows.Input.TextCompositionAutoComplete AutoComplete { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public string CompositionText { get { throw null; } protected set { } } + [System.CLSCompliantAttribute(false)] + public string ControlText { get { throw null; } protected set { } } + [System.CLSCompliantAttribute(false)] + public string SystemCompositionText { get { throw null; } protected set { } } + [System.CLSCompliantAttribute(false)] + public string SystemText { get { throw null; } protected set { } } + [System.CLSCompliantAttribute(false)] + public string Text { get { throw null; } protected set { } } + public virtual void Complete() { } + } + public enum TextCompositionAutoComplete + { + Off = 0, + On = 1, + } + public partial class TextCompositionEventArgs : System.Windows.Input.InputEventArgs + { + public TextCompositionEventArgs(System.Windows.Input.InputDevice inputDevice, System.Windows.Input.TextComposition composition) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public string ControlText { get { throw null; } } + public string SystemText { get { throw null; } } + public string Text { get { throw null; } } + public System.Windows.Input.TextComposition TextComposition { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void TextCompositionEventHandler(object sender, System.Windows.Input.TextCompositionEventArgs e); + public sealed partial class TextCompositionManager : System.Windows.Threading.DispatcherObject + { + internal TextCompositionManager() { } + public static readonly System.Windows.RoutedEvent PreviewTextInputEvent; + public static readonly System.Windows.RoutedEvent PreviewTextInputStartEvent; + public static readonly System.Windows.RoutedEvent PreviewTextInputUpdateEvent; + public static readonly System.Windows.RoutedEvent TextInputEvent; + public static readonly System.Windows.RoutedEvent TextInputStartEvent; + public static readonly System.Windows.RoutedEvent TextInputUpdateEvent; + public static void AddPreviewTextInputHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void AddPreviewTextInputStartHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void AddPreviewTextInputUpdateHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void AddTextInputHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void AddTextInputStartHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void AddTextInputUpdateHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static bool CompleteComposition(System.Windows.Input.TextComposition composition) { throw null; } + public static void RemovePreviewTextInputHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void RemovePreviewTextInputStartHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void RemovePreviewTextInputUpdateHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void RemoveTextInputHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void RemoveTextInputStartHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static void RemoveTextInputUpdateHandler(System.Windows.DependencyObject element, System.Windows.Input.TextCompositionEventHandler handler) { } + public static bool StartComposition(System.Windows.Input.TextComposition composition) { throw null; } + public static bool UpdateComposition(System.Windows.Input.TextComposition composition) { throw null; } + } + public static partial class Touch + { + public static event System.Windows.Input.TouchFrameEventHandler FrameReported { add { } remove { } } + } + public enum TouchAction + { + Down = 0, + Move = 1, + Up = 2, + } + public abstract partial class TouchDevice : System.Windows.Input.InputDevice, System.Windows.Input.IManipulator + { + protected TouchDevice(int deviceId) { } + public sealed override System.Windows.PresentationSource ActiveSource { get { throw null; } } + public System.Windows.IInputElement Captured { get { throw null; } } + public System.Windows.Input.CaptureMode CaptureMode { get { throw null; } } + public System.Windows.IInputElement DirectlyOver { get { throw null; } } + public int Id { get { throw null; } } + public bool IsActive { get { throw null; } } + int System.Windows.Input.IManipulator.Id { get { throw null; } } + public sealed override System.Windows.IInputElement Target { get { throw null; } } + public event System.EventHandler Activated { add { } remove { } } + public event System.EventHandler Deactivated { add { } remove { } } + public event System.EventHandler Updated { add { } remove { } } + protected void Activate() { } + public bool Capture(System.Windows.IInputElement element) { throw null; } + public bool Capture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { throw null; } + protected void Deactivate() { } + public abstract System.Windows.Input.TouchPointCollection GetIntermediateTouchPoints(System.Windows.IInputElement relativeTo); + public abstract System.Windows.Input.TouchPoint GetTouchPoint(System.Windows.IInputElement relativeTo); + protected virtual void OnCapture(System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode) { } + protected virtual void OnManipulationEnded(bool cancel) { } + protected virtual void OnManipulationStarted() { } + protected bool ReportDown() { throw null; } + protected bool ReportMove() { throw null; } + protected bool ReportUp() { throw null; } + protected void SetActiveSource(System.Windows.PresentationSource activeSource) { } + public void Synchronize() { } + System.Windows.Point System.Windows.Input.IManipulator.GetPosition(System.Windows.IInputElement relativeTo) { throw null; } + void System.Windows.Input.IManipulator.ManipulationEnded(bool cancel) { } + } + public partial class TouchEventArgs : System.Windows.Input.InputEventArgs + { + public TouchEventArgs(System.Windows.Input.TouchDevice touchDevice, int timestamp) : base(default(System.Windows.Input.InputDevice), default(int)) { } + public System.Windows.Input.TouchDevice TouchDevice { get { throw null; } } + public System.Windows.Input.TouchPointCollection GetIntermediateTouchPoints(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.TouchPoint GetTouchPoint(System.Windows.IInputElement relativeTo) { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public sealed partial class TouchFrameEventArgs : System.EventArgs + { + internal TouchFrameEventArgs() { } + public int Timestamp { get { throw null; } } + public System.Windows.Input.TouchPoint GetPrimaryTouchPoint(System.Windows.IInputElement relativeTo) { throw null; } + public System.Windows.Input.TouchPointCollection GetTouchPoints(System.Windows.IInputElement relativeTo) { throw null; } + public void SuspendMousePromotionUntilTouchUp() { } + } + public delegate void TouchFrameEventHandler(object sender, System.Windows.Input.TouchFrameEventArgs e); + public partial class TouchPoint : System.IEquatable + { + public TouchPoint(System.Windows.Input.TouchDevice device, System.Windows.Point position, System.Windows.Rect bounds, System.Windows.Input.TouchAction action) { } + public System.Windows.Input.TouchAction Action { get { throw null; } } + public System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Point Position { get { throw null; } } + public System.Windows.Size Size { get { throw null; } } + public System.Windows.Input.TouchDevice TouchDevice { get { throw null; } } + bool System.IEquatable.Equals(System.Windows.Input.TouchPoint other) { throw null; } + } + public partial class TouchPointCollection : System.Collections.ObjectModel.Collection + { + public TouchPointCollection() { } + } +} +namespace System.Windows.Input.StylusPlugIns +{ + public partial class DynamicRenderer : System.Windows.Input.StylusPlugIns.StylusPlugIn + { + public DynamicRenderer() { } + public System.Windows.Ink.DrawingAttributes DrawingAttributes { get { throw null; } set { } } + public System.Windows.Media.Visual RootVisual { get { throw null; } } + protected System.Windows.Threading.Dispatcher GetDispatcher() { throw null; } + protected override void OnAdded() { } + protected virtual void OnDraw(System.Windows.Media.DrawingContext drawingContext, System.Windows.Input.StylusPointCollection stylusPoints, System.Windows.Media.Geometry geometry, System.Windows.Media.Brush fillBrush) { } + protected virtual void OnDrawingAttributesReplaced() { } + protected override void OnEnabledChanged() { } + protected override void OnIsActiveForInputChanged() { } + protected override void OnRemoved() { } + protected override void OnStylusDown(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected override void OnStylusDownProcessed(object callbackData, bool targetVerified) { } + protected override void OnStylusEnter(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput, bool confirmed) { } + protected override void OnStylusLeave(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput, bool confirmed) { } + protected override void OnStylusMove(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected override void OnStylusUp(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected override void OnStylusUpProcessed(object callbackData, bool targetVerified) { } + public virtual void Reset(System.Windows.Input.StylusDevice stylusDevice, System.Windows.Input.StylusPointCollection stylusPoints) { } + } + public partial class RawStylusInput + { + internal RawStylusInput() { } + public int StylusDeviceId { get { throw null; } } + public int TabletDeviceId { get { throw null; } } + public int Timestamp { get { throw null; } } + public System.Windows.Input.StylusPointCollection GetStylusPoints() { throw null; } + public void NotifyWhenProcessed(object callbackData) { } + public void SetStylusPoints(System.Windows.Input.StylusPointCollection stylusPoints) { } + } + public abstract partial class StylusPlugIn + { + protected StylusPlugIn() { } + public System.Windows.UIElement Element { get { throw null; } } + public System.Windows.Rect ElementBounds { get { throw null; } } + public bool Enabled { get { throw null; } set { } } + public bool IsActiveForInput { get { throw null; } } + protected virtual void OnAdded() { } + protected virtual void OnEnabledChanged() { } + protected virtual void OnIsActiveForInputChanged() { } + protected virtual void OnRemoved() { } + protected virtual void OnStylusDown(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected virtual void OnStylusDownProcessed(object callbackData, bool targetVerified) { } + protected virtual void OnStylusEnter(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput, bool confirmed) { } + protected virtual void OnStylusLeave(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput, bool confirmed) { } + protected virtual void OnStylusMove(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected virtual void OnStylusMoveProcessed(object callbackData, bool targetVerified) { } + protected virtual void OnStylusUp(System.Windows.Input.StylusPlugIns.RawStylusInput rawStylusInput) { } + protected virtual void OnStylusUpProcessed(object callbackData, bool targetVerified) { } + } + public sealed partial class StylusPlugInCollection : System.Collections.ObjectModel.Collection + { + internal StylusPlugInCollection() { } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.Windows.Input.StylusPlugIns.StylusPlugIn plugIn) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.Input.StylusPlugIns.StylusPlugIn plugIn) { } + } +} +namespace System.Windows.Input.StylusWisp +{ + public partial class WispTabletDeviceCollection : System.Windows.Input.TabletDeviceCollection + { + internal WispTabletDeviceCollection() { } + } +} +namespace System.Windows.Interop +{ + public static partial class CursorInteropHelper + { + public static System.Windows.Input.Cursor Create(System.Runtime.InteropServices.SafeHandle cursorHandle) { throw null; } + } + public partial class D3DImage : System.Windows.Media.ImageSource + { + public static readonly System.Windows.DependencyProperty IsFrontBufferAvailableProperty; + public D3DImage() { } + public D3DImage(double dpiX, double dpiY) { } + public sealed override double Height { get { throw null; } } + public bool IsFrontBufferAvailable { get { throw null; } } + public sealed override System.Windows.Media.ImageMetadata Metadata { get { throw null; } } + public int PixelHeight { get { throw null; } } + public int PixelWidth { get { throw null; } } + public sealed override double Width { get { throw null; } } + public event System.Windows.DependencyPropertyChangedEventHandler IsFrontBufferAvailableChanged { add { } remove { } } + public void AddDirtyRect(System.Windows.Int32Rect dirtyRect) { } + public new System.Windows.Interop.D3DImage Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Interop.D3DImage CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected internal virtual System.Windows.Media.Imaging.BitmapSource CopyBackBuffer() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + ~D3DImage() { } + protected sealed override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void Lock() { } + public void SetBackBuffer(System.Windows.Interop.D3DResourceType backBufferType, System.IntPtr backBuffer) { } + public void SetBackBuffer(System.Windows.Interop.D3DResourceType backBufferType, System.IntPtr backBuffer, bool enableSoftwareFallback) { } + public bool TryLock(System.Windows.Duration timeout) { throw null; } + public void Unlock() { } + } + public enum D3DResourceType + { + IDirect3DSurface9 = 0, + } + public partial class HwndSource : System.Windows.PresentationSource, System.IDisposable, System.Windows.Interop.IKeyboardInputSink, System.Windows.Interop.IWin32Window + { + public HwndSource(int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, System.IntPtr parent) { } + public HwndSource(int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, System.IntPtr parent, bool adjustSizingForNonClientArea) { } + public HwndSource(int classStyle, int style, int exStyle, int x, int y, string name, System.IntPtr parent) { } + public HwndSource(System.Windows.Interop.HwndSourceParameters parameters) { } + public bool AcquireHwndFocusInMenuMode { get { throw null; } } + public System.Collections.Generic.IEnumerable ChildKeyboardInputSinks { get { throw null; } } + public new System.Windows.Interop.HwndTarget CompositionTarget { get { throw null; } } + public static bool DefaultAcquireHwndFocusInMenuMode { get { throw null; } set { } } + public System.IntPtr Handle { get { throw null; } } + public override bool IsDisposed { get { throw null; } } + protected System.Windows.Interop.IKeyboardInputSite KeyboardInputSiteCore { get { throw null; } set { } } + public System.Windows.Input.RestoreFocusMode RestoreFocusMode { get { throw null; } } + public override System.Windows.Media.Visual RootVisual { get { throw null; } set { } } + public System.Windows.SizeToContent SizeToContent { get { throw null; } set { } } + System.Windows.Interop.IKeyboardInputSite System.Windows.Interop.IKeyboardInputSink.KeyboardInputSite { get { throw null; } set { } } + public bool UsesPerPixelOpacity { get { throw null; } } + public event System.Windows.AutoResizedEventHandler AutoResized { add { } remove { } } + public event System.EventHandler Disposed { add { } remove { } } + public event System.Windows.HwndDpiChangedEventHandler DpiChanged { add { } remove { } } + public event System.EventHandler SizeToContentChanged { add { } remove { } } + public void AddHook(System.Windows.Interop.HwndSourceHook hook) { } + public System.Runtime.InteropServices.HandleRef CreateHandleRef() { throw null; } + public void Dispose() { } + public static System.Windows.Interop.HwndSource FromHwnd(System.IntPtr hwnd) { throw null; } + protected override System.Windows.Media.CompositionTarget GetCompositionTargetCore() { throw null; } + protected virtual bool HasFocusWithinCore() { throw null; } + protected virtual void OnDpiChanged(System.Windows.HwndDpiChangedEventArgs e) { } + protected virtual bool OnMnemonicCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected System.Windows.Interop.IKeyboardInputSite RegisterKeyboardInputSinkCore(System.Windows.Interop.IKeyboardInputSink sink) { throw null; } + public void RemoveHook(System.Windows.Interop.HwndSourceHook hook) { } + bool System.Windows.Interop.IKeyboardInputSink.HasFocusWithin() { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.OnMnemonic(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + System.Windows.Interop.IKeyboardInputSite System.Windows.Interop.IKeyboardInputSink.RegisterKeyboardInputSink(System.Windows.Interop.IKeyboardInputSink sink) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TabInto(System.Windows.Input.TraversalRequest request) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TranslateAccelerator(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TranslateChar(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected virtual bool TabIntoCore(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual bool TranslateAcceleratorCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected virtual bool TranslateCharCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + } + public delegate System.IntPtr HwndSourceHook(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled); + public partial struct HwndSourceParameters + { + public HwndSourceParameters(string name) { throw null; } + public HwndSourceParameters(string name, int width, int height) { throw null; } + public bool AcquireHwndFocusInMenuMode { get { throw null; } set { } } + public bool AdjustSizingForNonClientArea { get { throw null; } set { } } + public int ExtendedWindowStyle { get { throw null; } set { } } + public bool HasAssignedSize { get { throw null; } } + public int Height { get { throw null; } set { } } + public System.Windows.Interop.HwndSourceHook HwndSourceHook { get { throw null; } set { } } + public System.IntPtr ParentWindow { get { throw null; } set { } } + public int PositionX { get { throw null; } set { } } + public int PositionY { get { throw null; } set { } } + public System.Windows.Input.RestoreFocusMode RestoreFocusMode { get { throw null; } set { } } + public bool TreatAncestorsAsNonClientArea { get { throw null; } set { } } + public bool TreatAsInputRoot { get { throw null; } set { } } + public bool UsesPerPixelOpacity { get { throw null; } set { } } + public bool UsesPerPixelTransparency { get { throw null; } set { } } + public int Width { get { throw null; } set { } } + public int WindowClassStyle { get { throw null; } set { } } + public string WindowName { get { throw null; } set { } } + public int WindowStyle { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Interop.HwndSourceParameters obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Interop.HwndSourceParameters a, System.Windows.Interop.HwndSourceParameters b) { throw null; } + public static bool operator !=(System.Windows.Interop.HwndSourceParameters a, System.Windows.Interop.HwndSourceParameters b) { throw null; } + public void SetPosition(int x, int y) { } + public void SetSize(int width, int height) { } + } + public partial class HwndTarget : System.Windows.Media.CompositionTarget + { + public HwndTarget(System.IntPtr hwnd) { } + public System.Windows.Media.Color BackgroundColor { get { throw null; } set { } } + public System.Windows.Interop.RenderMode RenderMode { get { throw null; } set { } } + public override System.Windows.Media.Visual RootVisual { set { } } + public override System.Windows.Media.Matrix TransformFromDevice { get { throw null; } } + public override System.Windows.Media.Matrix TransformToDevice { get { throw null; } } + public bool UsesPerPixelOpacity { get { throw null; } } + public override void Dispose() { } + } + public static partial class Imaging + { + public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSourceFromHBitmap(System.IntPtr bitmap, System.IntPtr palette, System.Windows.Int32Rect sourceRect, System.Windows.Media.Imaging.BitmapSizeOptions sizeOptions) { throw null; } + public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSourceFromHIcon(System.IntPtr icon, System.Windows.Int32Rect sourceRect, System.Windows.Media.Imaging.BitmapSizeOptions sizeOptions) { throw null; } + public static System.Windows.Media.Imaging.BitmapSource CreateBitmapSourceFromMemorySection(System.IntPtr section, int pixelWidth, int pixelHeight, System.Windows.Media.PixelFormat format, int stride, int offset) { throw null; } + } + public sealed partial class InteropBitmap : System.Windows.Media.Imaging.BitmapSource + { + internal InteropBitmap() { } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void Invalidate() { } + public void Invalidate(System.Windows.Int32Rect? dirtyRect) { } + } + public partial interface IWin32Window + { + System.IntPtr Handle { get; } + } + public enum RenderMode + { + Default = 0, + SoftwareOnly = 1, + } +} +namespace System.Windows.Markup +{ + public partial interface IAddChild + { + void AddChild(object value); + void AddText(string text); + } + internal interface IAddChildInternal : IAddChild + { + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.XmlLanguageConverter))] + public partial class XmlLanguage + { + internal XmlLanguage() { } + public static System.Windows.Markup.XmlLanguage Empty { get { throw null; } } + public string IetfLanguageTag { get { throw null; } } + public System.Globalization.CultureInfo GetEquivalentCulture() { throw null; } + public static System.Windows.Markup.XmlLanguage GetLanguage(string ietfLanguageTag) { throw null; } + public System.Globalization.CultureInfo GetSpecificCulture() { throw null; } + public override string ToString() { throw null; } + } + public partial class XmlLanguageConverter : System.ComponentModel.TypeConverter + { + public XmlLanguageConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } +} +namespace System.Windows.Media +{ + public enum AlignmentX + { + Left = 0, + Center = 1, + Right = 2, + } + public enum AlignmentY + { + Top = 0, + Center = 1, + Bottom = 2, + } + public sealed partial class ArcSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty IsLargeArcProperty; + public static readonly System.Windows.DependencyProperty PointProperty; + public static readonly System.Windows.DependencyProperty RotationAngleProperty; + public static readonly System.Windows.DependencyProperty SizeProperty; + public static readonly System.Windows.DependencyProperty SweepDirectionProperty; + public ArcSegment() { } + public ArcSegment(System.Windows.Point point, System.Windows.Size size, double rotationAngle, bool isLargeArc, System.Windows.Media.SweepDirection sweepDirection, bool isStroked) { } + public bool IsLargeArc { get { throw null; } set { } } + public System.Windows.Point Point { get { throw null; } set { } } + public double RotationAngle { get { throw null; } set { } } + public System.Windows.Size Size { get { throw null; } set { } } + public System.Windows.Media.SweepDirection SweepDirection { get { throw null; } set { } } + public new System.Windows.Media.ArcSegment Clone() { throw null; } + public new System.Windows.Media.ArcSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class BezierSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty Point1Property; + public static readonly System.Windows.DependencyProperty Point2Property; + public static readonly System.Windows.DependencyProperty Point3Property; + public BezierSegment() { } + public BezierSegment(System.Windows.Point point1, System.Windows.Point point2, System.Windows.Point point3, bool isStroked) { } + public System.Windows.Point Point1 { get { throw null; } set { } } + public System.Windows.Point Point2 { get { throw null; } set { } } + public System.Windows.Point Point3 { get { throw null; } set { } } + public new System.Windows.Media.BezierSegment Clone() { throw null; } + public new System.Windows.Media.BezierSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class BitmapCache : System.Windows.Media.CacheMode + { + public static readonly System.Windows.DependencyProperty EnableClearTypeProperty; + public static readonly System.Windows.DependencyProperty RenderAtScaleProperty; + public static readonly System.Windows.DependencyProperty SnapsToDevicePixelsProperty; + public BitmapCache() { } + public BitmapCache(double renderAtScale) { } + public bool EnableClearType { get { throw null; } set { } } + public double RenderAtScale { get { throw null; } set { } } + public bool SnapsToDevicePixels { get { throw null; } set { } } + public new System.Windows.Media.BitmapCache Clone() { throw null; } + public new System.Windows.Media.BitmapCache CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class BitmapCacheBrush : System.Windows.Media.Brush + { + public static readonly System.Windows.DependencyProperty AutoLayoutContentProperty; + public static readonly System.Windows.DependencyProperty BitmapCacheProperty; + public static readonly System.Windows.DependencyProperty TargetProperty; + public BitmapCacheBrush() { } + public BitmapCacheBrush(System.Windows.Media.Visual visual) { } + public bool AutoLayoutContent { get { throw null; } set { } } + public System.Windows.Media.BitmapCache BitmapCache { get { throw null; } set { } } + public System.Windows.Media.Visual Target { get { throw null; } set { } } + public new System.Windows.Media.BitmapCacheBrush Clone() { throw null; } + public new System.Windows.Media.BitmapCacheBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + } + public enum BitmapScalingMode + { + Unspecified = 0, + Linear = 1, + LowQuality = 1, + Fant = 2, + HighQuality = 2, + NearestNeighbor = 3, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.BrushConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.BrushValueSerializer))] + public abstract partial class Brush : System.Windows.Media.Animation.Animatable, System.IFormattable + { + public static readonly System.Windows.DependencyProperty OpacityProperty; + public static readonly System.Windows.DependencyProperty RelativeTransformProperty; + public static readonly System.Windows.DependencyProperty TransformProperty; + protected Brush() { } + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Transform RelativeTransform { get { throw null; } set { } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public new System.Windows.Media.Brush Clone() { throw null; } + public new System.Windows.Media.Brush CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class BrushConverter : System.ComponentModel.TypeConverter + { + public BrushConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class Brushes + { + internal Brushes() { } + public static System.Windows.Media.SolidColorBrush AliceBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush AntiqueWhite { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Aqua { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Aquamarine { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Azure { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Beige { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Bisque { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Black { get { throw null; } } + public static System.Windows.Media.SolidColorBrush BlanchedAlmond { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Blue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush BlueViolet { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Brown { get { throw null; } } + public static System.Windows.Media.SolidColorBrush BurlyWood { get { throw null; } } + public static System.Windows.Media.SolidColorBrush CadetBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Chartreuse { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Chocolate { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Coral { get { throw null; } } + public static System.Windows.Media.SolidColorBrush CornflowerBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Cornsilk { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Crimson { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Cyan { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkCyan { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkGoldenrod { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkKhaki { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkMagenta { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkOliveGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkOrange { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkOrchid { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkRed { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkSalmon { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkSeaGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkSlateBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkSlateGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkTurquoise { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DarkViolet { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DeepPink { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DeepSkyBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DimGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DodgerBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Firebrick { get { throw null; } } + public static System.Windows.Media.SolidColorBrush FloralWhite { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ForestGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Fuchsia { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Gainsboro { get { throw null; } } + public static System.Windows.Media.SolidColorBrush GhostWhite { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Gold { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Goldenrod { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Gray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Green { get { throw null; } } + public static System.Windows.Media.SolidColorBrush GreenYellow { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Honeydew { get { throw null; } } + public static System.Windows.Media.SolidColorBrush HotPink { get { throw null; } } + public static System.Windows.Media.SolidColorBrush IndianRed { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Indigo { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Ivory { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Khaki { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Lavender { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LavenderBlush { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LawnGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LemonChiffon { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightCoral { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightCyan { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightGoldenrodYellow { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightPink { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightSalmon { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightSeaGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightSkyBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightSlateGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightSteelBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LightYellow { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Lime { get { throw null; } } + public static System.Windows.Media.SolidColorBrush LimeGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Linen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Magenta { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Maroon { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumAquamarine { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumOrchid { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumPurple { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumSeaGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumSlateBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumSpringGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumTurquoise { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MediumVioletRed { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MidnightBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MintCream { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MistyRose { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Moccasin { get { throw null; } } + public static System.Windows.Media.SolidColorBrush NavajoWhite { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Navy { get { throw null; } } + public static System.Windows.Media.SolidColorBrush OldLace { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Olive { get { throw null; } } + public static System.Windows.Media.SolidColorBrush OliveDrab { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Orange { get { throw null; } } + public static System.Windows.Media.SolidColorBrush OrangeRed { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Orchid { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PaleGoldenrod { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PaleGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PaleTurquoise { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PaleVioletRed { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PapayaWhip { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PeachPuff { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Peru { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Pink { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Plum { get { throw null; } } + public static System.Windows.Media.SolidColorBrush PowderBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Purple { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Red { get { throw null; } } + public static System.Windows.Media.SolidColorBrush RosyBrown { get { throw null; } } + public static System.Windows.Media.SolidColorBrush RoyalBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SaddleBrown { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Salmon { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SandyBrown { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SeaGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SeaShell { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Sienna { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Silver { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SkyBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SlateBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SlateGray { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Snow { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SpringGreen { get { throw null; } } + public static System.Windows.Media.SolidColorBrush SteelBlue { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Tan { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Teal { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Thistle { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Tomato { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Transparent { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Turquoise { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Violet { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Wheat { get { throw null; } } + public static System.Windows.Media.SolidColorBrush White { get { throw null; } } + public static System.Windows.Media.SolidColorBrush WhiteSmoke { get { throw null; } } + public static System.Windows.Media.SolidColorBrush Yellow { get { throw null; } } + public static System.Windows.Media.SolidColorBrush YellowGreen { get { throw null; } } + } + public enum BrushMappingMode + { + Absolute = 0, + RelativeToBoundingBox = 1, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.CacheModeConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.CacheModeValueSerializer))] + public abstract partial class CacheMode : System.Windows.Media.Animation.Animatable + { + internal CacheMode() { } + public new System.Windows.Media.CacheMode Clone() { throw null; } + public new System.Windows.Media.CacheMode CloneCurrentValue() { throw null; } + } + public sealed partial class CacheModeConverter : System.ComponentModel.TypeConverter + { + public CacheModeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum CachingHint + { + Unspecified = 0, + Cache = 1, + } + public partial class CharacterMetrics + { + public CharacterMetrics() { } + public CharacterMetrics(string metrics) { } + public double Baseline { get { throw null; } } + public double BlackBoxHeight { get { throw null; } } + public double BlackBoxWidth { get { throw null; } } + public double BottomSideBearing { get { throw null; } } + public double LeftSideBearing { get { throw null; } } + public string Metrics { get { throw null; } set { } } + public double RightSideBearing { get { throw null; } } + public double TopSideBearing { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } + public sealed partial class CharacterMetricsDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable + { + internal CharacterMetricsDictionary() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.Media.CharacterMetrics this[int key] { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection Keys { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } + object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } + System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } + System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection Values { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public void Add(System.Collections.Generic.KeyValuePair item) { } + public void Add(int key, System.Windows.Media.CharacterMetrics value) { } + public void Clear() { } + [System.CLSCompliantAttribute(false)] + public bool Contains(System.Collections.Generic.KeyValuePair item) { throw null; } + public bool ContainsKey(int key) { throw null; } + [System.CLSCompliantAttribute(false)] + public void CopyTo(System.Collections.Generic.KeyValuePair[] array, int index) { } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.IEnumerator> GetEnumerator() { throw null; } + [System.CLSCompliantAttribute(false)] + public bool Remove(System.Collections.Generic.KeyValuePair item) { throw null; } + public bool Remove(int key) { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + void System.Collections.IDictionary.Add(object key, object value) { } + bool System.Collections.IDictionary.Contains(object key) { throw null; } + System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } + void System.Collections.IDictionary.Remove(object key) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + public bool TryGetValue(int key, out System.Windows.Media.CharacterMetrics value) { throw null; } + } + public enum ClearTypeHint + { + Auto = 0, + Enabled = 1, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.ColorConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public partial struct Color : System.IEquatable, System.IFormattable + { + public byte A { get { throw null; } set { } } + public byte B { get { throw null; } set { } } + public System.Windows.Media.ColorContext ColorContext { get { throw null; } } + public byte G { get { throw null; } set { } } + public byte R { get { throw null; } set { } } + public float ScA { get { throw null; } set { } } + public float ScB { get { throw null; } set { } } + public float ScG { get { throw null; } set { } } + public float ScR { get { throw null; } set { } } + public static System.Windows.Media.Color Add(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static bool AreClose(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public void Clamp() { } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Color color) { throw null; } + public static bool Equals(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static System.Windows.Media.Color FromArgb(byte a, byte r, byte g, byte b) { throw null; } + public static System.Windows.Media.Color FromAValues(float a, float[] values, System.Uri profileUri) { throw null; } + public static System.Windows.Media.Color FromRgb(byte r, byte g, byte b) { throw null; } + public static System.Windows.Media.Color FromScRgb(float a, float r, float g, float b) { throw null; } + public static System.Windows.Media.Color FromValues(float[] values, System.Uri profileUri) { throw null; } + public override int GetHashCode() { throw null; } + public float[] GetNativeColorValues() { throw null; } + public static System.Windows.Media.Color Multiply(System.Windows.Media.Color color, float coefficient) { throw null; } + public static System.Windows.Media.Color operator +(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static bool operator ==(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static bool operator !=(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static System.Windows.Media.Color operator *(System.Windows.Media.Color color, float coefficient) { throw null; } + public static System.Windows.Media.Color operator -(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + public static System.Windows.Media.Color Subtract(System.Windows.Media.Color color1, System.Windows.Media.Color color2) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public partial class ColorContext + { + public ColorContext(System.Uri profileUri) { } + public ColorContext(System.Windows.Media.PixelFormat pixelFormat) { } + public System.Uri ProfileUri { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + public System.IO.Stream OpenProfileStream() { throw null; } + public static bool operator ==(System.Windows.Media.ColorContext context1, System.Windows.Media.ColorContext context2) { throw null; } + public static bool operator !=(System.Windows.Media.ColorContext context1, System.Windows.Media.ColorContext context2) { throw null; } + } + public sealed partial class ColorConverter : System.ComponentModel.TypeConverter + { + public ColorConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public static new object ConvertFromString(string value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum ColorInterpolationMode + { + ScRgbLinearInterpolation = 0, + SRgbLinearInterpolation = 1, + } + public sealed partial class Colors + { + internal Colors() { } + public static System.Windows.Media.Color AliceBlue { get { throw null; } } + public static System.Windows.Media.Color AntiqueWhite { get { throw null; } } + public static System.Windows.Media.Color Aqua { get { throw null; } } + public static System.Windows.Media.Color Aquamarine { get { throw null; } } + public static System.Windows.Media.Color Azure { get { throw null; } } + public static System.Windows.Media.Color Beige { get { throw null; } } + public static System.Windows.Media.Color Bisque { get { throw null; } } + public static System.Windows.Media.Color Black { get { throw null; } } + public static System.Windows.Media.Color BlanchedAlmond { get { throw null; } } + public static System.Windows.Media.Color Blue { get { throw null; } } + public static System.Windows.Media.Color BlueViolet { get { throw null; } } + public static System.Windows.Media.Color Brown { get { throw null; } } + public static System.Windows.Media.Color BurlyWood { get { throw null; } } + public static System.Windows.Media.Color CadetBlue { get { throw null; } } + public static System.Windows.Media.Color Chartreuse { get { throw null; } } + public static System.Windows.Media.Color Chocolate { get { throw null; } } + public static System.Windows.Media.Color Coral { get { throw null; } } + public static System.Windows.Media.Color CornflowerBlue { get { throw null; } } + public static System.Windows.Media.Color Cornsilk { get { throw null; } } + public static System.Windows.Media.Color Crimson { get { throw null; } } + public static System.Windows.Media.Color Cyan { get { throw null; } } + public static System.Windows.Media.Color DarkBlue { get { throw null; } } + public static System.Windows.Media.Color DarkCyan { get { throw null; } } + public static System.Windows.Media.Color DarkGoldenrod { get { throw null; } } + public static System.Windows.Media.Color DarkGray { get { throw null; } } + public static System.Windows.Media.Color DarkGreen { get { throw null; } } + public static System.Windows.Media.Color DarkKhaki { get { throw null; } } + public static System.Windows.Media.Color DarkMagenta { get { throw null; } } + public static System.Windows.Media.Color DarkOliveGreen { get { throw null; } } + public static System.Windows.Media.Color DarkOrange { get { throw null; } } + public static System.Windows.Media.Color DarkOrchid { get { throw null; } } + public static System.Windows.Media.Color DarkRed { get { throw null; } } + public static System.Windows.Media.Color DarkSalmon { get { throw null; } } + public static System.Windows.Media.Color DarkSeaGreen { get { throw null; } } + public static System.Windows.Media.Color DarkSlateBlue { get { throw null; } } + public static System.Windows.Media.Color DarkSlateGray { get { throw null; } } + public static System.Windows.Media.Color DarkTurquoise { get { throw null; } } + public static System.Windows.Media.Color DarkViolet { get { throw null; } } + public static System.Windows.Media.Color DeepPink { get { throw null; } } + public static System.Windows.Media.Color DeepSkyBlue { get { throw null; } } + public static System.Windows.Media.Color DimGray { get { throw null; } } + public static System.Windows.Media.Color DodgerBlue { get { throw null; } } + public static System.Windows.Media.Color Firebrick { get { throw null; } } + public static System.Windows.Media.Color FloralWhite { get { throw null; } } + public static System.Windows.Media.Color ForestGreen { get { throw null; } } + public static System.Windows.Media.Color Fuchsia { get { throw null; } } + public static System.Windows.Media.Color Gainsboro { get { throw null; } } + public static System.Windows.Media.Color GhostWhite { get { throw null; } } + public static System.Windows.Media.Color Gold { get { throw null; } } + public static System.Windows.Media.Color Goldenrod { get { throw null; } } + public static System.Windows.Media.Color Gray { get { throw null; } } + public static System.Windows.Media.Color Green { get { throw null; } } + public static System.Windows.Media.Color GreenYellow { get { throw null; } } + public static System.Windows.Media.Color Honeydew { get { throw null; } } + public static System.Windows.Media.Color HotPink { get { throw null; } } + public static System.Windows.Media.Color IndianRed { get { throw null; } } + public static System.Windows.Media.Color Indigo { get { throw null; } } + public static System.Windows.Media.Color Ivory { get { throw null; } } + public static System.Windows.Media.Color Khaki { get { throw null; } } + public static System.Windows.Media.Color Lavender { get { throw null; } } + public static System.Windows.Media.Color LavenderBlush { get { throw null; } } + public static System.Windows.Media.Color LawnGreen { get { throw null; } } + public static System.Windows.Media.Color LemonChiffon { get { throw null; } } + public static System.Windows.Media.Color LightBlue { get { throw null; } } + public static System.Windows.Media.Color LightCoral { get { throw null; } } + public static System.Windows.Media.Color LightCyan { get { throw null; } } + public static System.Windows.Media.Color LightGoldenrodYellow { get { throw null; } } + public static System.Windows.Media.Color LightGray { get { throw null; } } + public static System.Windows.Media.Color LightGreen { get { throw null; } } + public static System.Windows.Media.Color LightPink { get { throw null; } } + public static System.Windows.Media.Color LightSalmon { get { throw null; } } + public static System.Windows.Media.Color LightSeaGreen { get { throw null; } } + public static System.Windows.Media.Color LightSkyBlue { get { throw null; } } + public static System.Windows.Media.Color LightSlateGray { get { throw null; } } + public static System.Windows.Media.Color LightSteelBlue { get { throw null; } } + public static System.Windows.Media.Color LightYellow { get { throw null; } } + public static System.Windows.Media.Color Lime { get { throw null; } } + public static System.Windows.Media.Color LimeGreen { get { throw null; } } + public static System.Windows.Media.Color Linen { get { throw null; } } + public static System.Windows.Media.Color Magenta { get { throw null; } } + public static System.Windows.Media.Color Maroon { get { throw null; } } + public static System.Windows.Media.Color MediumAquamarine { get { throw null; } } + public static System.Windows.Media.Color MediumBlue { get { throw null; } } + public static System.Windows.Media.Color MediumOrchid { get { throw null; } } + public static System.Windows.Media.Color MediumPurple { get { throw null; } } + public static System.Windows.Media.Color MediumSeaGreen { get { throw null; } } + public static System.Windows.Media.Color MediumSlateBlue { get { throw null; } } + public static System.Windows.Media.Color MediumSpringGreen { get { throw null; } } + public static System.Windows.Media.Color MediumTurquoise { get { throw null; } } + public static System.Windows.Media.Color MediumVioletRed { get { throw null; } } + public static System.Windows.Media.Color MidnightBlue { get { throw null; } } + public static System.Windows.Media.Color MintCream { get { throw null; } } + public static System.Windows.Media.Color MistyRose { get { throw null; } } + public static System.Windows.Media.Color Moccasin { get { throw null; } } + public static System.Windows.Media.Color NavajoWhite { get { throw null; } } + public static System.Windows.Media.Color Navy { get { throw null; } } + public static System.Windows.Media.Color OldLace { get { throw null; } } + public static System.Windows.Media.Color Olive { get { throw null; } } + public static System.Windows.Media.Color OliveDrab { get { throw null; } } + public static System.Windows.Media.Color Orange { get { throw null; } } + public static System.Windows.Media.Color OrangeRed { get { throw null; } } + public static System.Windows.Media.Color Orchid { get { throw null; } } + public static System.Windows.Media.Color PaleGoldenrod { get { throw null; } } + public static System.Windows.Media.Color PaleGreen { get { throw null; } } + public static System.Windows.Media.Color PaleTurquoise { get { throw null; } } + public static System.Windows.Media.Color PaleVioletRed { get { throw null; } } + public static System.Windows.Media.Color PapayaWhip { get { throw null; } } + public static System.Windows.Media.Color PeachPuff { get { throw null; } } + public static System.Windows.Media.Color Peru { get { throw null; } } + public static System.Windows.Media.Color Pink { get { throw null; } } + public static System.Windows.Media.Color Plum { get { throw null; } } + public static System.Windows.Media.Color PowderBlue { get { throw null; } } + public static System.Windows.Media.Color Purple { get { throw null; } } + public static System.Windows.Media.Color Red { get { throw null; } } + public static System.Windows.Media.Color RosyBrown { get { throw null; } } + public static System.Windows.Media.Color RoyalBlue { get { throw null; } } + public static System.Windows.Media.Color SaddleBrown { get { throw null; } } + public static System.Windows.Media.Color Salmon { get { throw null; } } + public static System.Windows.Media.Color SandyBrown { get { throw null; } } + public static System.Windows.Media.Color SeaGreen { get { throw null; } } + public static System.Windows.Media.Color SeaShell { get { throw null; } } + public static System.Windows.Media.Color Sienna { get { throw null; } } + public static System.Windows.Media.Color Silver { get { throw null; } } + public static System.Windows.Media.Color SkyBlue { get { throw null; } } + public static System.Windows.Media.Color SlateBlue { get { throw null; } } + public static System.Windows.Media.Color SlateGray { get { throw null; } } + public static System.Windows.Media.Color Snow { get { throw null; } } + public static System.Windows.Media.Color SpringGreen { get { throw null; } } + public static System.Windows.Media.Color SteelBlue { get { throw null; } } + public static System.Windows.Media.Color Tan { get { throw null; } } + public static System.Windows.Media.Color Teal { get { throw null; } } + public static System.Windows.Media.Color Thistle { get { throw null; } } + public static System.Windows.Media.Color Tomato { get { throw null; } } + public static System.Windows.Media.Color Transparent { get { throw null; } } + public static System.Windows.Media.Color Turquoise { get { throw null; } } + public static System.Windows.Media.Color Violet { get { throw null; } } + public static System.Windows.Media.Color Wheat { get { throw null; } } + public static System.Windows.Media.Color White { get { throw null; } } + public static System.Windows.Media.Color WhiteSmoke { get { throw null; } } + public static System.Windows.Media.Color Yellow { get { throw null; } } + public static System.Windows.Media.Color YellowGreen { get { throw null; } } + } + public sealed partial class CombinedGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty Geometry1Property; + public static readonly System.Windows.DependencyProperty Geometry2Property; + public static readonly System.Windows.DependencyProperty GeometryCombineModeProperty; + public CombinedGeometry() { } + public CombinedGeometry(System.Windows.Media.Geometry geometry1, System.Windows.Media.Geometry geometry2) { } + public CombinedGeometry(System.Windows.Media.GeometryCombineMode geometryCombineMode, System.Windows.Media.Geometry geometry1, System.Windows.Media.Geometry geometry2) { } + public CombinedGeometry(System.Windows.Media.GeometryCombineMode geometryCombineMode, System.Windows.Media.Geometry geometry1, System.Windows.Media.Geometry geometry2, System.Windows.Media.Transform transform) { } + public override System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Media.Geometry Geometry1 { get { throw null; } set { } } + public System.Windows.Media.Geometry Geometry2 { get { throw null; } set { } } + public System.Windows.Media.GeometryCombineMode GeometryCombineMode { get { throw null; } set { } } + public new System.Windows.Media.CombinedGeometry Clone() { throw null; } + public new System.Windows.Media.CombinedGeometry CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override double GetArea(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + } + public abstract partial class CompositionTarget : System.Windows.Threading.DispatcherObject, System.IDisposable + { + internal CompositionTarget() { } + public virtual System.Windows.Media.Visual RootVisual { get { throw null; } set { } } + public abstract System.Windows.Media.Matrix TransformFromDevice { get; } + public abstract System.Windows.Media.Matrix TransformToDevice { get; } + public static event System.EventHandler Rendering { add { } remove { } } + public virtual void Dispose() { } + } + public partial class ContainerVisual : System.Windows.Media.Visual + { + public ContainerVisual() { } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffect BitmapEffect { get { throw null; } set { } } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput { get { throw null; } set { } } + public System.Windows.Media.CacheMode CacheMode { get { throw null; } set { } } + public System.Windows.Media.VisualCollection Children { get { throw null; } } + public System.Windows.Media.Geometry Clip { get { throw null; } set { } } + public System.Windows.Rect ContentBounds { get { throw null; } } + public System.Windows.Rect DescendantBounds { get { throw null; } } + public System.Windows.Media.Effects.Effect Effect { get { throw null; } set { } } + public System.Windows.Vector Offset { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Brush OpacityMask { get { throw null; } set { } } + public System.Windows.DependencyObject Parent { get { throw null; } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + protected sealed override int VisualChildrenCount { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Media.DoubleCollection XSnappingGuidelines { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Media.DoubleCollection YSnappingGuidelines { get { throw null; } set { } } + protected sealed override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + public void HitTest(System.Windows.Media.HitTestFilterCallback filterCallback, System.Windows.Media.HitTestResultCallback resultCallback, System.Windows.Media.HitTestParameters hitTestParameters) { } + public System.Windows.Media.HitTestResult HitTest(System.Windows.Point point) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class DashStyle : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty DashesProperty; + public static readonly System.Windows.DependencyProperty OffsetProperty; + public DashStyle() { } + public DashStyle(System.Collections.Generic.IEnumerable dashes, double offset) { } + public System.Windows.Media.DoubleCollection Dashes { get { throw null; } set { } } + public double Offset { get { throw null; } set { } } + public new System.Windows.Media.DashStyle Clone() { throw null; } + public new System.Windows.Media.DashStyle CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public static partial class DashStyles + { + public static System.Windows.Media.DashStyle Dash { get { throw null; } } + public static System.Windows.Media.DashStyle DashDot { get { throw null; } } + public static System.Windows.Media.DashStyle DashDotDot { get { throw null; } } + public static System.Windows.Media.DashStyle Dot { get { throw null; } } + public static System.Windows.Media.DashStyle Solid { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.DoubleCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.DoubleCollectionValueSerializer))] + public sealed partial class DoubleCollection : System.Windows.Freezable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public DoubleCollection() { } + public DoubleCollection(System.Collections.Generic.IEnumerable collection) { } + public DoubleCollection(int capacity) { } + public int Count { get { throw null; } } + public double this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(double value) { } + public void Clear() { } + public new System.Windows.Media.DoubleCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.DoubleCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(double value) { throw null; } + public void CopyTo(double[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.DoubleCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(double value) { throw null; } + public void Insert(int index, double value) { } + public static System.Windows.Media.DoubleCollection Parse(string source) { throw null; } + public bool Remove(double value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public double Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class DoubleCollectionConverter : System.ComponentModel.TypeConverter + { + public DoubleCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class Drawing : System.Windows.Media.Animation.Animatable + { + internal Drawing() { } + public System.Windows.Rect Bounds { get { throw null; } } + public new System.Windows.Media.Drawing Clone() { throw null; } + public new System.Windows.Media.Drawing CloneCurrentValue() { throw null; } + } + public sealed partial class DrawingBrush : System.Windows.Media.TileBrush + { + public static readonly System.Windows.DependencyProperty DrawingProperty; + public DrawingBrush() { } + public DrawingBrush(System.Windows.Media.Drawing drawing) { } + public System.Windows.Media.Drawing Drawing { get { throw null; } set { } } + public new System.Windows.Media.DrawingBrush Clone() { throw null; } + public new System.Windows.Media.DrawingBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetContentBounds(out System.Windows.Rect contentBounds) { throw null; } + } + public sealed partial class DrawingCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public DrawingCollection() { } + public DrawingCollection(System.Collections.Generic.IEnumerable collection) { } + public DrawingCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Drawing this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Drawing value) { } + public void Clear() { } + public new System.Windows.Media.DrawingCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.DrawingCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Drawing value) { throw null; } + public void CopyTo(System.Windows.Media.Drawing[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.DrawingCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Drawing value) { throw null; } + public void Insert(int index, System.Windows.Media.Drawing value) { } + public bool Remove(System.Windows.Media.Drawing value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Drawing Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public abstract partial class DrawingContext : System.Windows.Threading.DispatcherObject, System.IDisposable + { + internal DrawingContext() { } + public abstract void Close(); + protected abstract void DisposeCore(); + public abstract void DrawDrawing(System.Windows.Media.Drawing drawing); + public abstract void DrawEllipse(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Point center, double radiusX, double radiusY); + public abstract void DrawEllipse(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Point center, System.Windows.Media.Animation.AnimationClock centerAnimations, double radiusX, System.Windows.Media.Animation.AnimationClock radiusXAnimations, double radiusY, System.Windows.Media.Animation.AnimationClock radiusYAnimations); + public abstract void DrawGeometry(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Media.Geometry geometry); + public abstract void DrawGlyphRun(System.Windows.Media.Brush foregroundBrush, System.Windows.Media.GlyphRun glyphRun); + public abstract void DrawImage(System.Windows.Media.ImageSource imageSource, System.Windows.Rect rectangle); + public abstract void DrawImage(System.Windows.Media.ImageSource imageSource, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations); + public abstract void DrawLine(System.Windows.Media.Pen pen, System.Windows.Point point0, System.Windows.Media.Animation.AnimationClock point0Animations, System.Windows.Point point1, System.Windows.Media.Animation.AnimationClock point1Animations); + public abstract void DrawLine(System.Windows.Media.Pen pen, System.Windows.Point point0, System.Windows.Point point1); + public abstract void DrawRectangle(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle); + public abstract void DrawRectangle(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations); + public abstract void DrawRoundedRectangle(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, double radiusX, double radiusY); + public abstract void DrawRoundedRectangle(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations, double radiusX, System.Windows.Media.Animation.AnimationClock radiusXAnimations, double radiusY, System.Windows.Media.Animation.AnimationClock radiusYAnimations); + public void DrawText(System.Windows.Media.FormattedText formattedText, System.Windows.Point origin) { } + public abstract void DrawVideo(System.Windows.Media.MediaPlayer player, System.Windows.Rect rectangle); + public abstract void DrawVideo(System.Windows.Media.MediaPlayer player, System.Windows.Rect rectangle, System.Windows.Media.Animation.AnimationClock rectangleAnimations); + public abstract void Pop(); + public abstract void PushClip(System.Windows.Media.Geometry clipGeometry); + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public abstract void PushEffect(System.Windows.Media.Effects.BitmapEffect effect, System.Windows.Media.Effects.BitmapEffectInput effectInput); + public abstract void PushGuidelineSet(System.Windows.Media.GuidelineSet guidelines); + public abstract void PushOpacity(double opacity); + public abstract void PushOpacity(double opacity, System.Windows.Media.Animation.AnimationClock opacityAnimations); + public abstract void PushOpacityMask(System.Windows.Media.Brush opacityMask); + public abstract void PushTransform(System.Windows.Media.Transform transform); + void System.IDisposable.Dispose() { } + protected virtual void VerifyApiNonstructuralChange() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class DrawingGroup : System.Windows.Media.Drawing + { + public static readonly System.Windows.DependencyProperty BitmapEffectInputProperty; + public static readonly System.Windows.DependencyProperty BitmapEffectProperty; + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public static readonly System.Windows.DependencyProperty ClipGeometryProperty; + public static readonly System.Windows.DependencyProperty GuidelineSetProperty; + public static readonly System.Windows.DependencyProperty OpacityMaskProperty; + public static readonly System.Windows.DependencyProperty OpacityProperty; + public static readonly System.Windows.DependencyProperty TransformProperty; + public DrawingGroup() { } + public System.Windows.Media.Effects.BitmapEffect BitmapEffect { get { throw null; } set { } } + public System.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput { get { throw null; } set { } } + public System.Windows.Media.DrawingCollection Children { get { throw null; } set { } } + public System.Windows.Media.Geometry ClipGeometry { get { throw null; } set { } } + public System.Windows.Media.GuidelineSet GuidelineSet { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Brush OpacityMask { get { throw null; } set { } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public System.Windows.Media.DrawingContext Append() { throw null; } + public new System.Windows.Media.DrawingGroup Clone() { throw null; } + public new System.Windows.Media.DrawingGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public System.Windows.Media.DrawingContext Open() { throw null; } + } + public sealed partial class DrawingImage : System.Windows.Media.ImageSource + { + public static readonly System.Windows.DependencyProperty DrawingProperty; + public DrawingImage() { } + public DrawingImage(System.Windows.Media.Drawing drawing) { } + public System.Windows.Media.Drawing Drawing { get { throw null; } set { } } + public override double Height { get { throw null; } } + public override System.Windows.Media.ImageMetadata Metadata { get { throw null; } } + public override double Width { get { throw null; } } + public new System.Windows.Media.DrawingImage Clone() { throw null; } + public new System.Windows.Media.DrawingImage CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class DrawingVisual : System.Windows.Media.ContainerVisual + { + public DrawingVisual() { } + public System.Windows.Media.DrawingGroup Drawing { get { throw null; } } + protected override System.Windows.Media.GeometryHitTestResult HitTestCore(System.Windows.Media.GeometryHitTestParameters hitTestParameters) { throw null; } + protected override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + public System.Windows.Media.DrawingContext RenderOpen() { throw null; } + } + public enum EdgeMode + { + Unspecified = 0, + Aliased = 1, + } + public sealed partial class EllipseGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty CenterProperty; + public static readonly System.Windows.DependencyProperty RadiusXProperty; + public static readonly System.Windows.DependencyProperty RadiusYProperty; + public EllipseGeometry() { } + public EllipseGeometry(System.Windows.Point center, double radiusX, double radiusY) { } + public EllipseGeometry(System.Windows.Point center, double radiusX, double radiusY, System.Windows.Media.Transform transform) { } + public EllipseGeometry(System.Windows.Rect rect) { } + public override System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Point Center { get { throw null; } set { } } + public double RadiusX { get { throw null; } set { } } + public double RadiusY { get { throw null; } set { } } + public new System.Windows.Media.EllipseGeometry Clone() { throw null; } + public new System.Windows.Media.EllipseGeometry CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override double GetArea(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + } + public sealed partial class ExceptionEventArgs : System.EventArgs + { + internal ExceptionEventArgs() { } + public System.Exception ErrorException { get { throw null; } } + } + public partial class FamilyTypeface + { + public FamilyTypeface() { } + public System.Collections.Generic.IDictionary AdjustedFaceNames { get { throw null; } } + public double CapsHeight { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.CharacterMetricsDictionary DeviceFontCharacterMetrics { get { throw null; } } + public string DeviceFontName { get { throw null; } set { } } + public System.Windows.FontStretch Stretch { get { throw null; } set { } } + public double StrikethroughPosition { get { throw null; } set { } } + public double StrikethroughThickness { get { throw null; } set { } } + public System.Windows.FontStyle Style { get { throw null; } set { } } + public double UnderlinePosition { get { throw null; } set { } } + public double UnderlineThickness { get { throw null; } set { } } + public System.Windows.FontWeight Weight { get { throw null; } set { } } + public double XHeight { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.FamilyTypeface typeface) { throw null; } + public override int GetHashCode() { throw null; } + } + public sealed partial class FamilyTypefaceCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal FamilyTypefaceCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.Media.FamilyTypeface this[int index] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.FamilyTypeface item) { } + public void Clear() { } + public bool Contains(System.Windows.Media.FamilyTypeface item) { throw null; } + public void CopyTo(System.Windows.Media.FamilyTypeface[] array, int index) { } + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.FamilyTypeface item) { throw null; } + public void Insert(int index, System.Windows.Media.FamilyTypeface item) { } + public bool Remove(System.Windows.Media.FamilyTypeface item) { throw null; } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object item) { } + void System.Collections.IList.Remove(object value) { } + } + public enum FillRule + { + EvenOdd = 0, + Nonzero = 1, + } + public partial class FontEmbeddingManager + { + public FontEmbeddingManager() { } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection GlyphTypefaceUris { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection GetUsedGlyphs(System.Uri glyphTypeface) { throw null; } + public void RecordUsage(System.Windows.Media.GlyphRun glyphRun) { } + } + public enum FontEmbeddingRight + { + Installable = 0, + InstallableButNoSubsetting = 1, + InstallableButWithBitmapsOnly = 2, + InstallableButNoSubsettingAndWithBitmapsOnly = 3, + RestrictedLicense = 4, + PreviewAndPrint = 5, + PreviewAndPrintButNoSubsetting = 6, + PreviewAndPrintButWithBitmapsOnly = 7, + PreviewAndPrintButNoSubsettingAndWithBitmapsOnly = 8, + Editable = 9, + EditableButNoSubsetting = 10, + EditableButWithBitmapsOnly = 11, + EditableButNoSubsettingAndWithBitmapsOnly = 12, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.FontFamilyConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font)] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.FontFamilyValueSerializer))] + public partial class FontFamily + { + public FontFamily() { } + public FontFamily(string familyName) { } + public FontFamily(System.Uri baseUri, string familyName) { } + public double Baseline { get { throw null; } set { } } + public System.Uri BaseUri { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.FontFamilyMapCollection FamilyMaps { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.LanguageSpecificStringDictionary FamilyNames { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.FamilyTypefaceCollection FamilyTypefaces { get { throw null; } } + public double LineSpacing { get { throw null; } set { } } + public string Source { get { throw null; } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection GetTypefaces() { throw null; } + public override string ToString() { throw null; } + } + public partial class FontFamilyConverter : System.ComponentModel.TypeConverter + { + public FontFamilyConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo cultureInfo, object o) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class FontFamilyMap + { + public FontFamilyMap() { } + public System.Windows.Markup.XmlLanguage Language { get { throw null; } set { } } + public double Scale { get { throw null; } set { } } + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public string Target { get { throw null; } set { } } + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public string Unicode { get { throw null; } set { } } + } + public sealed partial class FontFamilyMapCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal FontFamilyMapCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.Media.FontFamilyMap this[int index] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.FontFamilyMap item) { } + public void Clear() { } + public bool Contains(System.Windows.Media.FontFamilyMap item) { throw null; } + public void CopyTo(System.Windows.Media.FontFamilyMap[] array, int index) { } + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.FontFamilyMap item) { throw null; } + public void Insert(int index, System.Windows.Media.FontFamilyMap item) { } + public bool Remove(System.Windows.Media.FontFamilyMap item) { throw null; } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object item) { } + void System.Collections.IList.Remove(object value) { } + } + public partial class FontFamilyValueSerializer : System.Windows.Markup.ValueSerializer + { + public FontFamilyValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public static partial class Fonts + { + public static System.Collections.Generic.ICollection SystemFontFamilies { get { throw null; } } + public static System.Collections.Generic.ICollection SystemTypefaces { get { throw null; } } + public static System.Collections.Generic.ICollection GetFontFamilies(string location) { throw null; } + public static System.Collections.Generic.ICollection GetFontFamilies(System.Uri baseUri) { throw null; } + public static System.Collections.Generic.ICollection GetFontFamilies(System.Uri baseUri, string location) { throw null; } + public static System.Collections.Generic.ICollection GetTypefaces(string location) { throw null; } + public static System.Collections.Generic.ICollection GetTypefaces(System.Uri baseUri) { throw null; } + public static System.Collections.Generic.ICollection GetTypefaces(System.Uri baseUri, string location) { throw null; } + } + public partial class FormattedText + { + [System.ObsoleteAttribute("Use the PixelsPerDip override", false)] + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground) { } + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground, double pixelsPerDip) { } + [System.ObsoleteAttribute("Use the PixelsPerDip override", false)] + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground, System.Windows.Media.NumberSubstitution numberSubstitution) { } + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground, System.Windows.Media.NumberSubstitution numberSubstitution, double pixelsPerDip) { } + [System.ObsoleteAttribute("Use the PixelsPerDip override", false)] + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground, System.Windows.Media.NumberSubstitution numberSubstitution, System.Windows.Media.TextFormattingMode textFormattingMode) { } + public FormattedText(string textToFormat, System.Globalization.CultureInfo culture, System.Windows.FlowDirection flowDirection, System.Windows.Media.Typeface typeface, double emSize, System.Windows.Media.Brush foreground, System.Windows.Media.NumberSubstitution numberSubstitution, System.Windows.Media.TextFormattingMode textFormattingMode, double pixelsPerDip) { } + public double Baseline { get { throw null; } } + public double Extent { get { throw null; } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + public double Height { get { throw null; } } + public double LineHeight { get { throw null; } set { } } + public int MaxLineCount { get { throw null; } set { } } + public double MaxTextHeight { get { throw null; } set { } } + public double MaxTextWidth { get { throw null; } set { } } + public double MinWidth { get { throw null; } } + public double OverhangAfter { get { throw null; } } + public double OverhangLeading { get { throw null; } } + public double OverhangTrailing { get { throw null; } } + public double PixelsPerDip { get { throw null; } set { } } + public string Text { get { throw null; } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public System.Windows.TextTrimming Trimming { get { throw null; } set { } } + public double Width { get { throw null; } } + public double WidthIncludingTrailingWhitespace { get { throw null; } } + public System.Windows.Media.Geometry BuildGeometry(System.Windows.Point origin) { throw null; } + public System.Windows.Media.Geometry BuildHighlightGeometry(System.Windows.Point origin) { throw null; } + public System.Windows.Media.Geometry BuildHighlightGeometry(System.Windows.Point origin, int startIndex, int count) { throw null; } + public double[] GetMaxTextWidths() { throw null; } + public void SetCulture(System.Globalization.CultureInfo culture) { } + public void SetCulture(System.Globalization.CultureInfo culture, int startIndex, int count) { } + public void SetFontFamily(string fontFamily) { } + public void SetFontFamily(string fontFamily, int startIndex, int count) { } + public void SetFontFamily(System.Windows.Media.FontFamily fontFamily) { } + public void SetFontFamily(System.Windows.Media.FontFamily fontFamily, int startIndex, int count) { } + public void SetFontSize(double emSize) { } + public void SetFontSize(double emSize, int startIndex, int count) { } + public void SetFontStretch(System.Windows.FontStretch stretch) { } + public void SetFontStretch(System.Windows.FontStretch stretch, int startIndex, int count) { } + public void SetFontStyle(System.Windows.FontStyle style) { } + public void SetFontStyle(System.Windows.FontStyle style, int startIndex, int count) { } + public void SetFontTypeface(System.Windows.Media.Typeface typeface) { } + public void SetFontTypeface(System.Windows.Media.Typeface typeface, int startIndex, int count) { } + public void SetFontWeight(System.Windows.FontWeight weight) { } + public void SetFontWeight(System.Windows.FontWeight weight, int startIndex, int count) { } + public void SetForegroundBrush(System.Windows.Media.Brush foregroundBrush) { } + public void SetForegroundBrush(System.Windows.Media.Brush foregroundBrush, int startIndex, int count) { } + public void SetMaxTextWidths(double[] maxTextWidths) { } + public void SetNumberSubstitution(System.Windows.Media.NumberSubstitution numberSubstitution) { } + public void SetNumberSubstitution(System.Windows.Media.NumberSubstitution numberSubstitution, int startIndex, int count) { } + public void SetTextDecorations(System.Windows.TextDecorationCollection textDecorations) { } + public void SetTextDecorations(System.Windows.TextDecorationCollection textDecorations, int startIndex, int count) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class GeneralTransform : System.Windows.Media.Animation.Animatable, System.IFormattable + { + protected GeneralTransform() { } + public abstract System.Windows.Media.GeneralTransform Inverse { get; } + public new System.Windows.Media.GeneralTransform Clone() { throw null; } + public new System.Windows.Media.GeneralTransform CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public System.Windows.Point Transform(System.Windows.Point point) { throw null; } + public abstract System.Windows.Rect TransformBounds(System.Windows.Rect rect); + public abstract bool TryTransform(System.Windows.Point inPoint, out System.Windows.Point result); + } + public sealed partial class GeneralTransformCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public GeneralTransformCollection() { } + public GeneralTransformCollection(System.Collections.Generic.IEnumerable collection) { } + public GeneralTransformCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.GeneralTransform this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.GeneralTransform value) { } + public void Clear() { } + public new System.Windows.Media.GeneralTransformCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.GeneralTransformCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.GeneralTransform value) { throw null; } + public void CopyTo(System.Windows.Media.GeneralTransform[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.GeneralTransformCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.GeneralTransform value) { throw null; } + public void Insert(int index, System.Windows.Media.GeneralTransform value) { } + public bool Remove(System.Windows.Media.GeneralTransform value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.GeneralTransform Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class GeneralTransformGroup : System.Windows.Media.GeneralTransform + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public GeneralTransformGroup() { } + public System.Windows.Media.GeneralTransformCollection Children { get { throw null; } set { } } + public override System.Windows.Media.GeneralTransform Inverse { get { throw null; } } + public new System.Windows.Media.GeneralTransformGroup Clone() { throw null; } + public new System.Windows.Media.GeneralTransformGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override System.Windows.Rect TransformBounds(System.Windows.Rect rect) { throw null; } + public override bool TryTransform(System.Windows.Point inPoint, out System.Windows.Point result) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.GeometryConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.GeometryValueSerializer))] + public abstract partial class Geometry : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal Geometry() { } + public static readonly System.Windows.DependencyProperty TransformProperty; + public virtual System.Windows.Rect Bounds { get { throw null; } } + public static System.Windows.Media.Geometry Empty { get { throw null; } } + public static double StandardFlatteningTolerance { get { throw null; } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public new System.Windows.Media.Geometry Clone() { throw null; } + public new System.Windows.Media.Geometry CloneCurrentValue() { throw null; } + public static System.Windows.Media.PathGeometry Combine(System.Windows.Media.Geometry geometry1, System.Windows.Media.Geometry geometry2, System.Windows.Media.GeometryCombineMode mode, System.Windows.Media.Transform transform) { throw null; } + public static System.Windows.Media.PathGeometry Combine(System.Windows.Media.Geometry geometry1, System.Windows.Media.Geometry geometry2, System.Windows.Media.GeometryCombineMode mode, System.Windows.Media.Transform transform, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public bool FillContains(System.Windows.Media.Geometry geometry) { throw null; } + public bool FillContains(System.Windows.Media.Geometry geometry, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public bool FillContains(System.Windows.Point hitPoint) { throw null; } + public bool FillContains(System.Windows.Point hitPoint, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Media.IntersectionDetail FillContainsWithDetail(System.Windows.Media.Geometry geometry) { throw null; } + public virtual System.Windows.Media.IntersectionDetail FillContainsWithDetail(System.Windows.Media.Geometry geometry, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public double GetArea() { throw null; } + public virtual double GetArea(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Media.PathGeometry GetFlattenedPathGeometry() { throw null; } + public virtual System.Windows.Media.PathGeometry GetFlattenedPathGeometry(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Media.PathGeometry GetOutlinedPathGeometry() { throw null; } + public virtual System.Windows.Media.PathGeometry GetOutlinedPathGeometry(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Rect GetRenderBounds(System.Windows.Media.Pen pen) { throw null; } + public virtual System.Windows.Rect GetRenderBounds(System.Windows.Media.Pen pen, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Media.PathGeometry GetWidenedPathGeometry(System.Windows.Media.Pen pen) { throw null; } + public virtual System.Windows.Media.PathGeometry GetWidenedPathGeometry(System.Windows.Media.Pen pen, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public abstract bool IsEmpty(); + public abstract bool MayHaveCurves(); + public static System.Windows.Media.Geometry Parse(string source) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeTransform() { throw null; } + public bool StrokeContains(System.Windows.Media.Pen pen, System.Windows.Point hitPoint) { throw null; } + public bool StrokeContains(System.Windows.Media.Pen pen, System.Windows.Point hitPoint, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public System.Windows.Media.IntersectionDetail StrokeContainsWithDetail(System.Windows.Media.Pen pen, System.Windows.Media.Geometry geometry) { throw null; } + public System.Windows.Media.IntersectionDetail StrokeContainsWithDetail(System.Windows.Media.Pen pen, System.Windows.Media.Geometry geometry, double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class GeometryCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public GeometryCollection() { } + public GeometryCollection(System.Collections.Generic.IEnumerable collection) { } + public GeometryCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Geometry this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Geometry value) { } + public void Clear() { } + public new System.Windows.Media.GeometryCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.GeometryCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Geometry value) { throw null; } + public void CopyTo(System.Windows.Media.Geometry[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.GeometryCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Geometry value) { throw null; } + public void Insert(int index, System.Windows.Media.Geometry value) { } + public bool Remove(System.Windows.Media.Geometry value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Geometry Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public enum GeometryCombineMode + { + Union = 0, + Intersect = 1, + Xor = 2, + Exclude = 3, + } + public sealed partial class GeometryConverter : System.ComponentModel.TypeConverter + { + public GeometryConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class GeometryDrawing : System.Windows.Media.Drawing + { + public static readonly System.Windows.DependencyProperty BrushProperty; + public static readonly System.Windows.DependencyProperty GeometryProperty; + public static readonly System.Windows.DependencyProperty PenProperty; + public GeometryDrawing() { } + public GeometryDrawing(System.Windows.Media.Brush brush, System.Windows.Media.Pen pen, System.Windows.Media.Geometry geometry) { } + public System.Windows.Media.Brush Brush { get { throw null; } set { } } + public System.Windows.Media.Geometry Geometry { get { throw null; } set { } } + public System.Windows.Media.Pen Pen { get { throw null; } set { } } + public new System.Windows.Media.GeometryDrawing Clone() { throw null; } + public new System.Windows.Media.GeometryDrawing CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class GeometryGroup : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public static readonly System.Windows.DependencyProperty FillRuleProperty; + public GeometryGroup() { } + public System.Windows.Media.GeometryCollection Children { get { throw null; } set { } } + public System.Windows.Media.FillRule FillRule { get { throw null; } set { } } + public new System.Windows.Media.GeometryGroup Clone() { throw null; } + public new System.Windows.Media.GeometryGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + } + public partial class GeometryHitTestParameters : System.Windows.Media.HitTestParameters + { + public GeometryHitTestParameters(System.Windows.Media.Geometry geometry) { } + public System.Windows.Media.Geometry HitGeometry { get { throw null; } } + } + public partial class GeometryHitTestResult : System.Windows.Media.HitTestResult + { + public GeometryHitTestResult(System.Windows.Media.Visual visualHit, System.Windows.Media.IntersectionDetail intersectionDetail) { } + public System.Windows.Media.IntersectionDetail IntersectionDetail { get { throw null; } } + public new System.Windows.Media.Visual VisualHit { get { throw null; } } + } + public partial class GlyphRun : System.ComponentModel.ISupportInitialize + { + [System.ObsoleteAttribute("Use the PixelsPerDip override", false)] + public GlyphRun() { } + public GlyphRun(float pixelsPerDip) { } + [System.CLSCompliantAttribute(false)] + [System.ObsoleteAttribute("Use the PixelsPerDip override", false)] + public GlyphRun(System.Windows.Media.GlyphTypeface glyphTypeface, int bidiLevel, bool isSideways, double renderingEmSize, System.Collections.Generic.IList glyphIndices, System.Windows.Point baselineOrigin, System.Collections.Generic.IList advanceWidths, System.Collections.Generic.IList glyphOffsets, System.Collections.Generic.IList characters, string deviceFontName, System.Collections.Generic.IList clusterMap, System.Collections.Generic.IList caretStops, System.Windows.Markup.XmlLanguage language) { } + [System.CLSCompliantAttribute(false)] + public GlyphRun(System.Windows.Media.GlyphTypeface glyphTypeface, int bidiLevel, bool isSideways, double renderingEmSize, float pixelsPerDip, System.Collections.Generic.IList glyphIndices, System.Windows.Point baselineOrigin, System.Collections.Generic.IList advanceWidths, System.Collections.Generic.IList glyphOffsets, System.Collections.Generic.IList characters, string deviceFontName, System.Collections.Generic.IList clusterMap, System.Collections.Generic.IList caretStops, System.Windows.Markup.XmlLanguage language) { } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.DoubleIListConverter))] + public System.Collections.Generic.IList AdvanceWidths { get { throw null; } set { } } + public System.Windows.Point BaselineOrigin { get { throw null; } set { } } + public int BidiLevel { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.BoolIListConverter))] + public System.Collections.Generic.IList CaretStops { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.CharIListConverter))] + public System.Collections.Generic.IList Characters { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.UShortIListConverter))] + public System.Collections.Generic.IList ClusterMap { get { throw null; } set { } } + public string DeviceFontName { get { throw null; } set { } } + public double FontRenderingEmSize { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.UShortIListConverter))] + public System.Collections.Generic.IList GlyphIndices { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Converters.PointIListConverter))] + public System.Collections.Generic.IList GlyphOffsets { get { throw null; } set { } } + public System.Windows.Media.GlyphTypeface GlyphTypeface { get { throw null; } set { } } + public bool IsHitTestable { get { throw null; } } + public bool IsSideways { get { throw null; } set { } } + public System.Windows.Markup.XmlLanguage Language { get { throw null; } set { } } + public float PixelsPerDip { get { throw null; } set { } } + public System.Windows.Media.Geometry BuildGeometry() { throw null; } + public System.Windows.Rect ComputeAlignmentBox() { throw null; } + public System.Windows.Rect ComputeInkBoundingBox() { throw null; } + public System.Windows.Media.TextFormatting.CharacterHit GetCaretCharacterHitFromDistance(double distance, out bool isInside) { throw null; } + public double GetDistanceFromCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit) { throw null; } + public System.Windows.Media.TextFormatting.CharacterHit GetNextCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit) { throw null; } + public System.Windows.Media.TextFormatting.CharacterHit GetPreviousCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit) { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + public sealed partial class GlyphRunDrawing : System.Windows.Media.Drawing + { + public static readonly System.Windows.DependencyProperty ForegroundBrushProperty; + public static readonly System.Windows.DependencyProperty GlyphRunProperty; + public GlyphRunDrawing() { } + public GlyphRunDrawing(System.Windows.Media.Brush foregroundBrush, System.Windows.Media.GlyphRun glyphRun) { } + public System.Windows.Media.Brush ForegroundBrush { get { throw null; } set { } } + public System.Windows.Media.GlyphRun GlyphRun { get { throw null; } set { } } + public new System.Windows.Media.GlyphRunDrawing Clone() { throw null; } + public new System.Windows.Media.GlyphRunDrawing CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class GlyphTypeface : System.ComponentModel.ISupportInitialize + { + public GlyphTypeface() { } + public GlyphTypeface(System.Uri typefaceSource) { } + public GlyphTypeface(System.Uri typefaceSource, System.Windows.Media.StyleSimulations styleSimulations) { } + public System.Collections.Generic.IDictionary AdvanceHeights { get { throw null; } } + public System.Collections.Generic.IDictionary AdvanceWidths { get { throw null; } } + public double Baseline { get { throw null; } } + public System.Collections.Generic.IDictionary BottomSideBearings { get { throw null; } } + public double CapsHeight { get { throw null; } } + public System.Collections.Generic.IDictionary CharacterToGlyphMap { get { throw null; } } + public System.Collections.Generic.IDictionary Copyrights { get { throw null; } } + public System.Collections.Generic.IDictionary Descriptions { get { throw null; } } + public System.Collections.Generic.IDictionary DesignerNames { get { throw null; } } + public System.Collections.Generic.IDictionary DesignerUrls { get { throw null; } } + public System.Collections.Generic.IDictionary DistancesFromHorizontalBaselineToBlackBoxBottom { get { throw null; } } + public System.Windows.Media.FontEmbeddingRight EmbeddingRights { get { throw null; } } + public System.Collections.Generic.IDictionary FaceNames { get { throw null; } } + public System.Collections.Generic.IDictionary FamilyNames { get { throw null; } } + public System.Uri FontUri { get { throw null; } set { } } + public int GlyphCount { get { throw null; } } + public double Height { get { throw null; } } + public System.Collections.Generic.IDictionary LeftSideBearings { get { throw null; } } + public System.Collections.Generic.IDictionary LicenseDescriptions { get { throw null; } } + public System.Collections.Generic.IDictionary ManufacturerNames { get { throw null; } } + public System.Collections.Generic.IDictionary RightSideBearings { get { throw null; } } + public System.Collections.Generic.IDictionary SampleTexts { get { throw null; } } + public System.Windows.FontStretch Stretch { get { throw null; } } + public double StrikethroughPosition { get { throw null; } } + public double StrikethroughThickness { get { throw null; } } + public System.Windows.FontStyle Style { get { throw null; } } + public System.Windows.Media.StyleSimulations StyleSimulations { get { throw null; } set { } } + public bool Symbol { get { throw null; } } + public System.Collections.Generic.IDictionary TopSideBearings { get { throw null; } } + public System.Collections.Generic.IDictionary Trademarks { get { throw null; } } + public double UnderlinePosition { get { throw null; } } + public double UnderlineThickness { get { throw null; } } + public System.Collections.Generic.IDictionary VendorUrls { get { throw null; } } + public double Version { get { throw null; } } + public System.Collections.Generic.IDictionary VersionStrings { get { throw null; } } + public System.Windows.FontWeight Weight { get { throw null; } } + public System.Collections.Generic.IDictionary Win32FaceNames { get { throw null; } } + public System.Collections.Generic.IDictionary Win32FamilyNames { get { throw null; } } + public double XHeight { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public byte[] ComputeSubset(System.Collections.Generic.ICollection glyphs) { throw null; } + public override bool Equals(object o) { throw null; } + public System.IO.Stream GetFontStream() { throw null; } + [System.CLSCompliantAttribute(false)] + public System.Windows.Media.Geometry GetGlyphOutline(ushort glyphIndex, double renderingEmSize, double hintingEmSize) { throw null; } + public override int GetHashCode() { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + [System.Windows.Markup.ContentPropertyAttribute("GradientStops")] + public abstract partial class GradientBrush : System.Windows.Media.Brush + { + public static readonly System.Windows.DependencyProperty ColorInterpolationModeProperty; + public static readonly System.Windows.DependencyProperty GradientStopsProperty; + public static readonly System.Windows.DependencyProperty MappingModeProperty; + public static readonly System.Windows.DependencyProperty SpreadMethodProperty; + protected GradientBrush() { } + protected GradientBrush(System.Windows.Media.GradientStopCollection gradientStopCollection) { } + public System.Windows.Media.ColorInterpolationMode ColorInterpolationMode { get { throw null; } set { } } + public System.Windows.Media.GradientStopCollection GradientStops { get { throw null; } set { } } + public System.Windows.Media.BrushMappingMode MappingMode { get { throw null; } set { } } + public System.Windows.Media.GradientSpreadMethod SpreadMethod { get { throw null; } set { } } + public new System.Windows.Media.GradientBrush Clone() { throw null; } + public new System.Windows.Media.GradientBrush CloneCurrentValue() { throw null; } + } + public enum GradientSpreadMethod + { + Pad = 0, + Reflect = 1, + Repeat = 2, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class GradientStop : System.Windows.Media.Animation.Animatable, System.IFormattable + { + public static readonly System.Windows.DependencyProperty ColorProperty; + public static readonly System.Windows.DependencyProperty OffsetProperty; + public GradientStop() { } + public GradientStop(System.Windows.Media.Color color, double offset) { } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public double Offset { get { throw null; } set { } } + public new System.Windows.Media.GradientStop Clone() { throw null; } + public new System.Windows.Media.GradientStop CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class GradientStopCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public GradientStopCollection() { } + public GradientStopCollection(System.Collections.Generic.IEnumerable collection) { } + public GradientStopCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.GradientStop this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.GradientStop value) { } + public void Clear() { } + public new System.Windows.Media.GradientStopCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.GradientStopCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.GradientStop value) { throw null; } + public void CopyTo(System.Windows.Media.GradientStop[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.GradientStopCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.GradientStop value) { throw null; } + public void Insert(int index, System.Windows.Media.GradientStop value) { } + public static System.Windows.Media.GradientStopCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Media.GradientStop value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.GradientStop Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class GuidelineSet : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty GuidelinesXProperty; + public static readonly System.Windows.DependencyProperty GuidelinesYProperty; + public GuidelineSet() { } + public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { } + public System.Windows.Media.DoubleCollection GuidelinesX { get { throw null; } set { } } + public System.Windows.Media.DoubleCollection GuidelinesY { get { throw null; } set { } } + public new System.Windows.Media.GuidelineSet Clone() { throw null; } + public new System.Windows.Media.GuidelineSet CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public enum HitTestFilterBehavior + { + ContinueSkipSelfAndChildren = 0, + ContinueSkipChildren = 2, + ContinueSkipSelf = 4, + Continue = 6, + Stop = 8, + } + public delegate System.Windows.Media.HitTestFilterBehavior HitTestFilterCallback(System.Windows.DependencyObject potentialHitTestTarget); + public abstract partial class HitTestParameters + { + internal HitTestParameters() { } + } + public abstract partial class HitTestResult + { + internal HitTestResult() { } + public System.Windows.DependencyObject VisualHit { get { throw null; } } + } + public enum HitTestResultBehavior + { + Stop = 0, + Continue = 1, + } + public delegate System.Windows.Media.HitTestResultBehavior HitTestResultCallback(System.Windows.Media.HitTestResult result); + public partial class HostVisual : System.Windows.Media.ContainerVisual + { + public HostVisual() { } + protected override System.Windows.Media.GeometryHitTestResult HitTestCore(System.Windows.Media.GeometryHitTestParameters hitTestParameters) { throw null; } + protected override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + } + public sealed partial class ImageBrush : System.Windows.Media.TileBrush + { + public static readonly System.Windows.DependencyProperty ImageSourceProperty; + public ImageBrush() { } + public ImageBrush(System.Windows.Media.ImageSource image) { } + public System.Windows.Media.ImageSource ImageSource { get { throw null; } set { } } + public new System.Windows.Media.ImageBrush Clone() { throw null; } + public new System.Windows.Media.ImageBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetContentBounds(out System.Windows.Rect contentBounds) { throw null; } + } + public sealed partial class ImageDrawing : System.Windows.Media.Drawing + { + public static readonly System.Windows.DependencyProperty ImageSourceProperty; + public static readonly System.Windows.DependencyProperty RectProperty; + public ImageDrawing() { } + public ImageDrawing(System.Windows.Media.ImageSource imageSource, System.Windows.Rect rect) { } + public System.Windows.Media.ImageSource ImageSource { get { throw null; } set { } } + public System.Windows.Rect Rect { get { throw null; } set { } } + public new System.Windows.Media.ImageDrawing Clone() { throw null; } + public new System.Windows.Media.ImageDrawing CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class ImageMetadata : System.Windows.Freezable + { + internal ImageMetadata() { } + public new System.Windows.Media.ImageMetadata Clone() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.ImageSourceConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.ImageSourceValueSerializer))] + public abstract partial class ImageSource : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal ImageSource() { } + public abstract double Height { get; } + public abstract System.Windows.Media.ImageMetadata Metadata { get; } + public abstract double Width { get; } + public new System.Windows.Media.ImageSource Clone() { throw null; } + public new System.Windows.Media.ImageSource CloneCurrentValue() { throw null; } + protected static double PixelsToDIPs(double dpi, int pixels) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public partial class ImageSourceConverter : System.ComponentModel.TypeConverter + { + public ImageSourceConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class ImageSourceValueSerializer : System.Windows.Markup.ValueSerializer + { + public ImageSourceValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Int32CollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.Int32CollectionValueSerializer))] + public sealed partial class Int32Collection : System.Windows.Freezable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public Int32Collection() { } + public Int32Collection(System.Collections.Generic.IEnumerable collection) { } + public Int32Collection(int capacity) { } + public int Count { get { throw null; } } + public int this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(int value) { } + public void Clear() { } + public new System.Windows.Media.Int32Collection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Int32Collection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(int value) { throw null; } + public void CopyTo(int[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Int32Collection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(int value) { throw null; } + public void Insert(int index, int value) { } + public static System.Windows.Media.Int32Collection Parse(string source) { throw null; } + public bool Remove(int value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public int Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class Int32CollectionConverter : System.ComponentModel.TypeConverter + { + public Int32CollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum IntersectionDetail + { + NotCalculated = 0, + Empty = 1, + FullyInside = 2, + FullyContains = 3, + Intersects = 4, + } + public partial class InvalidWmpVersionException : System.SystemException + { + public InvalidWmpVersionException() { } + protected InvalidWmpVersionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public InvalidWmpVersionException(string message) { } + public InvalidWmpVersionException(string message, System.Exception innerException) { } + } + public sealed partial class LanguageSpecificStringDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable + { + internal LanguageSpecificStringDictionary() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public string this[System.Windows.Markup.XmlLanguage key] { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection Keys { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IDictionary.IsFixedSize { get { throw null; } } + object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } + System.Collections.ICollection System.Collections.IDictionary.Keys { get { throw null; } } + System.Collections.ICollection System.Collections.IDictionary.Values { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.ICollection Values { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public void Add(System.Collections.Generic.KeyValuePair item) { } + public void Add(System.Windows.Markup.XmlLanguage key, string value) { } + public void Clear() { } + [System.CLSCompliantAttribute(false)] + public bool Contains(System.Collections.Generic.KeyValuePair item) { throw null; } + public bool ContainsKey(System.Windows.Markup.XmlLanguage key) { throw null; } + [System.CLSCompliantAttribute(false)] + public void CopyTo(System.Collections.Generic.KeyValuePair[] array, int index) { } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.IEnumerator> GetEnumerator() { throw null; } + [System.CLSCompliantAttribute(false)] + public bool Remove(System.Collections.Generic.KeyValuePair item) { throw null; } + public bool Remove(System.Windows.Markup.XmlLanguage key) { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + void System.Collections.IDictionary.Add(object key, object value) { } + bool System.Collections.IDictionary.Contains(object key) { throw null; } + System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } + void System.Collections.IDictionary.Remove(object key) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + public bool TryGetValue(System.Windows.Markup.XmlLanguage key, out string value) { throw null; } + } + public sealed partial class LinearGradientBrush : System.Windows.Media.GradientBrush + { + public static readonly System.Windows.DependencyProperty EndPointProperty; + public static readonly System.Windows.DependencyProperty StartPointProperty; + public LinearGradientBrush() { } + public LinearGradientBrush(System.Windows.Media.Color startColor, System.Windows.Media.Color endColor, double angle) { } + public LinearGradientBrush(System.Windows.Media.Color startColor, System.Windows.Media.Color endColor, System.Windows.Point startPoint, System.Windows.Point endPoint) { } + public LinearGradientBrush(System.Windows.Media.GradientStopCollection gradientStopCollection) { } + public LinearGradientBrush(System.Windows.Media.GradientStopCollection gradientStopCollection, double angle) { } + public LinearGradientBrush(System.Windows.Media.GradientStopCollection gradientStopCollection, System.Windows.Point startPoint, System.Windows.Point endPoint) { } + public System.Windows.Point EndPoint { get { throw null; } set { } } + public System.Windows.Point StartPoint { get { throw null; } set { } } + public new System.Windows.Media.LinearGradientBrush Clone() { throw null; } + public new System.Windows.Media.LinearGradientBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class LineGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty EndPointProperty; + public static readonly System.Windows.DependencyProperty StartPointProperty; + public LineGeometry() { } + public LineGeometry(System.Windows.Point startPoint, System.Windows.Point endPoint) { } + public LineGeometry(System.Windows.Point startPoint, System.Windows.Point endPoint, System.Windows.Media.Transform transform) { } + public override System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Point EndPoint { get { throw null; } set { } } + public System.Windows.Point StartPoint { get { throw null; } set { } } + public new System.Windows.Media.LineGeometry Clone() { throw null; } + public new System.Windows.Media.LineGeometry CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override double GetArea(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + } + public sealed partial class LineSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty PointProperty; + public LineSegment() { } + public LineSegment(System.Windows.Point point, bool isStroked) { } + public System.Windows.Point Point { get { throw null; } set { } } + public new System.Windows.Media.LineSegment Clone() { throw null; } + public new System.Windows.Media.LineSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class MatrixTransform : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty MatrixProperty; + public MatrixTransform() { } + public MatrixTransform(double m11, double m12, double m21, double m22, double offsetX, double offsetY) { } + public MatrixTransform(System.Windows.Media.Matrix matrix) { } + public System.Windows.Media.Matrix Matrix { get { throw null; } set { } } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public new System.Windows.Media.MatrixTransform Clone() { throw null; } + public new System.Windows.Media.MatrixTransform CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class MediaClock : System.Windows.Media.Animation.Clock + { + protected internal MediaClock(System.Windows.Media.MediaTimeline media) : base(default(System.Windows.Media.Animation.Timeline)) { } + public new System.Windows.Media.MediaTimeline Timeline { get { throw null; } } + protected override void DiscontinuousTimeMovement() { } + protected override bool GetCanSlip() { throw null; } + protected override System.TimeSpan GetCurrentTimeCore() { throw null; } + protected override void SpeedChanged() { } + protected override void Stopped() { } + } + public partial class MediaPlayer : System.Windows.Media.Animation.Animatable + { + public MediaPlayer() { } + public double Balance { get { throw null; } set { } } + public double BufferingProgress { get { throw null; } } + public bool CanPause { get { throw null; } } + public System.Windows.Media.MediaClock Clock { get { throw null; } set { } } + public double DownloadProgress { get { throw null; } } + public bool HasAudio { get { throw null; } } + public bool HasVideo { get { throw null; } } + public bool IsBuffering { get { throw null; } } + public bool IsMuted { get { throw null; } set { } } + public System.Windows.Duration NaturalDuration { get { throw null; } } + public int NaturalVideoHeight { get { throw null; } } + public int NaturalVideoWidth { get { throw null; } } + public System.TimeSpan Position { get { throw null; } set { } } + public bool ScrubbingEnabled { get { throw null; } set { } } + public System.Uri Source { get { throw null; } } + public double SpeedRatio { get { throw null; } set { } } + public double Volume { get { throw null; } set { } } + public event System.EventHandler BufferingEnded { add { } remove { } } + public event System.EventHandler BufferingStarted { add { } remove { } } + public event System.EventHandler MediaEnded { add { } remove { } } + public event System.EventHandler MediaFailed { add { } remove { } } + public event System.EventHandler MediaOpened { add { } remove { } } + public event System.EventHandler ScriptCommand { add { } remove { } } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public void Close() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void Open(System.Uri source) { } + public void Pause() { } + public void Play() { } + protected new void ReadPreamble() { } + public void Stop() { } + protected new void WritePreamble() { } + } + public sealed partial class MediaScriptCommandEventArgs : System.EventArgs + { + internal MediaScriptCommandEventArgs() { } + public string ParameterType { get { throw null; } } + public string ParameterValue { get { throw null; } } + } + public partial class MediaTimeline : System.Windows.Media.Animation.Timeline, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public MediaTimeline() { } + public MediaTimeline(System.TimeSpan? beginTime) { } + public MediaTimeline(System.TimeSpan? beginTime, System.Windows.Duration duration) { } + public MediaTimeline(System.TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior) { } + public MediaTimeline(System.Uri source) { } + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + protected internal override System.Windows.Media.Animation.Clock AllocateClock() { throw null; } + public new System.Windows.Media.MediaTimeline Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.MediaTimeline CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.MediaClock CreateClock() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + public override string ToString() { throw null; } + } + public enum NumberCultureSource + { + Text = 0, + User = 1, + Override = 2, + } + public partial class NumberSubstitution + { + public static readonly System.Windows.DependencyProperty CultureOverrideProperty; + public static readonly System.Windows.DependencyProperty CultureSourceProperty; + public static readonly System.Windows.DependencyProperty SubstitutionProperty; + public NumberSubstitution() { } + public NumberSubstitution(System.Windows.Media.NumberCultureSource source, System.Globalization.CultureInfo cultureOverride, System.Windows.Media.NumberSubstitutionMethod substitution) { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public System.Globalization.CultureInfo CultureOverride { get { throw null; } set { } } + public System.Windows.Media.NumberCultureSource CultureSource { get { throw null; } set { } } + public System.Windows.Media.NumberSubstitutionMethod Substitution { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Globalization.CultureInfo GetCultureOverride(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Media.NumberCultureSource GetCultureSource(System.Windows.DependencyObject target) { throw null; } + public override int GetHashCode() { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Media.NumberSubstitutionMethod GetSubstitution(System.Windows.DependencyObject target) { throw null; } + public static void SetCultureOverride(System.Windows.DependencyObject target, System.Globalization.CultureInfo value) { } + public static void SetCultureSource(System.Windows.DependencyObject target, System.Windows.Media.NumberCultureSource value) { } + public static void SetSubstitution(System.Windows.DependencyObject target, System.Windows.Media.NumberSubstitutionMethod value) { } + } + public enum NumberSubstitutionMethod + { + AsCulture = 0, + Context = 1, + European = 2, + NativeNational = 3, + Traditional = 4, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Segments")] + public sealed partial class PathFigure : System.Windows.Media.Animation.Animatable, System.IFormattable + { + public static readonly System.Windows.DependencyProperty IsClosedProperty; + public static readonly System.Windows.DependencyProperty IsFilledProperty; + public static readonly System.Windows.DependencyProperty SegmentsProperty; + public static readonly System.Windows.DependencyProperty StartPointProperty; + public PathFigure() { } + public PathFigure(System.Windows.Point start, System.Collections.Generic.IEnumerable segments, bool closed) { } + public bool IsClosed { get { throw null; } set { } } + public bool IsFilled { get { throw null; } set { } } + public System.Windows.Media.PathSegmentCollection Segments { get { throw null; } set { } } + public System.Windows.Point StartPoint { get { throw null; } set { } } + public new System.Windows.Media.PathFigure Clone() { throw null; } + public new System.Windows.Media.PathFigure CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public System.Windows.Media.PathFigure GetFlattenedPathFigure() { throw null; } + public System.Windows.Media.PathFigure GetFlattenedPathFigure(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public bool MayHaveCurves() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.PathFigureCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.PathFigureCollectionValueSerializer))] + public sealed partial class PathFigureCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public PathFigureCollection() { } + public PathFigureCollection(System.Collections.Generic.IEnumerable collection) { } + public PathFigureCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.PathFigure this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.PathFigure value) { } + public void Clear() { } + public new System.Windows.Media.PathFigureCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.PathFigureCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.PathFigure value) { throw null; } + public void CopyTo(System.Windows.Media.PathFigure[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.PathFigureCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.PathFigure value) { throw null; } + public void Insert(int index, System.Windows.Media.PathFigure value) { } + public static System.Windows.Media.PathFigureCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Media.PathFigure value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.PathFigure Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class PathFigureCollectionConverter : System.ComponentModel.TypeConverter + { + public PathFigureCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Figures")] + public sealed partial class PathGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty FiguresProperty; + public static readonly System.Windows.DependencyProperty FillRuleProperty; + public PathGeometry() { } + public PathGeometry(System.Collections.Generic.IEnumerable figures) { } + public PathGeometry(System.Collections.Generic.IEnumerable figures, System.Windows.Media.FillRule fillRule, System.Windows.Media.Transform transform) { } + public override System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Media.PathFigureCollection Figures { get { throw null; } set { } } + public System.Windows.Media.FillRule FillRule { get { throw null; } set { } } + public void AddGeometry(System.Windows.Media.Geometry geometry) { } + public void Clear() { } + public new System.Windows.Media.PathGeometry Clone() { throw null; } + public new System.Windows.Media.PathGeometry CloneCurrentValue() { throw null; } + public static System.Windows.Media.PathGeometry CreateFromGeometry(System.Windows.Media.Geometry geometry) { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void GetPointAtFractionLength(double progress, out System.Windows.Point point, out System.Windows.Point tangent) { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + protected override void OnChanged() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class PathSegment : System.Windows.Media.Animation.Animatable + { + internal PathSegment() { } + public static readonly System.Windows.DependencyProperty IsSmoothJoinProperty; + public static readonly System.Windows.DependencyProperty IsStrokedProperty; + public bool IsSmoothJoin { get { throw null; } set { } } + public bool IsStroked { get { throw null; } set { } } + public new System.Windows.Media.PathSegment Clone() { throw null; } + public new System.Windows.Media.PathSegment CloneCurrentValue() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class PathSegmentCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public PathSegmentCollection() { } + public PathSegmentCollection(System.Collections.Generic.IEnumerable collection) { } + public PathSegmentCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.PathSegment this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.PathSegment value) { } + public void Clear() { } + public new System.Windows.Media.PathSegmentCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.PathSegmentCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.PathSegment value) { throw null; } + public void CopyTo(System.Windows.Media.PathSegment[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.PathSegmentCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.PathSegment value) { throw null; } + public void Insert(int index, System.Windows.Media.PathSegment value) { } + public bool Remove(System.Windows.Media.PathSegment value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.PathSegment Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class Pen : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty BrushProperty; + public static readonly System.Windows.DependencyProperty DashCapProperty; + public static readonly System.Windows.DependencyProperty DashStyleProperty; + public static readonly System.Windows.DependencyProperty EndLineCapProperty; + public static readonly System.Windows.DependencyProperty LineJoinProperty; + public static readonly System.Windows.DependencyProperty MiterLimitProperty; + public static readonly System.Windows.DependencyProperty StartLineCapProperty; + public static readonly System.Windows.DependencyProperty ThicknessProperty; + public Pen() { } + public Pen(System.Windows.Media.Brush brush, double thickness) { } + public System.Windows.Media.Brush Brush { get { throw null; } set { } } + public System.Windows.Media.PenLineCap DashCap { get { throw null; } set { } } + public System.Windows.Media.DashStyle DashStyle { get { throw null; } set { } } + public System.Windows.Media.PenLineCap EndLineCap { get { throw null; } set { } } + public System.Windows.Media.PenLineJoin LineJoin { get { throw null; } set { } } + public double MiterLimit { get { throw null; } set { } } + public System.Windows.Media.PenLineCap StartLineCap { get { throw null; } set { } } + public double Thickness { get { throw null; } set { } } + public new System.Windows.Media.Pen Clone() { throw null; } + public new System.Windows.Media.Pen CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public enum PenDashCap + { + Flat = 0, + Round = 2, + Triangle = 3, + } + public enum PenLineCap + { + Flat = 0, + Square = 1, + Round = 2, + Triangle = 3, + } + public enum PenLineJoin + { + Miter = 0, + Bevel = 1, + Round = 2, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.PixelFormatConverter))] + public partial struct PixelFormat : System.IEquatable + { + public int BitsPerPixel { get { throw null; } } + public System.Collections.Generic.IList Masks { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Media.PixelFormat pixelFormat) { throw null; } + public static bool Equals(System.Windows.Media.PixelFormat left, System.Windows.Media.PixelFormat right) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.PixelFormat left, System.Windows.Media.PixelFormat right) { throw null; } + public static bool operator !=(System.Windows.Media.PixelFormat left, System.Windows.Media.PixelFormat right) { throw null; } + public override string ToString() { throw null; } + } + public partial struct PixelFormatChannelMask + { + public System.Collections.Generic.IList Mask { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public static bool Equals(System.Windows.Media.PixelFormatChannelMask left, System.Windows.Media.PixelFormatChannelMask right) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.PixelFormatChannelMask left, System.Windows.Media.PixelFormatChannelMask right) { throw null; } + public static bool operator !=(System.Windows.Media.PixelFormatChannelMask left, System.Windows.Media.PixelFormatChannelMask right) { throw null; } + } + public sealed partial class PixelFormatConverter : System.ComponentModel.TypeConverter + { + public PixelFormatConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object o) { throw null; } + public new object ConvertFromString(string value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public static partial class PixelFormats + { + public static System.Windows.Media.PixelFormat Bgr101010 { get { throw null; } } + public static System.Windows.Media.PixelFormat Bgr24 { get { throw null; } } + public static System.Windows.Media.PixelFormat Bgr32 { get { throw null; } } + public static System.Windows.Media.PixelFormat Bgr555 { get { throw null; } } + public static System.Windows.Media.PixelFormat Bgr565 { get { throw null; } } + public static System.Windows.Media.PixelFormat Bgra32 { get { throw null; } } + public static System.Windows.Media.PixelFormat BlackWhite { get { throw null; } } + public static System.Windows.Media.PixelFormat Cmyk32 { get { throw null; } } + public static System.Windows.Media.PixelFormat Default { get { throw null; } } + public static System.Windows.Media.PixelFormat Gray16 { get { throw null; } } + public static System.Windows.Media.PixelFormat Gray2 { get { throw null; } } + public static System.Windows.Media.PixelFormat Gray32Float { get { throw null; } } + public static System.Windows.Media.PixelFormat Gray4 { get { throw null; } } + public static System.Windows.Media.PixelFormat Gray8 { get { throw null; } } + public static System.Windows.Media.PixelFormat Indexed1 { get { throw null; } } + public static System.Windows.Media.PixelFormat Indexed2 { get { throw null; } } + public static System.Windows.Media.PixelFormat Indexed4 { get { throw null; } } + public static System.Windows.Media.PixelFormat Indexed8 { get { throw null; } } + public static System.Windows.Media.PixelFormat Pbgra32 { get { throw null; } } + public static System.Windows.Media.PixelFormat Prgba128Float { get { throw null; } } + public static System.Windows.Media.PixelFormat Prgba64 { get { throw null; } } + public static System.Windows.Media.PixelFormat Rgb128Float { get { throw null; } } + public static System.Windows.Media.PixelFormat Rgb24 { get { throw null; } } + public static System.Windows.Media.PixelFormat Rgb48 { get { throw null; } } + public static System.Windows.Media.PixelFormat Rgba128Float { get { throw null; } } + public static System.Windows.Media.PixelFormat Rgba64 { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.PointCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.PointCollectionValueSerializer))] + public sealed partial class PointCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable, System.Collections.Generic.IList + { + public PointCollection() { } + public PointCollection(System.Collections.Generic.IEnumerable collection) { } + public PointCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Point this[int index] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Point value) { } + public void Clear() { } + public new System.Windows.Media.PointCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.PointCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Point value) { throw null; } + public void CopyTo(System.Windows.Point[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.PointCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Point value) { throw null; } + public void Insert(int index, System.Windows.Point value) { } + public static System.Windows.Media.PointCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Point value) { throw null; } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.IEnumerator, System.IDisposable, System.Collections.Generic.IEnumerator + { + public System.Windows.Point Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + + public sealed partial class PointCollectionConverter : System.ComponentModel.TypeConverter + { + public PointCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class PointHitTestParameters : System.Windows.Media.HitTestParameters + { + public PointHitTestParameters(System.Windows.Point point) { } + public System.Windows.Point HitPoint { get { throw null; } } + } + public partial class PointHitTestResult : System.Windows.Media.HitTestResult + { + public PointHitTestResult(System.Windows.Media.Visual visualHit, System.Windows.Point pointHit) { } + public System.Windows.Point PointHit { get { throw null; } } + public new System.Windows.Media.Visual VisualHit { get { throw null; } } + } + public sealed partial class PolyBezierSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty PointsProperty; + public PolyBezierSegment() { } + public PolyBezierSegment(System.Collections.Generic.IEnumerable points, bool isStroked) { } + public System.Windows.Media.PointCollection Points { get { throw null; } set { } } + public new System.Windows.Media.PolyBezierSegment Clone() { throw null; } + public new System.Windows.Media.PolyBezierSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class PolyLineSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty PointsProperty; + public PolyLineSegment() { } + public PolyLineSegment(System.Collections.Generic.IEnumerable points, bool isStroked) { } + public System.Windows.Media.PointCollection Points { get { throw null; } set { } } + public new System.Windows.Media.PolyLineSegment Clone() { throw null; } + public new System.Windows.Media.PolyLineSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class PolyQuadraticBezierSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty PointsProperty; + public PolyQuadraticBezierSegment() { } + public PolyQuadraticBezierSegment(System.Collections.Generic.IEnumerable points, bool isStroked) { } + public System.Windows.Media.PointCollection Points { get { throw null; } set { } } + public new System.Windows.Media.PolyQuadraticBezierSegment Clone() { throw null; } + public new System.Windows.Media.PolyQuadraticBezierSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class QuadraticBezierSegment : System.Windows.Media.PathSegment + { + public static readonly System.Windows.DependencyProperty Point1Property; + public static readonly System.Windows.DependencyProperty Point2Property; + public QuadraticBezierSegment() { } + public QuadraticBezierSegment(System.Windows.Point point1, System.Windows.Point point2, bool isStroked) { } + public System.Windows.Point Point1 { get { throw null; } set { } } + public System.Windows.Point Point2 { get { throw null; } set { } } + public new System.Windows.Media.QuadraticBezierSegment Clone() { throw null; } + public new System.Windows.Media.QuadraticBezierSegment CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class RadialGradientBrush : System.Windows.Media.GradientBrush + { + public static readonly System.Windows.DependencyProperty CenterProperty; + public static readonly System.Windows.DependencyProperty GradientOriginProperty; + public static readonly System.Windows.DependencyProperty RadiusXProperty; + public static readonly System.Windows.DependencyProperty RadiusYProperty; + public RadialGradientBrush() { } + public RadialGradientBrush(System.Windows.Media.Color startColor, System.Windows.Media.Color endColor) { } + public RadialGradientBrush(System.Windows.Media.GradientStopCollection gradientStopCollection) { } + public System.Windows.Point Center { get { throw null; } set { } } + public System.Windows.Point GradientOrigin { get { throw null; } set { } } + public double RadiusX { get { throw null; } set { } } + public double RadiusY { get { throw null; } set { } } + public new System.Windows.Media.RadialGradientBrush Clone() { throw null; } + public new System.Windows.Media.RadialGradientBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class RectangleGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty RadiusXProperty; + public static readonly System.Windows.DependencyProperty RadiusYProperty; + public static readonly System.Windows.DependencyProperty RectProperty; + public RectangleGeometry() { } + public RectangleGeometry(System.Windows.Rect rect) { } + public RectangleGeometry(System.Windows.Rect rect, double radiusX, double radiusY) { } + public RectangleGeometry(System.Windows.Rect rect, double radiusX, double radiusY, System.Windows.Media.Transform transform) { } + public override System.Windows.Rect Bounds { get { throw null; } } + public double RadiusX { get { throw null; } set { } } + public double RadiusY { get { throw null; } set { } } + public System.Windows.Rect Rect { get { throw null; } set { } } + public new System.Windows.Media.RectangleGeometry Clone() { throw null; } + public new System.Windows.Media.RectangleGeometry CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override double GetArea(double tolerance, System.Windows.Media.ToleranceType type) { throw null; } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + } + public static partial class RenderCapability + { + [System.ObsoleteAttribute("IsShaderEffectSoftwareRenderingSupported property is deprecated. Use IsPixelShaderVersionSupportedInSoftware static method instead.")] + public static bool IsShaderEffectSoftwareRenderingSupported { get { throw null; } } + public static System.Windows.Size MaxHardwareTextureSize { get { throw null; } } + public static int Tier { get { throw null; } } + public static event System.EventHandler TierChanged { add { } remove { } } + public static bool IsPixelShaderVersionSupported(short majorVersionRequested, short minorVersionRequested) { throw null; } + public static bool IsPixelShaderVersionSupportedInSoftware(short majorVersionRequested, short minorVersionRequested) { throw null; } + public static int MaxPixelShaderInstructionSlots(short majorVersionRequested, short minorVersionRequested) { throw null; } + } + public partial class RenderingEventArgs : System.EventArgs + { + internal RenderingEventArgs() { } + public System.TimeSpan RenderingTime { get { throw null; } } + } + public static partial class RenderOptions + { + public static readonly System.Windows.DependencyProperty BitmapScalingModeProperty; + public static readonly System.Windows.DependencyProperty CacheInvalidationThresholdMaximumProperty; + public static readonly System.Windows.DependencyProperty CacheInvalidationThresholdMinimumProperty; + public static readonly System.Windows.DependencyProperty CachingHintProperty; + public static readonly System.Windows.DependencyProperty ClearTypeHintProperty; + public static readonly System.Windows.DependencyProperty EdgeModeProperty; + public static System.Windows.Interop.RenderMode ProcessRenderMode { get { throw null; } set { } } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Media.BitmapScalingMode GetBitmapScalingMode(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.Media.TileBrush))] + public static double GetCacheInvalidationThresholdMaximum(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.Media.TileBrush))] + public static double GetCacheInvalidationThresholdMinimum(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.Media.TileBrush))] + public static System.Windows.Media.CachingHint GetCachingHint(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Media.ClearTypeHint GetClearTypeHint(System.Windows.DependencyObject target) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Media.EdgeMode GetEdgeMode(System.Windows.DependencyObject target) { throw null; } + public static void SetBitmapScalingMode(System.Windows.DependencyObject target, System.Windows.Media.BitmapScalingMode bitmapScalingMode) { } + public static void SetCacheInvalidationThresholdMaximum(System.Windows.DependencyObject target, double cacheInvalidationThresholdMaximum) { } + public static void SetCacheInvalidationThresholdMinimum(System.Windows.DependencyObject target, double cacheInvalidationThresholdMinimum) { } + public static void SetCachingHint(System.Windows.DependencyObject target, System.Windows.Media.CachingHint cachingHint) { } + public static void SetClearTypeHint(System.Windows.DependencyObject target, System.Windows.Media.ClearTypeHint clearTypeHint) { } + public static void SetEdgeMode(System.Windows.DependencyObject target, System.Windows.Media.EdgeMode edgeMode) { } + } + public sealed partial class RequestCachePolicyConverter : System.ComponentModel.TypeConverter + { + public RequestCachePolicyConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public sealed partial class RotateTransform : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty AngleProperty; + public static readonly System.Windows.DependencyProperty CenterXProperty; + public static readonly System.Windows.DependencyProperty CenterYProperty; + public RotateTransform() { } + public RotateTransform(double angle) { } + public RotateTransform(double angle, double centerX, double centerY) { } + public double Angle { get { throw null; } set { } } + public double CenterX { get { throw null; } set { } } + public double CenterY { get { throw null; } set { } } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public new System.Windows.Media.RotateTransform Clone() { throw null; } + public new System.Windows.Media.RotateTransform CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class ScaleTransform : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty CenterXProperty; + public static readonly System.Windows.DependencyProperty CenterYProperty; + public static readonly System.Windows.DependencyProperty ScaleXProperty; + public static readonly System.Windows.DependencyProperty ScaleYProperty; + public ScaleTransform() { } + public ScaleTransform(double scaleX, double scaleY) { } + public ScaleTransform(double scaleX, double scaleY, double centerX, double centerY) { } + public double CenterX { get { throw null; } set { } } + public double CenterY { get { throw null; } set { } } + public double ScaleX { get { throw null; } set { } } + public double ScaleY { get { throw null; } set { } } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public new System.Windows.Media.ScaleTransform Clone() { throw null; } + public new System.Windows.Media.ScaleTransform CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class SkewTransform : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty AngleXProperty; + public static readonly System.Windows.DependencyProperty AngleYProperty; + public static readonly System.Windows.DependencyProperty CenterXProperty; + public static readonly System.Windows.DependencyProperty CenterYProperty; + public SkewTransform() { } + public SkewTransform(double angleX, double angleY) { } + public SkewTransform(double angleX, double angleY, double centerX, double centerY) { } + public double AngleX { get { throw null; } set { } } + public double AngleY { get { throw null; } set { } } + public double CenterX { get { throw null; } set { } } + public double CenterY { get { throw null; } set { } } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public new System.Windows.Media.SkewTransform Clone() { throw null; } + public new System.Windows.Media.SkewTransform CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class SolidColorBrush : System.Windows.Media.Brush + { + public static readonly System.Windows.DependencyProperty ColorProperty; + public SolidColorBrush() { } + public SolidColorBrush(System.Windows.Media.Color color) { } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public new System.Windows.Media.SolidColorBrush Clone() { throw null; } + public new System.Windows.Media.SolidColorBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public static object DeserializeFrom(System.IO.BinaryReader reader) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.GeometryConverter))] + public sealed partial class StreamGeometry : System.Windows.Media.Geometry + { + public static readonly System.Windows.DependencyProperty FillRuleProperty; + public StreamGeometry() { } + public override System.Windows.Rect Bounds { get { throw null; } } + public System.Windows.Media.FillRule FillRule { get { throw null; } set { } } + public void Clear() { } + public new System.Windows.Media.StreamGeometry Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.StreamGeometry CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public override bool IsEmpty() { throw null; } + public override bool MayHaveCurves() { throw null; } + protected override void OnChanged() { } + public System.Windows.Media.StreamGeometryContext Open() { throw null; } + } + public abstract partial class StreamGeometryContext : System.Windows.Threading.DispatcherObject, System.IDisposable + { + internal StreamGeometryContext() { } + public abstract void ArcTo(System.Windows.Point point, System.Windows.Size size, double rotationAngle, bool isLargeArc, System.Windows.Media.SweepDirection sweepDirection, bool isStroked, bool isSmoothJoin); + public abstract void BeginFigure(System.Windows.Point startPoint, bool isFilled, bool isClosed); + public abstract void BezierTo(System.Windows.Point point1, System.Windows.Point point2, System.Windows.Point point3, bool isStroked, bool isSmoothJoin); + public virtual void Close() { } + public abstract void LineTo(System.Windows.Point point, bool isStroked, bool isSmoothJoin); + public abstract void PolyBezierTo(System.Collections.Generic.IList points, bool isStroked, bool isSmoothJoin); + public abstract void PolyLineTo(System.Collections.Generic.IList points, bool isStroked, bool isSmoothJoin); + public abstract void PolyQuadraticBezierTo(System.Collections.Generic.IList points, bool isStroked, bool isSmoothJoin); + public abstract void QuadraticBezierTo(System.Windows.Point point1, System.Windows.Point point2, bool isStroked, bool isSmoothJoin); + void System.IDisposable.Dispose() { } + } + public enum Stretch + { + None = 0, + Fill = 1, + Uniform = 2, + UniformToFill = 3, + } + [System.FlagsAttribute] + public enum StyleSimulations + { + None = 0, + BoldSimulation = 1, + ItalicSimulation = 2, + BoldItalicSimulation = 3, + } + public enum SweepDirection + { + Counterclockwise = 0, + Clockwise = 1, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class TextEffect : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty ClipProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty PositionCountProperty; + public static readonly System.Windows.DependencyProperty PositionStartProperty; + public static readonly System.Windows.DependencyProperty TransformProperty; + public TextEffect() { } + public TextEffect(System.Windows.Media.Transform transform, System.Windows.Media.Brush foreground, System.Windows.Media.Geometry clip, int positionStart, int positionCount) { } + public System.Windows.Media.Geometry Clip { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + public int PositionCount { get { throw null; } set { } } + public int PositionStart { get { throw null; } set { } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public new System.Windows.Media.TextEffect Clone() { throw null; } + public new System.Windows.Media.TextEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public sealed partial class TextEffectCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public TextEffectCollection() { } + public TextEffectCollection(System.Collections.Generic.IEnumerable collection) { } + public TextEffectCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.TextEffect this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.TextEffect value) { } + public void Clear() { } + public new System.Windows.Media.TextEffectCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.TextEffectCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.TextEffect value) { throw null; } + public void CopyTo(System.Windows.Media.TextEffect[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.TextEffectCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.TextEffect value) { throw null; } + public void Insert(int index, System.Windows.Media.TextEffect value) { } + public bool Remove(System.Windows.Media.TextEffect value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.TextEffect Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public enum TextHintingMode + { + Auto = 0, + Fixed = 1, + Animated = 2, + } + public enum TextRenderingMode + { + Auto = 0, + Aliased = 1, + Grayscale = 2, + ClearType = 3, + } + public abstract partial class TileBrush : System.Windows.Media.Brush + { + public static readonly System.Windows.DependencyProperty AlignmentXProperty; + public static readonly System.Windows.DependencyProperty AlignmentYProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public static readonly System.Windows.DependencyProperty TileModeProperty; + public static readonly System.Windows.DependencyProperty ViewboxProperty; + public static readonly System.Windows.DependencyProperty ViewboxUnitsProperty; + public static readonly System.Windows.DependencyProperty ViewportProperty; + public static readonly System.Windows.DependencyProperty ViewportUnitsProperty; + protected TileBrush() { } + public System.Windows.Media.AlignmentX AlignmentX { get { throw null; } set { } } + public System.Windows.Media.AlignmentY AlignmentY { get { throw null; } set { } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Media.TileMode TileMode { get { throw null; } set { } } + public System.Windows.Rect Viewbox { get { throw null; } set { } } + public System.Windows.Media.BrushMappingMode ViewboxUnits { get { throw null; } set { } } + public System.Windows.Rect Viewport { get { throw null; } set { } } + public System.Windows.Media.BrushMappingMode ViewportUnits { get { throw null; } set { } } + public new System.Windows.Media.TileBrush Clone() { throw null; } + public new System.Windows.Media.TileBrush CloneCurrentValue() { throw null; } + protected abstract void GetContentBounds(out System.Windows.Rect contentBounds); + } + public enum TileMode + { + None = 0, + FlipX = 1, + FlipY = 2, + FlipXY = 3, + Tile = 4, + } + public enum ToleranceType + { + Absolute = 0, + Relative = 1, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.TransformConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.TransformValueSerializer))] + public abstract partial class Transform : System.Windows.Media.GeneralTransform + { + internal Transform() { } + public static System.Windows.Media.Transform Identity { get { throw null; } } + public override System.Windows.Media.GeneralTransform Inverse { get { throw null; } } + public abstract System.Windows.Media.Matrix Value { get; } + public new System.Windows.Media.Transform Clone() { throw null; } + public new System.Windows.Media.Transform CloneCurrentValue() { throw null; } + public static System.Windows.Media.Transform Parse(string source) { throw null; } + public override System.Windows.Rect TransformBounds(System.Windows.Rect rect) { throw null; } + public override bool TryTransform(System.Windows.Point inPoint, out System.Windows.Point result) { throw null; } + } + public sealed partial class TransformCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public TransformCollection() { } + public TransformCollection(System.Collections.Generic.IEnumerable collection) { } + public TransformCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Transform this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Transform value) { } + public void Clear() { } + public new System.Windows.Media.TransformCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.TransformCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Transform value) { throw null; } + public void CopyTo(System.Windows.Media.Transform[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.TransformCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Transform value) { throw null; } + public void Insert(int index, System.Windows.Media.Transform value) { } + public bool Remove(System.Windows.Media.Transform value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Transform Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class TransformConverter : System.ComponentModel.TypeConverter + { + public TransformConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class TransformGroup : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public TransformGroup() { } + public System.Windows.Media.TransformCollection Children { get { throw null; } set { } } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public new System.Windows.Media.TransformGroup Clone() { throw null; } + public new System.Windows.Media.TransformGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class TranslateTransform : System.Windows.Media.Transform + { + public static readonly System.Windows.DependencyProperty XProperty; + public static readonly System.Windows.DependencyProperty YProperty; + public TranslateTransform() { } + public TranslateTransform(double offsetX, double offsetY) { } + public override System.Windows.Media.Matrix Value { get { throw null; } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public new System.Windows.Media.TranslateTransform Clone() { throw null; } + public new System.Windows.Media.TranslateTransform CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class Typeface + { + public Typeface(string typefaceName) { } + public Typeface(System.Windows.Media.FontFamily fontFamily, System.Windows.FontStyle style, System.Windows.FontWeight weight, System.Windows.FontStretch stretch) { } + public Typeface(System.Windows.Media.FontFamily fontFamily, System.Windows.FontStyle style, System.Windows.FontWeight weight, System.Windows.FontStretch stretch, System.Windows.Media.FontFamily fallbackFontFamily) { } + public double CapsHeight { get { throw null; } } + public System.Windows.Media.LanguageSpecificStringDictionary FaceNames { get { throw null; } } + public System.Windows.Media.FontFamily FontFamily { get { throw null; } } + public bool IsBoldSimulated { get { throw null; } } + public bool IsObliqueSimulated { get { throw null; } } + public System.Windows.FontStretch Stretch { get { throw null; } } + public double StrikethroughPosition { get { throw null; } } + public double StrikethroughThickness { get { throw null; } } + public System.Windows.FontStyle Style { get { throw null; } } + public double UnderlinePosition { get { throw null; } } + public double UnderlineThickness { get { throw null; } } + public System.Windows.FontWeight Weight { get { throw null; } } + public double XHeight { get { throw null; } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public bool TryGetGlyphTypeface(out System.Windows.Media.GlyphTypeface glyphTypeface) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.VectorCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Converters.VectorCollectionValueSerializer))] + public sealed partial class VectorCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable, System.Collections.Generic.IList + { + public VectorCollection() { } + public VectorCollection(System.Collections.Generic.IEnumerable collection) { } + public VectorCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Vector this[int index] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Vector value) { } + public void Clear() { } + public new System.Windows.Media.VectorCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.VectorCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Vector value) { throw null; } + public void CopyTo(System.Windows.Vector[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.VectorCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Vector value) { throw null; } + public void Insert(int index, System.Windows.Vector value) { } + public static System.Windows.Media.VectorCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Vector value) { throw null; } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.IEnumerator, System.IDisposable, System.Collections.Generic.IEnumerator + { + public System.Windows.Vector Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class VectorCollectionConverter : System.ComponentModel.TypeConverter + { + public VectorCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class VideoDrawing : System.Windows.Media.Drawing + { + public static readonly System.Windows.DependencyProperty PlayerProperty; + public static readonly System.Windows.DependencyProperty RectProperty; + public VideoDrawing() { } + public System.Windows.Media.MediaPlayer Player { get { throw null; } set { } } + public System.Windows.Rect Rect { get { throw null; } set { } } + public new System.Windows.Media.VideoDrawing Clone() { throw null; } + public new System.Windows.Media.VideoDrawing CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class Visual : System.Windows.DependencyObject + { + protected Visual() { } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected internal System.Windows.Media.Effects.BitmapEffect VisualBitmapEffect { get { throw null; } protected set { } } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected internal System.Windows.Media.Effects.BitmapEffectInput VisualBitmapEffectInput { get { throw null; } protected set { } } + protected internal System.Windows.Media.BitmapScalingMode VisualBitmapScalingMode { get { throw null; } protected set { } } + protected internal System.Windows.Media.CacheMode VisualCacheMode { get { throw null; } protected set { } } + protected virtual int VisualChildrenCount { get { throw null; } } + protected internal System.Windows.Media.ClearTypeHint VisualClearTypeHint { get { throw null; } set { } } + protected internal System.Windows.Media.Geometry VisualClip { get { throw null; } protected set { } } + protected internal System.Windows.Media.EdgeMode VisualEdgeMode { get { throw null; } protected set { } } + protected internal System.Windows.Media.Effects.Effect VisualEffect { get { throw null; } protected set { } } + protected internal System.Windows.Vector VisualOffset { get { throw null; } protected set { } } + protected internal double VisualOpacity { get { throw null; } protected set { } } + protected internal System.Windows.Media.Brush VisualOpacityMask { get { throw null; } protected set { } } + protected System.Windows.DependencyObject VisualParent { get { throw null; } } + protected internal System.Windows.Rect? VisualScrollableAreaClip { get { throw null; } protected set { } } + protected internal System.Windows.Media.TextHintingMode VisualTextHintingMode { get { throw null; } set { } } + protected internal System.Windows.Media.TextRenderingMode VisualTextRenderingMode { get { throw null; } set { } } + protected internal System.Windows.Media.Transform VisualTransform { get { throw null; } protected set { } } + protected internal System.Windows.Media.DoubleCollection VisualXSnappingGuidelines { get { throw null; } protected set { } } + protected internal System.Windows.Media.DoubleCollection VisualYSnappingGuidelines { get { throw null; } protected set { } } + protected void AddVisualChild(System.Windows.Media.Visual child) { } + public System.Windows.DependencyObject FindCommonVisualAncestor(System.Windows.DependencyObject otherVisual) { throw null; } + protected virtual System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected virtual System.Windows.Media.GeometryHitTestResult HitTestCore(System.Windows.Media.GeometryHitTestParameters hitTestParameters) { throw null; } + protected virtual System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + public bool IsAncestorOf(System.Windows.DependencyObject descendant) { throw null; } + public bool IsDescendantOf(System.Windows.DependencyObject ancestor) { throw null; } + protected virtual void OnDpiChanged(System.Windows.DpiScale oldDpi, System.Windows.DpiScale newDpi) { } + protected internal virtual void OnVisualChildrenChanged(System.Windows.DependencyObject visualAdded, System.Windows.DependencyObject visualRemoved) { } + protected internal virtual void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + public System.Windows.Point PointFromScreen(System.Windows.Point point) { throw null; } + public System.Windows.Point PointToScreen(System.Windows.Point point) { throw null; } + protected void RemoveVisualChild(System.Windows.Media.Visual child) { } + public System.Windows.Media.Media3D.GeneralTransform2DTo3D TransformToAncestor(System.Windows.Media.Media3D.Visual3D ancestor) { throw null; } + public System.Windows.Media.GeneralTransform TransformToAncestor(System.Windows.Media.Visual ancestor) { throw null; } + public System.Windows.Media.GeneralTransform TransformToDescendant(System.Windows.Media.Visual descendant) { throw null; } + public System.Windows.Media.GeneralTransform TransformToVisual(System.Windows.Media.Visual visual) { throw null; } + } + public sealed partial class VisualBrush : System.Windows.Media.TileBrush + { + public static readonly System.Windows.DependencyProperty AutoLayoutContentProperty; + public static readonly System.Windows.DependencyProperty VisualProperty; + public VisualBrush() { } + public VisualBrush(System.Windows.Media.Visual visual) { } + public bool AutoLayoutContent { get { throw null; } set { } } + public System.Windows.Media.Visual Visual { get { throw null; } set { } } + public new System.Windows.Media.VisualBrush Clone() { throw null; } + public new System.Windows.Media.VisualBrush CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetContentBounds(out System.Windows.Rect contentBounds) { throw null; } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + } + public sealed partial class VisualCollection : System.Collections.ICollection, System.Collections.IEnumerable + { + public VisualCollection(System.Windows.Media.Visual parent) { } + public int Capacity { get { throw null; } set { } } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Visual this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + public int Add(System.Windows.Media.Visual visual) { throw null; } + public void Clear() { } + public bool Contains(System.Windows.Media.Visual visual) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Media.Visual[] array, int index) { } + public System.Windows.Media.VisualCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Visual visual) { throw null; } + public void Insert(int index, System.Windows.Media.Visual visual) { } + public void Remove(System.Windows.Media.Visual visual) { } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + public partial struct Enumerator : System.Collections.IEnumerator + { + public System.Windows.Media.Visual Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + } + } + public partial class VisualTarget : System.Windows.Media.CompositionTarget + { + public VisualTarget(System.Windows.Media.HostVisual hostVisual) { } + public override System.Windows.Media.Matrix TransformFromDevice { get { throw null; } } + public override System.Windows.Media.Matrix TransformToDevice { get { throw null; } } + public override void Dispose() { } + } + public static partial class VisualTreeHelper + { + public static System.Windows.Media.Effects.BitmapEffect GetBitmapEffect(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.Effects.BitmapEffectInput GetBitmapEffectInput(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.CacheMode GetCacheMode(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.DependencyObject GetChild(System.Windows.DependencyObject reference, int childIndex) { throw null; } + public static int GetChildrenCount(System.Windows.DependencyObject reference) { throw null; } + public static System.Windows.Media.Geometry GetClip(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.Media3D.Rect3D GetContentBounds(System.Windows.Media.Media3D.Visual3D reference) { throw null; } + public static System.Windows.Rect GetContentBounds(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.Media3D.Rect3D GetDescendantBounds(System.Windows.Media.Media3D.Visual3D reference) { throw null; } + public static System.Windows.Rect GetDescendantBounds(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.DpiScale GetDpi(System.Windows.Media.Visual visual) { throw null; } + public static System.Windows.Media.DrawingGroup GetDrawing(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.EdgeMode GetEdgeMode(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.Effects.Effect GetEffect(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Vector GetOffset(System.Windows.Media.Visual reference) { throw null; } + public static double GetOpacity(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.Brush GetOpacityMask(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.DependencyObject GetParent(System.Windows.DependencyObject reference) { throw null; } + public static System.Windows.Media.Transform GetTransform(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.DoubleCollection GetXSnappingGuidelines(System.Windows.Media.Visual reference) { throw null; } + public static System.Windows.Media.DoubleCollection GetYSnappingGuidelines(System.Windows.Media.Visual reference) { throw null; } + public static void HitTest(System.Windows.Media.Media3D.Visual3D reference, System.Windows.Media.HitTestFilterCallback filterCallback, System.Windows.Media.HitTestResultCallback resultCallback, System.Windows.Media.Media3D.HitTestParameters3D hitTestParameters) { } + public static void HitTest(System.Windows.Media.Visual reference, System.Windows.Media.HitTestFilterCallback filterCallback, System.Windows.Media.HitTestResultCallback resultCallback, System.Windows.Media.HitTestParameters hitTestParameters) { } + public static System.Windows.Media.HitTestResult HitTest(System.Windows.Media.Visual reference, System.Windows.Point point) { throw null; } + public static void SetRootDpi(System.Windows.Media.Visual visual, System.Windows.DpiScale dpiInfo) { } + } +} +namespace System.Windows.Media.Animation +{ + public abstract partial class Animatable : System.Windows.Freezable, System.Windows.Media.Animation.IAnimatable + { + protected Animatable() { } + public bool HasAnimatedProperties { get { throw null; } } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public new System.Windows.Media.Animation.Animatable Clone() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + public object GetAnimationBaseValue(System.Windows.DependencyProperty dp) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static bool ShouldSerializeStoredWeakReference(System.Windows.DependencyObject target) { throw null; } + } + public partial class AnimationClock : System.Windows.Media.Animation.Clock + { + protected internal AnimationClock(System.Windows.Media.Animation.AnimationTimeline animation) : base(default(System.Windows.Media.Animation.Timeline)) { } + public new System.Windows.Media.Animation.AnimationTimeline Timeline { get { throw null; } } + public object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue) { throw null; } + } + public sealed partial class AnimationException : System.SystemException + { + internal AnimationException() { } + public System.Windows.Media.Animation.AnimationClock Clock { get { throw null; } } + public System.Windows.DependencyProperty Property { get { throw null; } } + public System.Windows.Media.Animation.IAnimatable Target { get { throw null; } } + } + public abstract partial class AnimationTimeline : System.Windows.Media.Animation.Timeline + { + public static readonly System.Windows.DependencyProperty IsAdditiveProperty; + public static readonly System.Windows.DependencyProperty IsCumulativeProperty; + protected AnimationTimeline() { } + public virtual bool IsDestinationDefault { get { throw null; } } + public abstract System.Type TargetPropertyType { get; } + protected internal override System.Windows.Media.Animation.Clock AllocateClock() { throw null; } + public new System.Windows.Media.Animation.AnimationTimeline Clone() { throw null; } + public new System.Windows.Media.Animation.AnimationClock CreateClock() { throw null; } + public virtual object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + } + public partial class BackEase : System.Windows.Media.Animation.EasingFunctionBase + { + public static readonly System.Windows.DependencyProperty AmplitudeProperty; + public BackEase() { } + public double Amplitude { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public abstract partial class BooleanAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected BooleanAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.BooleanAnimationBase Clone() { throw null; } + public bool GetCurrentValue(bool defaultOriginValue, bool defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract bool GetCurrentValueCore(bool defaultOriginValue, bool defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class BooleanAnimationUsingKeyFrames : System.Windows.Media.Animation.BooleanAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public BooleanAnimationUsingKeyFrames() { } + public System.Windows.Media.Animation.BooleanKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.BooleanAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.BooleanAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override bool GetCurrentValueCore(bool defaultOriginValue, bool defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class BooleanKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected BooleanKeyFrame() { } + protected BooleanKeyFrame(bool value) { } + protected BooleanKeyFrame(bool value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public bool Value { get { throw null; } set { } } + public bool InterpolateValue(bool baseValue, double keyFrameProgress) { throw null; } + protected abstract bool InterpolateValueCore(bool baseValue, double keyFrameProgress); + } + public partial class BooleanKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public BooleanKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.BooleanKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.BooleanKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.BooleanKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.BooleanKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.BooleanKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.BooleanKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.BooleanKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.BooleanKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.BooleanKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class BounceEase : System.Windows.Media.Animation.EasingFunctionBase + { + public static readonly System.Windows.DependencyProperty BouncesProperty; + public static readonly System.Windows.DependencyProperty BouncinessProperty; + public BounceEase() { } + public int Bounces { get { throw null; } set { } } + public double Bounciness { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class ByteAnimation : System.Windows.Media.Animation.ByteAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public ByteAnimation() { } + public ByteAnimation(byte fromValue, byte toValue, System.Windows.Duration duration) { } + public ByteAnimation(byte fromValue, byte toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public ByteAnimation(byte toValue, System.Windows.Duration duration) { } + public ByteAnimation(byte toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public byte? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public byte? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public byte? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.ByteAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override byte GetCurrentValueCore(byte defaultOriginValue, byte defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class ByteAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected ByteAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.ByteAnimationBase Clone() { throw null; } + public byte GetCurrentValue(byte defaultOriginValue, byte defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract byte GetCurrentValueCore(byte defaultOriginValue, byte defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class ByteAnimationUsingKeyFrames : System.Windows.Media.Animation.ByteAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public ByteAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.ByteKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.ByteAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.ByteAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override byte GetCurrentValueCore(byte defaultOriginValue, byte defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class ByteKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected ByteKeyFrame() { } + protected ByteKeyFrame(byte value) { } + protected ByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public byte Value { get { throw null; } set { } } + public byte InterpolateValue(byte baseValue, double keyFrameProgress) { throw null; } + protected abstract byte InterpolateValueCore(byte baseValue, double keyFrameProgress); + } + public partial class ByteKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public ByteKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.ByteKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.ByteKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.ByteKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.ByteKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.ByteKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.ByteKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.ByteKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.ByteKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.ByteKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public abstract partial class CharAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected CharAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.CharAnimationBase Clone() { throw null; } + public char GetCurrentValue(char defaultOriginValue, char defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract char GetCurrentValueCore(char defaultOriginValue, char defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class CharAnimationUsingKeyFrames : System.Windows.Media.Animation.CharAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public CharAnimationUsingKeyFrames() { } + public System.Windows.Media.Animation.CharKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.CharAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.CharAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override char GetCurrentValueCore(char defaultOriginValue, char defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class CharKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected CharKeyFrame() { } + protected CharKeyFrame(char value) { } + protected CharKeyFrame(char value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public char Value { get { throw null; } set { } } + public char InterpolateValue(char baseValue, double keyFrameProgress) { throw null; } + protected abstract char InterpolateValueCore(char baseValue, double keyFrameProgress); + } + public partial class CharKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public CharKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.CharKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.CharKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.CharKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.CharKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.CharKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.CharKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.CharKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.CharKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.CharKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class CircleEase : System.Windows.Media.Animation.EasingFunctionBase + { + public CircleEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class Clock : System.Windows.Threading.DispatcherObject + { + protected internal Clock(System.Windows.Media.Animation.Timeline timeline) { } + public System.Windows.Media.Animation.ClockController Controller { get { throw null; } } + public double? CurrentGlobalSpeed { get { throw null; } } + protected System.TimeSpan CurrentGlobalTime { get { throw null; } } + public int? CurrentIteration { get { throw null; } } + public double? CurrentProgress { get { throw null; } } + public System.Windows.Media.Animation.ClockState CurrentState { get { throw null; } } + public System.TimeSpan? CurrentTime { get { throw null; } } + public bool HasControllableRoot { get { throw null; } } + public bool IsPaused { get { throw null; } } + public System.Windows.Duration NaturalDuration { get { throw null; } } + public System.Windows.Media.Animation.Clock Parent { get { throw null; } } + public System.Windows.Media.Animation.Timeline Timeline { get { throw null; } } + public event System.EventHandler Completed { add { } remove { } } + public event System.EventHandler CurrentGlobalSpeedInvalidated { add { } remove { } } + public event System.EventHandler CurrentStateInvalidated { add { } remove { } } + public event System.EventHandler CurrentTimeInvalidated { add { } remove { } } + public event System.EventHandler RemoveRequested { add { } remove { } } + protected virtual void DiscontinuousTimeMovement() { } + protected virtual bool GetCanSlip() { throw null; } + protected virtual System.TimeSpan GetCurrentTimeCore() { throw null; } + protected virtual void SpeedChanged() { } + protected virtual void Stopped() { } + } + public partial class ClockCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable + { + internal ClockCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.Media.Animation.Clock this[int index] { get { throw null; } } + public void Add(System.Windows.Media.Animation.Clock item) { } + public void Clear() { } + public bool Contains(System.Windows.Media.Animation.Clock item) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Clock[] array, int index) { } + public override bool Equals(object obj) { throw null; } + public static bool Equals(System.Windows.Media.Animation.ClockCollection objA, System.Windows.Media.Animation.ClockCollection objB) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.Animation.ClockCollection objA, System.Windows.Media.Animation.ClockCollection objB) { throw null; } + public static bool operator !=(System.Windows.Media.Animation.ClockCollection objA, System.Windows.Media.Animation.ClockCollection objB) { throw null; } + public bool Remove(System.Windows.Media.Animation.Clock item) { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public sealed partial class ClockController : System.Windows.Threading.DispatcherObject + { + internal ClockController() { } + public System.Windows.Media.Animation.Clock Clock { get { throw null; } } + public double SpeedRatio { get { throw null; } set { } } + public void Begin() { } + public void Pause() { } + public void Remove() { } + public void Resume() { } + public void Seek(System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SeekAlignedToLastTick(System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SkipToFill() { } + public void Stop() { } + } + public partial class ClockGroup : System.Windows.Media.Animation.Clock + { + protected internal ClockGroup(System.Windows.Media.Animation.TimelineGroup timelineGroup) : base(default(System.Windows.Media.Animation.Timeline)) { } + public System.Windows.Media.Animation.ClockCollection Children { get { throw null; } } + public new System.Windows.Media.Animation.TimelineGroup Timeline { get { throw null; } } + } + public enum ClockState + { + Active = 0, + Filling = 1, + Stopped = 2, + } + public partial class ColorAnimation : System.Windows.Media.Animation.ColorAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public ColorAnimation() { } + public ColorAnimation(System.Windows.Media.Color toValue, System.Windows.Duration duration) { } + public ColorAnimation(System.Windows.Media.Color toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public ColorAnimation(System.Windows.Media.Color fromValue, System.Windows.Media.Color toValue, System.Windows.Duration duration) { } + public ColorAnimation(System.Windows.Media.Color fromValue, System.Windows.Media.Color toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Media.Color? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Media.Color? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Color? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.ColorAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Color GetCurrentValueCore(System.Windows.Media.Color defaultOriginValue, System.Windows.Media.Color defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class ColorAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected ColorAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.ColorAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Color GetCurrentValue(System.Windows.Media.Color defaultOriginValue, System.Windows.Media.Color defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Color GetCurrentValueCore(System.Windows.Media.Color defaultOriginValue, System.Windows.Media.Color defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class ColorAnimationUsingKeyFrames : System.Windows.Media.Animation.ColorAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public ColorAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.ColorKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.ColorAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.ColorAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Color GetCurrentValueCore(System.Windows.Media.Color defaultOriginValue, System.Windows.Media.Color defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class ColorKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected ColorKeyFrame() { } + protected ColorKeyFrame(System.Windows.Media.Color value) { } + protected ColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Color Value { get { throw null; } set { } } + public System.Windows.Media.Color InterpolateValue(System.Windows.Media.Color baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Color InterpolateValueCore(System.Windows.Media.Color baseValue, double keyFrameProgress); + } + public partial class ColorKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public ColorKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.ColorKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.ColorKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.ColorKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.ColorKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.ColorKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.ColorKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.ColorKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.ColorKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.ColorKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class CubicEase : System.Windows.Media.Animation.EasingFunctionBase + { + public CubicEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class DecimalAnimation : System.Windows.Media.Animation.DecimalAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public DecimalAnimation() { } + public DecimalAnimation(decimal fromValue, decimal toValue, System.Windows.Duration duration) { } + public DecimalAnimation(decimal fromValue, decimal toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public DecimalAnimation(decimal toValue, System.Windows.Duration duration) { } + public DecimalAnimation(decimal toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public decimal? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public decimal? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public decimal? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.DecimalAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override decimal GetCurrentValueCore(decimal defaultOriginValue, decimal defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class DecimalAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected DecimalAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.DecimalAnimationBase Clone() { throw null; } + public decimal GetCurrentValue(decimal defaultOriginValue, decimal defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract decimal GetCurrentValueCore(decimal defaultOriginValue, decimal defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class DecimalAnimationUsingKeyFrames : System.Windows.Media.Animation.DecimalAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public DecimalAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.DecimalKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.DecimalAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.DecimalAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override decimal GetCurrentValueCore(decimal defaultOriginValue, decimal defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class DecimalKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected DecimalKeyFrame() { } + protected DecimalKeyFrame(decimal value) { } + protected DecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public decimal Value { get { throw null; } set { } } + public decimal InterpolateValue(decimal baseValue, double keyFrameProgress) { throw null; } + protected abstract decimal InterpolateValueCore(decimal baseValue, double keyFrameProgress); + } + public partial class DecimalKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public DecimalKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.DecimalKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.DecimalKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.DecimalKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.DecimalKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.DecimalKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.DecimalKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.DecimalKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.DecimalKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.DecimalKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class DiscreteBooleanKeyFrame : System.Windows.Media.Animation.BooleanKeyFrame + { + public DiscreteBooleanKeyFrame() { } + public DiscreteBooleanKeyFrame(bool value) { } + public DiscreteBooleanKeyFrame(bool value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool InterpolateValueCore(bool baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteByteKeyFrame : System.Windows.Media.Animation.ByteKeyFrame + { + public DiscreteByteKeyFrame() { } + public DiscreteByteKeyFrame(byte value) { } + public DiscreteByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override byte InterpolateValueCore(byte baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteCharKeyFrame : System.Windows.Media.Animation.CharKeyFrame + { + public DiscreteCharKeyFrame() { } + public DiscreteCharKeyFrame(char value) { } + public DiscreteCharKeyFrame(char value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override char InterpolateValueCore(char baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteColorKeyFrame : System.Windows.Media.Animation.ColorKeyFrame + { + public DiscreteColorKeyFrame() { } + public DiscreteColorKeyFrame(System.Windows.Media.Color value) { } + public DiscreteColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Color InterpolateValueCore(System.Windows.Media.Color baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteDecimalKeyFrame : System.Windows.Media.Animation.DecimalKeyFrame + { + public DiscreteDecimalKeyFrame() { } + public DiscreteDecimalKeyFrame(decimal value) { } + public DiscreteDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override decimal InterpolateValueCore(decimal baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteDoubleKeyFrame : System.Windows.Media.Animation.DoubleKeyFrame + { + public DiscreteDoubleKeyFrame() { } + public DiscreteDoubleKeyFrame(double value) { } + public DiscreteDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double InterpolateValueCore(double baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteInt16KeyFrame : System.Windows.Media.Animation.Int16KeyFrame + { + public DiscreteInt16KeyFrame() { } + public DiscreteInt16KeyFrame(short value) { } + public DiscreteInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override short InterpolateValueCore(short baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteInt32KeyFrame : System.Windows.Media.Animation.Int32KeyFrame + { + public DiscreteInt32KeyFrame() { } + public DiscreteInt32KeyFrame(int value) { } + public DiscreteInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override int InterpolateValueCore(int baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteInt64KeyFrame : System.Windows.Media.Animation.Int64KeyFrame + { + public DiscreteInt64KeyFrame() { } + public DiscreteInt64KeyFrame(long value) { } + public DiscreteInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override long InterpolateValueCore(long baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteMatrixKeyFrame : System.Windows.Media.Animation.MatrixKeyFrame + { + public DiscreteMatrixKeyFrame() { } + public DiscreteMatrixKeyFrame(System.Windows.Media.Matrix value) { } + public DiscreteMatrixKeyFrame(System.Windows.Media.Matrix value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Matrix InterpolateValueCore(System.Windows.Media.Matrix baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteObjectKeyFrame : System.Windows.Media.Animation.ObjectKeyFrame + { + public DiscreteObjectKeyFrame() { } + public DiscreteObjectKeyFrame(object value) { } + public DiscreteObjectKeyFrame(object value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override object InterpolateValueCore(object baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscretePoint3DKeyFrame : System.Windows.Media.Animation.Point3DKeyFrame + { + public DiscretePoint3DKeyFrame() { } + public DiscretePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value) { } + public DiscretePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Point3D InterpolateValueCore(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscretePointKeyFrame : System.Windows.Media.Animation.PointKeyFrame + { + public DiscretePointKeyFrame() { } + public DiscretePointKeyFrame(System.Windows.Point value) { } + public DiscretePointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point InterpolateValueCore(System.Windows.Point baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteQuaternionKeyFrame : System.Windows.Media.Animation.QuaternionKeyFrame + { + public DiscreteQuaternionKeyFrame() { } + public DiscreteQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value) { } + public DiscreteQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Quaternion InterpolateValueCore(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteRectKeyFrame : System.Windows.Media.Animation.RectKeyFrame + { + public DiscreteRectKeyFrame() { } + public DiscreteRectKeyFrame(System.Windows.Rect value) { } + public DiscreteRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Rect InterpolateValueCore(System.Windows.Rect baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteRotation3DKeyFrame : System.Windows.Media.Animation.Rotation3DKeyFrame + { + public DiscreteRotation3DKeyFrame() { } + public DiscreteRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value) { } + public DiscreteRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Rotation3D InterpolateValueCore(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteSingleKeyFrame : System.Windows.Media.Animation.SingleKeyFrame + { + public DiscreteSingleKeyFrame() { } + public DiscreteSingleKeyFrame(float value) { } + public DiscreteSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override float InterpolateValueCore(float baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteSizeKeyFrame : System.Windows.Media.Animation.SizeKeyFrame + { + public DiscreteSizeKeyFrame() { } + public DiscreteSizeKeyFrame(System.Windows.Size value) { } + public DiscreteSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Size InterpolateValueCore(System.Windows.Size baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteStringKeyFrame : System.Windows.Media.Animation.StringKeyFrame + { + public DiscreteStringKeyFrame() { } + public DiscreteStringKeyFrame(string value) { } + public DiscreteStringKeyFrame(string value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override string InterpolateValueCore(string baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteVector3DKeyFrame : System.Windows.Media.Animation.Vector3DKeyFrame + { + public DiscreteVector3DKeyFrame() { } + public DiscreteVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value) { } + public DiscreteVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Vector3D InterpolateValueCore(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class DiscreteVectorKeyFrame : System.Windows.Media.Animation.VectorKeyFrame + { + public DiscreteVectorKeyFrame() { } + public DiscreteVectorKeyFrame(System.Windows.Vector value) { } + public DiscreteVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Vector InterpolateValueCore(System.Windows.Vector baseValue, double keyFrameProgress) { throw null; } + } + public partial class DoubleAnimation : System.Windows.Media.Animation.DoubleAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public DoubleAnimation() { } + public DoubleAnimation(double fromValue, double toValue, System.Windows.Duration duration) { } + public DoubleAnimation(double fromValue, double toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public DoubleAnimation(double toValue, System.Windows.Duration duration) { } + public DoubleAnimation(double toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public double? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public double? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public double? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.DoubleAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double GetCurrentValueCore(double defaultOriginValue, double defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class DoubleAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected DoubleAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.DoubleAnimationBase Clone() { throw null; } + public double GetCurrentValue(double defaultOriginValue, double defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract double GetCurrentValueCore(double defaultOriginValue, double defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class DoubleAnimationUsingKeyFrames : System.Windows.Media.Animation.DoubleAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public DoubleAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.DoubleKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override double GetCurrentValueCore(double defaultOriginValue, double defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public partial class DoubleAnimationUsingPath : System.Windows.Media.Animation.DoubleAnimationBase + { + public static readonly System.Windows.DependencyProperty PathGeometryProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public DoubleAnimationUsingPath() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.PathGeometry PathGeometry { get { throw null; } set { } } + public System.Windows.Media.Animation.PathAnimationSource Source { get { throw null; } set { } } + public new System.Windows.Media.Animation.DoubleAnimationUsingPath Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double GetCurrentValueCore(double defaultOriginValue, double defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected override void OnChanged() { } + } + public abstract partial class DoubleKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected DoubleKeyFrame() { } + protected DoubleKeyFrame(double value) { } + protected DoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public double Value { get { throw null; } set { } } + public double InterpolateValue(double baseValue, double keyFrameProgress) { throw null; } + protected abstract double InterpolateValueCore(double baseValue, double keyFrameProgress); + } + public partial class DoubleKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public DoubleKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.DoubleKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.DoubleKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.DoubleKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.DoubleKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.DoubleKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.DoubleKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.DoubleKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.DoubleKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.DoubleKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class EasingByteKeyFrame : System.Windows.Media.Animation.ByteKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingByteKeyFrame() { } + public EasingByteKeyFrame(byte value) { } + public EasingByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override byte InterpolateValueCore(byte baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingColorKeyFrame : System.Windows.Media.Animation.ColorKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingColorKeyFrame() { } + public EasingColorKeyFrame(System.Windows.Media.Color value) { } + public EasingColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Color InterpolateValueCore(System.Windows.Media.Color baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingDecimalKeyFrame : System.Windows.Media.Animation.DecimalKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingDecimalKeyFrame() { } + public EasingDecimalKeyFrame(decimal value) { } + public EasingDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override decimal InterpolateValueCore(decimal baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingDoubleKeyFrame : System.Windows.Media.Animation.DoubleKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingDoubleKeyFrame() { } + public EasingDoubleKeyFrame(double value) { } + public EasingDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double InterpolateValueCore(double baseValue, double keyFrameProgress) { throw null; } + } + public abstract partial class EasingFunctionBase : System.Windows.Freezable, System.Windows.Media.Animation.IEasingFunction + { + public static readonly System.Windows.DependencyProperty EasingModeProperty; + protected EasingFunctionBase() { } + public System.Windows.Media.Animation.EasingMode EasingMode { get { throw null; } set { } } + public double Ease(double normalizedTime) { throw null; } + protected abstract double EaseInCore(double normalizedTime); + } + public partial class EasingInt16KeyFrame : System.Windows.Media.Animation.Int16KeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingInt16KeyFrame() { } + public EasingInt16KeyFrame(short value) { } + public EasingInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override short InterpolateValueCore(short baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingInt32KeyFrame : System.Windows.Media.Animation.Int32KeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingInt32KeyFrame() { } + public EasingInt32KeyFrame(int value) { } + public EasingInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override int InterpolateValueCore(int baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingInt64KeyFrame : System.Windows.Media.Animation.Int64KeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingInt64KeyFrame() { } + public EasingInt64KeyFrame(long value) { } + public EasingInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override long InterpolateValueCore(long baseValue, double keyFrameProgress) { throw null; } + } + public enum EasingMode + { + EaseIn = 0, + EaseOut = 1, + EaseInOut = 2, + } + public partial class EasingPoint3DKeyFrame : System.Windows.Media.Animation.Point3DKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingPoint3DKeyFrame() { } + public EasingPoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value) { } + public EasingPoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingPoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Point3D InterpolateValueCore(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingPointKeyFrame : System.Windows.Media.Animation.PointKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingPointKeyFrame() { } + public EasingPointKeyFrame(System.Windows.Point value) { } + public EasingPointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingPointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point InterpolateValueCore(System.Windows.Point baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingQuaternionKeyFrame : System.Windows.Media.Animation.QuaternionKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty UseShortestPathProperty; + public EasingQuaternionKeyFrame() { } + public EasingQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value) { } + public EasingQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public bool UseShortestPath { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Quaternion InterpolateValueCore(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingRectKeyFrame : System.Windows.Media.Animation.RectKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingRectKeyFrame() { } + public EasingRectKeyFrame(System.Windows.Rect value) { } + public EasingRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Rect InterpolateValueCore(System.Windows.Rect baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingRotation3DKeyFrame : System.Windows.Media.Animation.Rotation3DKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingRotation3DKeyFrame() { } + public EasingRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value) { } + public EasingRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Rotation3D InterpolateValueCore(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingSingleKeyFrame : System.Windows.Media.Animation.SingleKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingSingleKeyFrame() { } + public EasingSingleKeyFrame(float value) { } + public EasingSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override float InterpolateValueCore(float baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingSizeKeyFrame : System.Windows.Media.Animation.SizeKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingSizeKeyFrame() { } + public EasingSizeKeyFrame(System.Windows.Size value) { } + public EasingSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Size InterpolateValueCore(System.Windows.Size baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingVector3DKeyFrame : System.Windows.Media.Animation.Vector3DKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingVector3DKeyFrame() { } + public EasingVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value) { } + public EasingVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Vector3D InterpolateValueCore(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingVectorKeyFrame : System.Windows.Media.Animation.VectorKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingVectorKeyFrame() { } + public EasingVectorKeyFrame(System.Windows.Vector value) { } + public EasingVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Vector InterpolateValueCore(System.Windows.Vector baseValue, double keyFrameProgress) { throw null; } + } + public partial class ElasticEase : System.Windows.Media.Animation.EasingFunctionBase + { + public static readonly System.Windows.DependencyProperty OscillationsProperty; + public static readonly System.Windows.DependencyProperty SpringinessProperty; + public ElasticEase() { } + public int Oscillations { get { throw null; } set { } } + public double Springiness { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class ExponentialEase : System.Windows.Media.Animation.EasingFunctionBase + { + public static readonly System.Windows.DependencyProperty ExponentProperty; + public ExponentialEase() { } + public double Exponent { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public enum FillBehavior + { + HoldEnd = 0, + Stop = 1, + } + public enum HandoffBehavior + { + SnapshotAndReplace = 0, + Compose = 1, + } + public partial interface IAnimatable + { + bool HasAnimatedProperties { get; } + void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock); + void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior); + void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation); + void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior); + object GetAnimationBaseValue(System.Windows.DependencyProperty dp); + } + public partial interface IAnimation + { + object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + public partial interface IEasingFunction + { + double Ease(double normalizedTime); + } + public partial interface IKeyFrame + { + System.Windows.Media.Animation.KeyTime KeyTime { get; set; } + object Value { get; set; } + } + public partial interface IKeyFrameAnimation + { + System.Collections.IList KeyFrames { get; set; } + } + public partial class Int16Animation : System.Windows.Media.Animation.Int16AnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Int16Animation() { } + public Int16Animation(short fromValue, short toValue, System.Windows.Duration duration) { } + public Int16Animation(short fromValue, short toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Int16Animation(short toValue, System.Windows.Duration duration) { } + public Int16Animation(short toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public short? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public short? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public short? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Int16Animation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override short GetCurrentValueCore(short defaultOriginValue, short defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Int16AnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Int16AnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Int16AnimationBase Clone() { throw null; } + public short GetCurrentValue(short defaultOriginValue, short defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract short GetCurrentValueCore(short defaultOriginValue, short defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Int16AnimationUsingKeyFrames : System.Windows.Media.Animation.Int16AnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Int16AnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Int16KeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Int16AnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Int16AnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override short GetCurrentValueCore(short defaultOriginValue, short defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Int16KeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Int16KeyFrame() { } + protected Int16KeyFrame(short value) { } + protected Int16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public short Value { get { throw null; } set { } } + public short InterpolateValue(short baseValue, double keyFrameProgress) { throw null; } + protected abstract short InterpolateValueCore(short baseValue, double keyFrameProgress); + } + public partial class Int16KeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Int16KeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Int16KeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Int16KeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Int16KeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Int16KeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Int16KeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Int16KeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Int16KeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Int16KeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Int16KeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class Int32Animation : System.Windows.Media.Animation.Int32AnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Int32Animation() { } + public Int32Animation(int fromValue, int toValue, System.Windows.Duration duration) { } + public Int32Animation(int fromValue, int toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Int32Animation(int toValue, System.Windows.Duration duration) { } + public Int32Animation(int toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public int? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public int? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public int? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Int32Animation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override int GetCurrentValueCore(int defaultOriginValue, int defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Int32AnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Int32AnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Int32AnimationBase Clone() { throw null; } + public int GetCurrentValue(int defaultOriginValue, int defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract int GetCurrentValueCore(int defaultOriginValue, int defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Int32AnimationUsingKeyFrames : System.Windows.Media.Animation.Int32AnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Int32AnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Int32KeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Int32AnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Int32AnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override int GetCurrentValueCore(int defaultOriginValue, int defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Int32KeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Int32KeyFrame() { } + protected Int32KeyFrame(int value) { } + protected Int32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public int Value { get { throw null; } set { } } + public int InterpolateValue(int baseValue, double keyFrameProgress) { throw null; } + protected abstract int InterpolateValueCore(int baseValue, double keyFrameProgress); + } + public partial class Int32KeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Int32KeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Int32KeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Int32KeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Int32KeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Int32KeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Int32KeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Int32KeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Int32KeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Int32KeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Int32KeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class Int64Animation : System.Windows.Media.Animation.Int64AnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Int64Animation() { } + public Int64Animation(long fromValue, long toValue, System.Windows.Duration duration) { } + public Int64Animation(long fromValue, long toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Int64Animation(long toValue, System.Windows.Duration duration) { } + public Int64Animation(long toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public long? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public long? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public long? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Int64Animation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override long GetCurrentValueCore(long defaultOriginValue, long defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Int64AnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Int64AnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Int64AnimationBase Clone() { throw null; } + public long GetCurrentValue(long defaultOriginValue, long defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract long GetCurrentValueCore(long defaultOriginValue, long defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Int64AnimationUsingKeyFrames : System.Windows.Media.Animation.Int64AnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Int64AnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Int64KeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Int64AnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Int64AnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override long GetCurrentValueCore(long defaultOriginValue, long defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Int64KeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Int64KeyFrame() { } + protected Int64KeyFrame(long value) { } + protected Int64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public long Value { get { throw null; } set { } } + public long InterpolateValue(long baseValue, double keyFrameProgress) { throw null; } + protected abstract long InterpolateValueCore(long baseValue, double keyFrameProgress); + } + public partial class Int64KeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Int64KeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Int64KeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Int64KeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Int64KeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Int64KeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Int64KeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Int64KeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Int64KeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Int64KeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Int64KeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.KeySplineConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public partial class KeySpline : System.Windows.Freezable, System.IFormattable + { + public KeySpline() { } + public KeySpline(double x1, double y1, double x2, double y2) { } + public KeySpline(System.Windows.Point controlPoint1, System.Windows.Point controlPoint2) { } + public System.Windows.Point ControlPoint1 { get { throw null; } set { } } + public System.Windows.Point ControlPoint2 { get { throw null; } set { } } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public double GetSplineProgress(double linearProgress) { throw null; } + protected override void OnChanged() { } + string System.IFormattable.ToString(string format, System.IFormatProvider formatProvider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider formatProvider) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.KeyTimeConverter))] + public partial struct KeyTime : System.IEquatable + { + public static System.Windows.Media.Animation.KeyTime Paced { get { throw null; } } + public double Percent { get { throw null; } } + public System.TimeSpan TimeSpan { get { throw null; } } + public System.Windows.Media.Animation.KeyTimeType Type { get { throw null; } } + public static System.Windows.Media.Animation.KeyTime Uniform { get { throw null; } } + public override bool Equals(object value) { throw null; } + public bool Equals(System.Windows.Media.Animation.KeyTime value) { throw null; } + public static bool Equals(System.Windows.Media.Animation.KeyTime keyTime1, System.Windows.Media.Animation.KeyTime keyTime2) { throw null; } + public static System.Windows.Media.Animation.KeyTime FromPercent(double percent) { throw null; } + public static System.Windows.Media.Animation.KeyTime FromTimeSpan(System.TimeSpan timeSpan) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.Animation.KeyTime keyTime1, System.Windows.Media.Animation.KeyTime keyTime2) { throw null; } + public static implicit operator System.Windows.Media.Animation.KeyTime(System.TimeSpan timeSpan) { throw null; } + public static bool operator !=(System.Windows.Media.Animation.KeyTime keyTime1, System.Windows.Media.Animation.KeyTime keyTime2) { throw null; } + public override string ToString() { throw null; } + } + public enum KeyTimeType : byte + { + Uniform = (byte)0, + Percent = (byte)1, + TimeSpan = (byte)2, + Paced = (byte)3, + } + public partial class LinearByteKeyFrame : System.Windows.Media.Animation.ByteKeyFrame + { + public LinearByteKeyFrame() { } + public LinearByteKeyFrame(byte value) { } + public LinearByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override byte InterpolateValueCore(byte baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearColorKeyFrame : System.Windows.Media.Animation.ColorKeyFrame + { + public LinearColorKeyFrame() { } + public LinearColorKeyFrame(System.Windows.Media.Color value) { } + public LinearColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Color InterpolateValueCore(System.Windows.Media.Color baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearDecimalKeyFrame : System.Windows.Media.Animation.DecimalKeyFrame + { + public LinearDecimalKeyFrame() { } + public LinearDecimalKeyFrame(decimal value) { } + public LinearDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override decimal InterpolateValueCore(decimal baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearDoubleKeyFrame : System.Windows.Media.Animation.DoubleKeyFrame + { + public LinearDoubleKeyFrame() { } + public LinearDoubleKeyFrame(double value) { } + public LinearDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double InterpolateValueCore(double baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearInt16KeyFrame : System.Windows.Media.Animation.Int16KeyFrame + { + public LinearInt16KeyFrame() { } + public LinearInt16KeyFrame(short value) { } + public LinearInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override short InterpolateValueCore(short baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearInt32KeyFrame : System.Windows.Media.Animation.Int32KeyFrame + { + public LinearInt32KeyFrame() { } + public LinearInt32KeyFrame(int value) { } + public LinearInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override int InterpolateValueCore(int baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearInt64KeyFrame : System.Windows.Media.Animation.Int64KeyFrame + { + public LinearInt64KeyFrame() { } + public LinearInt64KeyFrame(long value) { } + public LinearInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override long InterpolateValueCore(long baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearPoint3DKeyFrame : System.Windows.Media.Animation.Point3DKeyFrame + { + public LinearPoint3DKeyFrame() { } + public LinearPoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value) { } + public LinearPoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Point3D InterpolateValueCore(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearPointKeyFrame : System.Windows.Media.Animation.PointKeyFrame + { + public LinearPointKeyFrame() { } + public LinearPointKeyFrame(System.Windows.Point value) { } + public LinearPointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point InterpolateValueCore(System.Windows.Point baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearQuaternionKeyFrame : System.Windows.Media.Animation.QuaternionKeyFrame + { + public static readonly System.Windows.DependencyProperty UseShortestPathProperty; + public LinearQuaternionKeyFrame() { } + public LinearQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value) { } + public LinearQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime) { } + public bool UseShortestPath { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Quaternion InterpolateValueCore(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearRectKeyFrame : System.Windows.Media.Animation.RectKeyFrame + { + public LinearRectKeyFrame() { } + public LinearRectKeyFrame(System.Windows.Rect value) { } + public LinearRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Rect InterpolateValueCore(System.Windows.Rect baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearRotation3DKeyFrame : System.Windows.Media.Animation.Rotation3DKeyFrame + { + public LinearRotation3DKeyFrame() { } + public LinearRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value) { } + public LinearRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Rotation3D InterpolateValueCore(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearSingleKeyFrame : System.Windows.Media.Animation.SingleKeyFrame + { + public LinearSingleKeyFrame() { } + public LinearSingleKeyFrame(float value) { } + public LinearSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override float InterpolateValueCore(float baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearSizeKeyFrame : System.Windows.Media.Animation.SizeKeyFrame + { + public LinearSizeKeyFrame() { } + public LinearSizeKeyFrame(System.Windows.Size value) { } + public LinearSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Size InterpolateValueCore(System.Windows.Size baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearVector3DKeyFrame : System.Windows.Media.Animation.Vector3DKeyFrame + { + public LinearVector3DKeyFrame() { } + public LinearVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value) { } + public LinearVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Vector3D InterpolateValueCore(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearVectorKeyFrame : System.Windows.Media.Animation.VectorKeyFrame + { + public LinearVectorKeyFrame() { } + public LinearVectorKeyFrame(System.Windows.Vector value) { } + public LinearVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Vector InterpolateValueCore(System.Windows.Vector baseValue, double keyFrameProgress) { throw null; } + } + public abstract partial class MatrixAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected MatrixAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.MatrixAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Matrix GetCurrentValue(System.Windows.Media.Matrix defaultOriginValue, System.Windows.Media.Matrix defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Matrix GetCurrentValueCore(System.Windows.Media.Matrix defaultOriginValue, System.Windows.Media.Matrix defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class MatrixAnimationUsingKeyFrames : System.Windows.Media.Animation.MatrixAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public MatrixAnimationUsingKeyFrames() { } + public System.Windows.Media.Animation.MatrixKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.MatrixAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.MatrixAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Matrix GetCurrentValueCore(System.Windows.Media.Matrix defaultOriginValue, System.Windows.Media.Matrix defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public partial class MatrixAnimationUsingPath : System.Windows.Media.Animation.MatrixAnimationBase + { + public static readonly System.Windows.DependencyProperty DoesRotateWithTangentProperty; + public static readonly System.Windows.DependencyProperty IsAngleCumulativeProperty; + public static readonly System.Windows.DependencyProperty IsOffsetCumulativeProperty; + public static readonly System.Windows.DependencyProperty PathGeometryProperty; + public MatrixAnimationUsingPath() { } + public bool DoesRotateWithTangent { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsAngleCumulative { get { throw null; } set { } } + public bool IsOffsetCumulative { get { throw null; } set { } } + public System.Windows.Media.PathGeometry PathGeometry { get { throw null; } set { } } + public new System.Windows.Media.Animation.MatrixAnimationUsingPath Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Matrix GetCurrentValueCore(System.Windows.Media.Matrix defaultOriginValue, System.Windows.Media.Matrix defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected override void OnChanged() { } + } + public abstract partial class MatrixKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected MatrixKeyFrame() { } + protected MatrixKeyFrame(System.Windows.Media.Matrix value) { } + protected MatrixKeyFrame(System.Windows.Media.Matrix value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Matrix Value { get { throw null; } set { } } + public System.Windows.Media.Matrix InterpolateValue(System.Windows.Media.Matrix baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Matrix InterpolateValueCore(System.Windows.Media.Matrix baseValue, double keyFrameProgress); + } + public partial class MatrixKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public MatrixKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.MatrixKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.MatrixKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.MatrixKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.MatrixKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.MatrixKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.MatrixKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.MatrixKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.MatrixKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.MatrixKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public abstract partial class ObjectAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected ObjectAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.ObjectAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract object GetCurrentValueCore(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class ObjectAnimationUsingKeyFrames : System.Windows.Media.Animation.ObjectAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public ObjectAnimationUsingKeyFrames() { } + public System.Windows.Media.Animation.ObjectKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.ObjectAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.ObjectAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override object GetCurrentValueCore(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class ObjectKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected ObjectKeyFrame() { } + protected ObjectKeyFrame(object value) { } + protected ObjectKeyFrame(object value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public object Value { get { throw null; } set { } } + public object InterpolateValue(object baseValue, double keyFrameProgress) { throw null; } + protected abstract object InterpolateValueCore(object baseValue, double keyFrameProgress); + } + public partial class ObjectKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public ObjectKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.ObjectKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.ObjectKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.ObjectKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.ObjectKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.ObjectKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.ObjectKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.ObjectKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.ObjectKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.ObjectKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class ParallelTimeline : System.Windows.Media.Animation.TimelineGroup + { + public static readonly System.Windows.DependencyProperty SlipBehaviorProperty; + public ParallelTimeline() { } + public ParallelTimeline(System.TimeSpan? beginTime) { } + public ParallelTimeline(System.TimeSpan? beginTime, System.Windows.Duration duration) { } + public ParallelTimeline(System.TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior) { } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Media.Animation.SlipBehavior.Grow)] + public System.Windows.Media.Animation.SlipBehavior SlipBehavior { get { throw null; } set { } } + public new System.Windows.Media.Animation.ParallelTimeline Clone() { throw null; } + public new System.Windows.Media.Animation.ParallelTimeline CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + } + public enum PathAnimationSource : byte + { + X = (byte)0, + Y = (byte)1, + Angle = (byte)2, + } + public partial class Point3DAnimation : System.Windows.Media.Animation.Point3DAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Point3DAnimation() { } + public Point3DAnimation(System.Windows.Media.Media3D.Point3D toValue, System.Windows.Duration duration) { } + public Point3DAnimation(System.Windows.Media.Media3D.Point3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Point3DAnimation(System.Windows.Media.Media3D.Point3D fromValue, System.Windows.Media.Media3D.Point3D toValue, System.Windows.Duration duration) { } + public Point3DAnimation(System.Windows.Media.Media3D.Point3D fromValue, System.Windows.Media.Media3D.Point3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Media.Media3D.Point3D? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Point3DAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Point3D GetCurrentValueCore(System.Windows.Media.Media3D.Point3D defaultOriginValue, System.Windows.Media.Media3D.Point3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Point3DAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Point3DAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Point3DAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Media3D.Point3D GetCurrentValue(System.Windows.Media.Media3D.Point3D defaultOriginValue, System.Windows.Media.Media3D.Point3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Media3D.Point3D GetCurrentValueCore(System.Windows.Media.Media3D.Point3D defaultOriginValue, System.Windows.Media.Media3D.Point3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Point3DAnimationUsingKeyFrames : System.Windows.Media.Animation.Point3DAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Point3DAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Point3DKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Point3DAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Point3DAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Media3D.Point3D GetCurrentValueCore(System.Windows.Media.Media3D.Point3D defaultOriginValue, System.Windows.Media.Media3D.Point3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Point3DKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Point3DKeyFrame() { } + protected Point3DKeyFrame(System.Windows.Media.Media3D.Point3D value) { } + protected Point3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D InterpolateValue(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Media3D.Point3D InterpolateValueCore(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress); + } + public partial class Point3DKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Point3DKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Point3DKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Point3DKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Point3DKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Point3DKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Point3DKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Point3DKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Point3DKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Point3DKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Point3DKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class PointAnimation : System.Windows.Media.Animation.PointAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public PointAnimation() { } + public PointAnimation(System.Windows.Point toValue, System.Windows.Duration duration) { } + public PointAnimation(System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public PointAnimation(System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration) { } + public PointAnimation(System.Windows.Point fromValue, System.Windows.Point toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Point? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Point? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Point? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.PointAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point GetCurrentValueCore(System.Windows.Point defaultOriginValue, System.Windows.Point defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class PointAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected PointAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.PointAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Point GetCurrentValue(System.Windows.Point defaultOriginValue, System.Windows.Point defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Point GetCurrentValueCore(System.Windows.Point defaultOriginValue, System.Windows.Point defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class PointAnimationUsingKeyFrames : System.Windows.Media.Animation.PointAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public PointAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.PointKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.PointAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.PointAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Point GetCurrentValueCore(System.Windows.Point defaultOriginValue, System.Windows.Point defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public partial class PointAnimationUsingPath : System.Windows.Media.Animation.PointAnimationBase + { + public static readonly System.Windows.DependencyProperty PathGeometryProperty; + public PointAnimationUsingPath() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.PathGeometry PathGeometry { get { throw null; } set { } } + public new System.Windows.Media.Animation.PointAnimationUsingPath Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point GetCurrentValueCore(System.Windows.Point defaultOriginValue, System.Windows.Point defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected override void OnChanged() { } + } + public abstract partial class PointKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected PointKeyFrame() { } + protected PointKeyFrame(System.Windows.Point value) { } + protected PointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Point Value { get { throw null; } set { } } + public System.Windows.Point InterpolateValue(System.Windows.Point baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Point InterpolateValueCore(System.Windows.Point baseValue, double keyFrameProgress); + } + public partial class PointKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public PointKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.PointKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.PointKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.PointKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.PointKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.PointKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.PointKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.PointKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.PointKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.PointKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class PowerEase : System.Windows.Media.Animation.EasingFunctionBase + { + public static readonly System.Windows.DependencyProperty PowerProperty; + public PowerEase() { } + public double Power { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class QuadraticEase : System.Windows.Media.Animation.EasingFunctionBase + { + public QuadraticEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class QuarticEase : System.Windows.Media.Animation.EasingFunctionBase + { + public QuarticEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class QuaternionAnimation : System.Windows.Media.Animation.QuaternionAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public static readonly System.Windows.DependencyProperty UseShortestPathProperty; + public QuaternionAnimation() { } + public QuaternionAnimation(System.Windows.Media.Media3D.Quaternion toValue, System.Windows.Duration duration) { } + public QuaternionAnimation(System.Windows.Media.Media3D.Quaternion toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public QuaternionAnimation(System.Windows.Media.Media3D.Quaternion fromValue, System.Windows.Media.Media3D.Quaternion toValue, System.Windows.Duration duration) { } + public QuaternionAnimation(System.Windows.Media.Media3D.Quaternion fromValue, System.Windows.Media.Media3D.Quaternion toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Media.Media3D.Quaternion? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Media.Media3D.Quaternion? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Media3D.Quaternion? To { get { throw null; } set { } } + public bool UseShortestPath { get { throw null; } set { } } + public new System.Windows.Media.Animation.QuaternionAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Quaternion GetCurrentValueCore(System.Windows.Media.Media3D.Quaternion defaultOriginValue, System.Windows.Media.Media3D.Quaternion defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class QuaternionAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected QuaternionAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.QuaternionAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Media3D.Quaternion GetCurrentValue(System.Windows.Media.Media3D.Quaternion defaultOriginValue, System.Windows.Media.Media3D.Quaternion defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Media3D.Quaternion GetCurrentValueCore(System.Windows.Media.Media3D.Quaternion defaultOriginValue, System.Windows.Media.Media3D.Quaternion defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class QuaternionAnimationUsingKeyFrames : System.Windows.Media.Animation.QuaternionAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public QuaternionAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.QuaternionKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.QuaternionAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.QuaternionAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Media3D.Quaternion GetCurrentValueCore(System.Windows.Media.Media3D.Quaternion defaultOriginValue, System.Windows.Media.Media3D.Quaternion defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class QuaternionKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected QuaternionKeyFrame() { } + protected QuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value) { } + protected QuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Quaternion Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Quaternion InterpolateValue(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Media3D.Quaternion InterpolateValueCore(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress); + } + public partial class QuaternionKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public QuaternionKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.QuaternionKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.QuaternionKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.QuaternionKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.QuaternionKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.QuaternionKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.QuaternionKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.QuaternionKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.QuaternionKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.QuaternionKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class QuinticEase : System.Windows.Media.Animation.EasingFunctionBase + { + public QuinticEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class RectAnimation : System.Windows.Media.Animation.RectAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public RectAnimation() { } + public RectAnimation(System.Windows.Rect toValue, System.Windows.Duration duration) { } + public RectAnimation(System.Windows.Rect toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public RectAnimation(System.Windows.Rect fromValue, System.Windows.Rect toValue, System.Windows.Duration duration) { } + public RectAnimation(System.Windows.Rect fromValue, System.Windows.Rect toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Rect? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Rect? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Rect? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.RectAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Rect GetCurrentValueCore(System.Windows.Rect defaultOriginValue, System.Windows.Rect defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class RectAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected RectAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.RectAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Rect GetCurrentValue(System.Windows.Rect defaultOriginValue, System.Windows.Rect defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Rect GetCurrentValueCore(System.Windows.Rect defaultOriginValue, System.Windows.Rect defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class RectAnimationUsingKeyFrames : System.Windows.Media.Animation.RectAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public RectAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.RectKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.RectAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.RectAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Rect GetCurrentValueCore(System.Windows.Rect defaultOriginValue, System.Windows.Rect defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class RectKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected RectKeyFrame() { } + protected RectKeyFrame(System.Windows.Rect value) { } + protected RectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Rect Value { get { throw null; } set { } } + public System.Windows.Rect InterpolateValue(System.Windows.Rect baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Rect InterpolateValueCore(System.Windows.Rect baseValue, double keyFrameProgress); + } + public partial class RectKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public RectKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.RectKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.RectKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.RectKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.RectKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.RectKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.RectKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.RectKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.RectKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.RectKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Animation.RepeatBehaviorConverter))] + public partial struct RepeatBehavior : System.IFormattable + { + public RepeatBehavior(double count) { throw null; } + public RepeatBehavior(System.TimeSpan duration) { throw null; } + public double Count { get { throw null; } } + public System.TimeSpan Duration { get { throw null; } } + public static System.Windows.Media.Animation.RepeatBehavior Forever { get { throw null; } } + public bool HasCount { get { throw null; } } + public bool HasDuration { get { throw null; } } + public override bool Equals(object value) { throw null; } + public bool Equals(System.Windows.Media.Animation.RepeatBehavior repeatBehavior) { throw null; } + public static bool Equals(System.Windows.Media.Animation.RepeatBehavior repeatBehavior1, System.Windows.Media.Animation.RepeatBehavior repeatBehavior2) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.Animation.RepeatBehavior repeatBehavior1, System.Windows.Media.Animation.RepeatBehavior repeatBehavior2) { throw null; } + public static bool operator !=(System.Windows.Media.Animation.RepeatBehavior repeatBehavior1, System.Windows.Media.Animation.RepeatBehavior repeatBehavior2) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider formatProvider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider formatProvider) { throw null; } + } + public sealed partial class RepeatBehaviorConverter : System.ComponentModel.TypeConverter + { + public RepeatBehaviorConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo cultureInfo, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public partial class Rotation3DAnimation : System.Windows.Media.Animation.Rotation3DAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Rotation3DAnimation() { } + public Rotation3DAnimation(System.Windows.Media.Media3D.Rotation3D toValue, System.Windows.Duration duration) { } + public Rotation3DAnimation(System.Windows.Media.Media3D.Rotation3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Rotation3DAnimation(System.Windows.Media.Media3D.Rotation3D fromValue, System.Windows.Media.Media3D.Rotation3D toValue, System.Windows.Duration duration) { } + public Rotation3DAnimation(System.Windows.Media.Media3D.Rotation3D fromValue, System.Windows.Media.Media3D.Rotation3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Media.Media3D.Rotation3D By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Media.Media3D.Rotation3D From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Media3D.Rotation3D To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Rotation3DAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Rotation3D GetCurrentValueCore(System.Windows.Media.Media3D.Rotation3D defaultOriginValue, System.Windows.Media.Media3D.Rotation3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Rotation3DAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Rotation3DAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Rotation3DAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Media3D.Rotation3D GetCurrentValue(System.Windows.Media.Media3D.Rotation3D defaultOriginValue, System.Windows.Media.Media3D.Rotation3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Media3D.Rotation3D GetCurrentValueCore(System.Windows.Media.Media3D.Rotation3D defaultOriginValue, System.Windows.Media.Media3D.Rotation3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Rotation3DAnimationUsingKeyFrames : System.Windows.Media.Animation.Rotation3DAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Rotation3DAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Rotation3DKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Rotation3DAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Rotation3DAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Media3D.Rotation3D GetCurrentValueCore(System.Windows.Media.Media3D.Rotation3D defaultOriginValue, System.Windows.Media.Media3D.Rotation3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Rotation3DKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Rotation3DKeyFrame() { } + protected Rotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value) { } + protected Rotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Rotation3D Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Rotation3D InterpolateValue(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Media3D.Rotation3D InterpolateValueCore(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress); + } + public partial class Rotation3DKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Rotation3DKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Rotation3DKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Rotation3DKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Rotation3DKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Rotation3DKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Rotation3DKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Rotation3DKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Rotation3DKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Rotation3DKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Rotation3DKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class SineEase : System.Windows.Media.Animation.EasingFunctionBase + { + public SineEase() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double EaseInCore(double normalizedTime) { throw null; } + } + public partial class SingleAnimation : System.Windows.Media.Animation.SingleAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public SingleAnimation() { } + public SingleAnimation(float fromValue, float toValue, System.Windows.Duration duration) { } + public SingleAnimation(float fromValue, float toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public SingleAnimation(float toValue, System.Windows.Duration duration) { } + public SingleAnimation(float toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public float? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public float? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public float? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.SingleAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override float GetCurrentValueCore(float defaultOriginValue, float defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class SingleAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected SingleAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.SingleAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public float GetCurrentValue(float defaultOriginValue, float defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract float GetCurrentValueCore(float defaultOriginValue, float defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class SingleAnimationUsingKeyFrames : System.Windows.Media.Animation.SingleAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public SingleAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.SingleKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.SingleAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.SingleAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override float GetCurrentValueCore(float defaultOriginValue, float defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class SingleKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected SingleKeyFrame() { } + protected SingleKeyFrame(float value) { } + protected SingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public float Value { get { throw null; } set { } } + public float InterpolateValue(float baseValue, double keyFrameProgress) { throw null; } + protected abstract float InterpolateValueCore(float baseValue, double keyFrameProgress); + } + public partial class SingleKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public SingleKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.SingleKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.SingleKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.SingleKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.SingleKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.SingleKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.SingleKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.SingleKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.SingleKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.SingleKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class SizeAnimation : System.Windows.Media.Animation.SizeAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public SizeAnimation() { } + public SizeAnimation(System.Windows.Size toValue, System.Windows.Duration duration) { } + public SizeAnimation(System.Windows.Size toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public SizeAnimation(System.Windows.Size fromValue, System.Windows.Size toValue, System.Windows.Duration duration) { } + public SizeAnimation(System.Windows.Size fromValue, System.Windows.Size toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Size? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Size? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Size? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.SizeAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Size GetCurrentValueCore(System.Windows.Size defaultOriginValue, System.Windows.Size defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class SizeAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected SizeAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.SizeAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Size GetCurrentValue(System.Windows.Size defaultOriginValue, System.Windows.Size defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Size GetCurrentValueCore(System.Windows.Size defaultOriginValue, System.Windows.Size defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class SizeAnimationUsingKeyFrames : System.Windows.Media.Animation.SizeAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public SizeAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.SizeKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.SizeAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.SizeAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Size GetCurrentValueCore(System.Windows.Size defaultOriginValue, System.Windows.Size defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class SizeKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected SizeKeyFrame() { } + protected SizeKeyFrame(System.Windows.Size value) { } + protected SizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Size Value { get { throw null; } set { } } + public System.Windows.Size InterpolateValue(System.Windows.Size baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Size InterpolateValueCore(System.Windows.Size baseValue, double keyFrameProgress); + } + public partial class SizeKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public SizeKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.SizeKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.SizeKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.SizeKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.SizeKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.SizeKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.SizeKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.SizeKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.SizeKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.SizeKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public enum SlipBehavior + { + Grow = 0, + Slip = 1, + } + public partial class SplineByteKeyFrame : System.Windows.Media.Animation.ByteKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineByteKeyFrame() { } + public SplineByteKeyFrame(byte value) { } + public SplineByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineByteKeyFrame(byte value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override byte InterpolateValueCore(byte baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineColorKeyFrame : System.Windows.Media.Animation.ColorKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineColorKeyFrame() { } + public SplineColorKeyFrame(System.Windows.Media.Color value) { } + public SplineColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineColorKeyFrame(System.Windows.Media.Color value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Color InterpolateValueCore(System.Windows.Media.Color baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineDecimalKeyFrame : System.Windows.Media.Animation.DecimalKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineDecimalKeyFrame() { } + public SplineDecimalKeyFrame(decimal value) { } + public SplineDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineDecimalKeyFrame(decimal value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override decimal InterpolateValueCore(decimal baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineDoubleKeyFrame : System.Windows.Media.Animation.DoubleKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineDoubleKeyFrame() { } + public SplineDoubleKeyFrame(double value) { } + public SplineDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineDoubleKeyFrame(double value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override double InterpolateValueCore(double baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineInt16KeyFrame : System.Windows.Media.Animation.Int16KeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineInt16KeyFrame() { } + public SplineInt16KeyFrame(short value) { } + public SplineInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineInt16KeyFrame(short value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override short InterpolateValueCore(short baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineInt32KeyFrame : System.Windows.Media.Animation.Int32KeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineInt32KeyFrame() { } + public SplineInt32KeyFrame(int value) { } + public SplineInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineInt32KeyFrame(int value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override int InterpolateValueCore(int baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineInt64KeyFrame : System.Windows.Media.Animation.Int64KeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineInt64KeyFrame() { } + public SplineInt64KeyFrame(long value) { } + public SplineInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineInt64KeyFrame(long value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override long InterpolateValueCore(long baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplinePoint3DKeyFrame : System.Windows.Media.Animation.Point3DKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplinePoint3DKeyFrame() { } + public SplinePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value) { } + public SplinePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplinePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Point3D InterpolateValueCore(System.Windows.Media.Media3D.Point3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplinePointKeyFrame : System.Windows.Media.Animation.PointKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplinePointKeyFrame() { } + public SplinePointKeyFrame(System.Windows.Point value) { } + public SplinePointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplinePointKeyFrame(System.Windows.Point value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Point InterpolateValueCore(System.Windows.Point baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineQuaternionKeyFrame : System.Windows.Media.Animation.QuaternionKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public static readonly System.Windows.DependencyProperty UseShortestPathProperty; + public SplineQuaternionKeyFrame() { } + public SplineQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value) { } + public SplineQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineQuaternionKeyFrame(System.Windows.Media.Media3D.Quaternion value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + public bool UseShortestPath { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Quaternion InterpolateValueCore(System.Windows.Media.Media3D.Quaternion baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineRectKeyFrame : System.Windows.Media.Animation.RectKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineRectKeyFrame() { } + public SplineRectKeyFrame(System.Windows.Rect value) { } + public SplineRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineRectKeyFrame(System.Windows.Rect value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Rect InterpolateValueCore(System.Windows.Rect baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineRotation3DKeyFrame : System.Windows.Media.Animation.Rotation3DKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineRotation3DKeyFrame() { } + public SplineRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value) { } + public SplineRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineRotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Rotation3D InterpolateValueCore(System.Windows.Media.Media3D.Rotation3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineSingleKeyFrame : System.Windows.Media.Animation.SingleKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineSingleKeyFrame() { } + public SplineSingleKeyFrame(float value) { } + public SplineSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineSingleKeyFrame(float value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override float InterpolateValueCore(float baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineSizeKeyFrame : System.Windows.Media.Animation.SizeKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineSizeKeyFrame() { } + public SplineSizeKeyFrame(System.Windows.Size value) { } + public SplineSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineSizeKeyFrame(System.Windows.Size value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Size InterpolateValueCore(System.Windows.Size baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineVector3DKeyFrame : System.Windows.Media.Animation.Vector3DKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineVector3DKeyFrame() { } + public SplineVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value) { } + public SplineVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineVector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Vector3D InterpolateValueCore(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress) { throw null; } + } + public partial class SplineVectorKeyFrame : System.Windows.Media.Animation.VectorKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineVectorKeyFrame() { } + public SplineVectorKeyFrame(System.Windows.Vector value) { } + public SplineVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineVectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Vector InterpolateValueCore(System.Windows.Vector baseValue, double keyFrameProgress) { throw null; } + } + public abstract partial class StringAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected StringAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.StringAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public string GetCurrentValue(string defaultOriginValue, string defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract string GetCurrentValueCore(string defaultOriginValue, string defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class StringAnimationUsingKeyFrames : System.Windows.Media.Animation.StringAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public StringAnimationUsingKeyFrames() { } + public System.Windows.Media.Animation.StringKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.StringAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.StringAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override string GetCurrentValueCore(string defaultOriginValue, string defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class StringKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected StringKeyFrame() { } + protected StringKeyFrame(string value) { } + protected StringKeyFrame(string value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public string Value { get { throw null; } set { } } + public string InterpolateValue(string baseValue, double keyFrameProgress) { throw null; } + protected abstract string InterpolateValueCore(string baseValue, double keyFrameProgress); + } + public partial class StringKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public StringKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.StringKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.StringKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.StringKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.StringKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.StringKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.StringKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.StringKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.StringKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.StringKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + public abstract partial class Timeline : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty AccelerationRatioProperty; + public static readonly System.Windows.DependencyProperty AutoReverseProperty; + public static readonly System.Windows.DependencyProperty BeginTimeProperty; + public static readonly System.Windows.DependencyProperty DecelerationRatioProperty; + public static readonly System.Windows.DependencyProperty DesiredFrameRateProperty; + public static readonly System.Windows.DependencyProperty DurationProperty; + public static readonly System.Windows.DependencyProperty FillBehaviorProperty; + public static readonly System.Windows.DependencyProperty NameProperty; + public static readonly System.Windows.DependencyProperty RepeatBehaviorProperty; + public static readonly System.Windows.DependencyProperty SpeedRatioProperty; + protected Timeline() { } + protected Timeline(System.TimeSpan? beginTime) { } + protected Timeline(System.TimeSpan? beginTime, System.Windows.Duration duration) { } + protected Timeline(System.TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior) { } + public double AccelerationRatio { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool AutoReverse { get { throw null; } set { } } + public System.TimeSpan? BeginTime { get { throw null; } set { } } + public double DecelerationRatio { get { throw null; } set { } } + public System.Windows.Duration Duration { get { throw null; } set { } } + public System.Windows.Media.Animation.FillBehavior FillBehavior { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.ComponentModel.MergablePropertyAttribute(false)] + public string Name { get { throw null; } set { } } + public System.Windows.Media.Animation.RepeatBehavior RepeatBehavior { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(1)] + public double SpeedRatio { get { throw null; } set { } } + public event System.EventHandler Completed { add { } remove { } } + public event System.EventHandler CurrentGlobalSpeedInvalidated { add { } remove { } } + public event System.EventHandler CurrentStateInvalidated { add { } remove { } } + public event System.EventHandler CurrentTimeInvalidated { add { } remove { } } + public event System.EventHandler RemoveRequested { add { } remove { } } + protected internal virtual System.Windows.Media.Animation.Clock AllocateClock() { throw null; } + public new System.Windows.Media.Animation.Timeline Clone() { throw null; } + public new System.Windows.Media.Animation.Timeline CloneCurrentValue() { throw null; } + public System.Windows.Media.Animation.Clock CreateClock() { throw null; } + public System.Windows.Media.Animation.Clock CreateClock(bool hasControllableRoot) { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public static int? GetDesiredFrameRate(System.Windows.Media.Animation.Timeline timeline) { throw null; } + protected internal System.Windows.Duration GetNaturalDuration(System.Windows.Media.Animation.Clock clock) { throw null; } + protected virtual System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + public static void SetDesiredFrameRate(System.Windows.Media.Animation.Timeline timeline, int? desiredFrameRate) { } + } + public sealed partial class TimelineCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public TimelineCollection() { } + public TimelineCollection(System.Collections.Generic.IEnumerable collection) { } + public TimelineCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Animation.Timeline this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Animation.Timeline value) { } + public void Clear() { } + public new System.Windows.Media.Animation.TimelineCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Animation.TimelineCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Animation.Timeline value) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Timeline[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Animation.TimelineCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Timeline value) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Timeline value) { } + public bool Remove(System.Windows.Media.Animation.Timeline value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Animation.Timeline Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public abstract partial class TimelineGroup : System.Windows.Media.Animation.Timeline, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + protected TimelineGroup() { } + protected TimelineGroup(System.TimeSpan? beginTime) { } + protected TimelineGroup(System.TimeSpan? beginTime, System.Windows.Duration duration) { } + protected TimelineGroup(System.TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior) { } + public System.Windows.Media.Animation.TimelineCollection Children { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + protected internal override System.Windows.Media.Animation.Clock AllocateClock() { throw null; } + public new System.Windows.Media.Animation.TimelineGroup Clone() { throw null; } + public new System.Windows.Media.Animation.TimelineGroup CloneCurrentValue() { throw null; } + public new System.Windows.Media.Animation.ClockGroup CreateClock() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public enum TimeSeekOrigin + { + BeginTime = 0, + Duration = 1, + } + public partial class Vector3DAnimation : System.Windows.Media.Animation.Vector3DAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public Vector3DAnimation() { } + public Vector3DAnimation(System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration) { } + public Vector3DAnimation(System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public Vector3DAnimation(System.Windows.Media.Media3D.Vector3D fromValue, System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration) { } + public Vector3DAnimation(System.Windows.Media.Media3D.Vector3D fromValue, System.Windows.Media.Media3D.Vector3D toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Media.Media3D.Vector3D? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.Vector3DAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Media.Media3D.Vector3D GetCurrentValueCore(System.Windows.Media.Media3D.Vector3D defaultOriginValue, System.Windows.Media.Media3D.Vector3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class Vector3DAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected Vector3DAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.Vector3DAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Media.Media3D.Vector3D GetCurrentValue(System.Windows.Media.Media3D.Vector3D defaultOriginValue, System.Windows.Media.Media3D.Vector3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Media.Media3D.Vector3D GetCurrentValueCore(System.Windows.Media.Media3D.Vector3D defaultOriginValue, System.Windows.Media.Media3D.Vector3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class Vector3DAnimationUsingKeyFrames : System.Windows.Media.Animation.Vector3DAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public Vector3DAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.Vector3DKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.Vector3DAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.Vector3DAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Media.Media3D.Vector3D GetCurrentValueCore(System.Windows.Media.Media3D.Vector3D defaultOriginValue, System.Windows.Media.Media3D.Vector3D defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class Vector3DKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected Vector3DKeyFrame() { } + protected Vector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value) { } + protected Vector3DKeyFrame(System.Windows.Media.Media3D.Vector3D value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D Value { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D InterpolateValue(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Media.Media3D.Vector3D InterpolateValueCore(System.Windows.Media.Media3D.Vector3D baseValue, double keyFrameProgress); + } + public partial class Vector3DKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Vector3DKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.Vector3DKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.Vector3DKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.Vector3DKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.Vector3DKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.Vector3DKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.Vector3DKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.Vector3DKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.Vector3DKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.Vector3DKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } + public partial class VectorAnimation : System.Windows.Media.Animation.VectorAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public VectorAnimation() { } + public VectorAnimation(System.Windows.Vector toValue, System.Windows.Duration duration) { } + public VectorAnimation(System.Windows.Vector toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public VectorAnimation(System.Windows.Vector fromValue, System.Windows.Vector toValue, System.Windows.Duration duration) { } + public VectorAnimation(System.Windows.Vector fromValue, System.Windows.Vector toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Vector? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Vector? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Vector? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.VectorAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Vector GetCurrentValueCore(System.Windows.Vector defaultOriginValue, System.Windows.Vector defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class VectorAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected VectorAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.VectorAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Vector GetCurrentValue(System.Windows.Vector defaultOriginValue, System.Windows.Vector defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Vector GetCurrentValueCore(System.Windows.Vector defaultOriginValue, System.Windows.Vector defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class VectorAnimationUsingKeyFrames : System.Windows.Media.Animation.VectorAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public VectorAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.VectorKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.VectorAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.VectorAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Vector GetCurrentValueCore(System.Windows.Vector defaultOriginValue, System.Windows.Vector defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class VectorKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected VectorKeyFrame() { } + protected VectorKeyFrame(System.Windows.Vector value) { } + protected VectorKeyFrame(System.Windows.Vector value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Vector Value { get { throw null; } set { } } + public System.Windows.Vector InterpolateValue(System.Windows.Vector baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Vector InterpolateValueCore(System.Windows.Vector baseValue, double keyFrameProgress); + } + public partial class VectorKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public VectorKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.VectorKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.VectorKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.VectorKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.VectorKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.VectorKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.VectorKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.VectorKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.VectorKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.VectorKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } +} +namespace System.Windows.Media.Converters +{ + public abstract partial class BaseIListConverter : System.ComponentModel.TypeConverter + { + protected BaseIListConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Type t) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext td, System.Globalization.CultureInfo ci, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class BoolIListConverter : System.Windows.Media.Converters.BaseIListConverter + { + public BoolIListConverter() { } + } + public partial class BrushValueSerializer : System.Windows.Markup.ValueSerializer + { + public BrushValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class CacheModeValueSerializer : System.Windows.Markup.ValueSerializer + { + public CacheModeValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public sealed partial class CharIListConverter : System.Windows.Media.Converters.BaseIListConverter + { + public CharIListConverter() { } + } + public partial class DoubleCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public DoubleCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public sealed partial class DoubleIListConverter : System.Windows.Media.Converters.BaseIListConverter + { + public DoubleIListConverter() { } + } + public partial class GeometryValueSerializer : System.Windows.Markup.ValueSerializer + { + public GeometryValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Int32CollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public Int32CollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class PathFigureCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public PathFigureCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class PointCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public PointCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public sealed partial class PointIListConverter : System.Windows.Media.Converters.BaseIListConverter + { + public PointIListConverter() { } + } + public partial class TransformValueSerializer : System.Windows.Markup.ValueSerializer + { + public TransformValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public sealed partial class UShortIListConverter : System.Windows.Media.Converters.BaseIListConverter + { + public UShortIListConverter() { } + } + public partial class VectorCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public VectorCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } +} +namespace System.Windows.Media.Effects +{ + public sealed partial class BevelBitmapEffect : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty BevelWidthProperty; + public static readonly System.Windows.DependencyProperty EdgeProfileProperty; + public static readonly System.Windows.DependencyProperty LightAngleProperty; + public static readonly System.Windows.DependencyProperty ReliefProperty; + public static readonly System.Windows.DependencyProperty SmoothnessProperty; + public BevelBitmapEffect() { } + public double BevelWidth { get { throw null; } set { } } + public System.Windows.Media.Effects.EdgeProfile EdgeProfile { get { throw null; } set { } } + public double LightAngle { get { throw null; } set { } } + public double Relief { get { throw null; } set { } } + public double Smoothness { get { throw null; } set { } } + public new System.Windows.Media.Effects.BevelBitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.BevelBitmapEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public abstract partial class BitmapEffect : System.Windows.Media.Animation.Animatable + { + protected BitmapEffect() { } + public new System.Windows.Media.Effects.BitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.BitmapEffect CloneCurrentValue() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected static System.Runtime.InteropServices.SafeHandle CreateBitmapEffectOuter() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected abstract System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect(); + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Imaging.BitmapSource GetOutput(System.Windows.Media.Effects.BitmapEffectInput input) { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected static void InitializeBitmapEffect(System.Runtime.InteropServices.SafeHandle outerObject, System.Runtime.InteropServices.SafeHandle innerObject) { } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected static void SetValue(System.Runtime.InteropServices.SafeHandle effect, string propertyName, object value) { } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected abstract void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect); + } + public sealed partial class BitmapEffectCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public BitmapEffectCollection() { } + public BitmapEffectCollection(System.Collections.Generic.IEnumerable collection) { } + public BitmapEffectCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Effects.BitmapEffect this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Effects.BitmapEffect value) { } + public void Clear() { } + public new System.Windows.Media.Effects.BitmapEffectCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Effects.BitmapEffectCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Effects.BitmapEffect value) { throw null; } + public void CopyTo(System.Windows.Media.Effects.BitmapEffect[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Effects.BitmapEffectCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Effects.BitmapEffect value) { throw null; } + public void Insert(int index, System.Windows.Media.Effects.BitmapEffect value) { } + public bool Remove(System.Windows.Media.Effects.BitmapEffect value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Effects.BitmapEffect Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class BitmapEffectGroup : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public BitmapEffectGroup() { } + public System.Windows.Media.Effects.BitmapEffectCollection Children { get { throw null; } set { } } + public new System.Windows.Media.Effects.BitmapEffectGroup Clone() { throw null; } + public new System.Windows.Media.Effects.BitmapEffectGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public sealed partial class BitmapEffectInput : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty AreaToApplyEffectProperty; + public static readonly System.Windows.DependencyProperty AreaToApplyEffectUnitsProperty; + public static readonly System.Windows.DependencyProperty InputProperty; + public BitmapEffectInput() { } + public BitmapEffectInput(System.Windows.Media.Imaging.BitmapSource input) { } + public System.Windows.Rect AreaToApplyEffect { get { throw null; } set { } } + public System.Windows.Media.BrushMappingMode AreaToApplyEffectUnits { get { throw null; } set { } } + public static System.Windows.Media.Imaging.BitmapSource ContextInputSource { get { throw null; } } + public System.Windows.Media.Imaging.BitmapSource Input { get { throw null; } set { } } + public new System.Windows.Media.Effects.BitmapEffectInput Clone() { throw null; } + public new System.Windows.Media.Effects.BitmapEffectInput CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInput() { throw null; } + } + public sealed partial class BlurBitmapEffect : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty KernelTypeProperty; + public static readonly System.Windows.DependencyProperty RadiusProperty; + public BlurBitmapEffect() { } + public System.Windows.Media.Effects.KernelType KernelType { get { throw null; } set { } } + public double Radius { get { throw null; } set { } } + public new System.Windows.Media.Effects.BlurBitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.BlurBitmapEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public sealed partial class BlurEffect : System.Windows.Media.Effects.Effect + { + public static readonly System.Windows.DependencyProperty KernelTypeProperty; + public static readonly System.Windows.DependencyProperty RadiusProperty; + public static readonly System.Windows.DependencyProperty RenderingBiasProperty; + public BlurEffect() { } + public System.Windows.Media.Effects.KernelType KernelType { get { throw null; } set { } } + public double Radius { get { throw null; } set { } } + public System.Windows.Media.Effects.RenderingBias RenderingBias { get { throw null; } set { } } + public new System.Windows.Media.Effects.BlurEffect Clone() { throw null; } + public new System.Windows.Media.Effects.BlurEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class DropShadowBitmapEffect : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty ColorProperty; + public static readonly System.Windows.DependencyProperty DirectionProperty; + public static readonly System.Windows.DependencyProperty NoiseProperty; + public static readonly System.Windows.DependencyProperty OpacityProperty; + public static readonly System.Windows.DependencyProperty ShadowDepthProperty; + public static readonly System.Windows.DependencyProperty SoftnessProperty; + public DropShadowBitmapEffect() { } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public double Direction { get { throw null; } set { } } + public double Noise { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public double ShadowDepth { get { throw null; } set { } } + public double Softness { get { throw null; } set { } } + public new System.Windows.Media.Effects.DropShadowBitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.DropShadowBitmapEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public sealed partial class DropShadowEffect : System.Windows.Media.Effects.Effect + { + public static readonly System.Windows.DependencyProperty BlurRadiusProperty; + public static readonly System.Windows.DependencyProperty ColorProperty; + public static readonly System.Windows.DependencyProperty DirectionProperty; + public static readonly System.Windows.DependencyProperty OpacityProperty; + public static readonly System.Windows.DependencyProperty RenderingBiasProperty; + public static readonly System.Windows.DependencyProperty ShadowDepthProperty; + public DropShadowEffect() { } + public double BlurRadius { get { throw null; } set { } } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public double Direction { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Effects.RenderingBias RenderingBias { get { throw null; } set { } } + public double ShadowDepth { get { throw null; } set { } } + public new System.Windows.Media.Effects.DropShadowEffect Clone() { throw null; } + public new System.Windows.Media.Effects.DropShadowEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public enum EdgeProfile + { + Linear = 0, + CurvedIn = 1, + CurvedOut = 2, + BulgedUp = 3, + } + public abstract partial class Effect : System.Windows.Media.Animation.Animatable + { + protected Effect() { } + protected internal virtual System.Windows.Media.GeneralTransform EffectMapping { get { throw null; } } + [System.ComponentModel.BrowsableAttribute(false)] + public static System.Windows.Media.Brush ImplicitInput { get { throw null; } } + public new System.Windows.Media.Effects.Effect Clone() { throw null; } + public new System.Windows.Media.Effects.Effect CloneCurrentValue() { throw null; } + } + public sealed partial class EmbossBitmapEffect : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty LightAngleProperty; + public static readonly System.Windows.DependencyProperty ReliefProperty; + public EmbossBitmapEffect() { } + public double LightAngle { get { throw null; } set { } } + public double Relief { get { throw null; } set { } } + public new System.Windows.Media.Effects.EmbossBitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.EmbossBitmapEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public enum KernelType + { + Gaussian = 0, + Box = 1, + } + public sealed partial class OuterGlowBitmapEffect : System.Windows.Media.Effects.BitmapEffect + { + public static readonly System.Windows.DependencyProperty GlowColorProperty; + public static readonly System.Windows.DependencyProperty GlowSizeProperty; + public static readonly System.Windows.DependencyProperty NoiseProperty; + public static readonly System.Windows.DependencyProperty OpacityProperty; + public OuterGlowBitmapEffect() { } + public System.Windows.Media.Color GlowColor { get { throw null; } set { } } + public double GlowSize { get { throw null; } set { } } + public double Noise { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public new System.Windows.Media.Effects.OuterGlowBitmapEffect Clone() { throw null; } + public new System.Windows.Media.Effects.OuterGlowBitmapEffect CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override System.Runtime.InteropServices.SafeHandle CreateUnmanagedEffect() { throw null; } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + protected override void UpdateUnmanagedPropertyState(System.Runtime.InteropServices.SafeHandle unmanagedEffect) { } + } + public sealed partial class PixelShader : System.Windows.Media.Animation.Animatable + { + public static readonly System.Windows.DependencyProperty ShaderRenderModeProperty; + public static readonly System.Windows.DependencyProperty UriSourceProperty; + public PixelShader() { } + public System.Windows.Media.Effects.ShaderRenderMode ShaderRenderMode { get { throw null; } set { } } + public System.Uri UriSource { get { throw null; } set { } } + public static event System.EventHandler InvalidPixelShaderEncountered { add { } remove { } } + public new System.Windows.Media.Effects.PixelShader Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Effects.PixelShader CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void SetStreamSource(System.IO.Stream source) { } + } + public enum RenderingBias + { + Performance = 0, + Quality = 1, + } + public enum SamplingMode + { + NearestNeighbor = 0, + Bilinear = 1, + Auto = 2, + } + public abstract partial class ShaderEffect : System.Windows.Media.Effects.Effect + { + protected static readonly System.Windows.DependencyProperty PixelShaderProperty; + protected ShaderEffect() { } + protected int DdxUvDdyUvRegisterIndex { get { throw null; } set { } } + protected double PaddingBottom { get { throw null; } set { } } + protected double PaddingLeft { get { throw null; } set { } } + protected double PaddingRight { get { throw null; } set { } } + protected double PaddingTop { get { throw null; } set { } } + protected System.Windows.Media.Effects.PixelShader PixelShader { get { throw null; } set { } } + public new System.Windows.Media.Effects.ShaderEffect Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Effects.ShaderEffect CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected static System.Windows.PropertyChangedCallback PixelShaderConstantCallback(int floatRegisterIndex) { throw null; } + protected static System.Windows.PropertyChangedCallback PixelShaderSamplerCallback(int samplerRegisterIndex) { throw null; } + protected static System.Windows.PropertyChangedCallback PixelShaderSamplerCallback(int samplerRegisterIndex, System.Windows.Media.Effects.SamplingMode samplingMode) { throw null; } + protected static System.Windows.DependencyProperty RegisterPixelShaderSamplerProperty(string dpName, System.Type ownerType, int samplerRegisterIndex) { throw null; } + protected static System.Windows.DependencyProperty RegisterPixelShaderSamplerProperty(string dpName, System.Type ownerType, int samplerRegisterIndex, System.Windows.Media.Effects.SamplingMode samplingMode) { throw null; } + protected void UpdateShaderValue(System.Windows.DependencyProperty dp) { } + } + public enum ShaderRenderMode + { + Auto = 0, + SoftwareOnly = 1, + HardwareOnly = 2, + } +} +namespace System.Windows.Media.Imaging +{ + public enum BitmapCacheOption + { + Default = 0, + OnDemand = 0, + OnLoad = 1, + None = 2, + } + public abstract partial class BitmapCodecInfo + { + protected BitmapCodecInfo() { } + public virtual string Author { get { throw null; } } + public virtual System.Guid ContainerFormat { get { throw null; } } + public virtual string DeviceManufacturer { get { throw null; } } + public virtual string DeviceModels { get { throw null; } } + public virtual string FileExtensions { get { throw null; } } + public virtual string FriendlyName { get { throw null; } } + public virtual string MimeTypes { get { throw null; } } + public virtual System.Version SpecificationVersion { get { throw null; } } + public virtual bool SupportsAnimation { get { throw null; } } + public virtual bool SupportsLossless { get { throw null; } } + public virtual bool SupportsMultipleFrames { get { throw null; } } + public virtual System.Version Version { get { throw null; } } + } + [System.FlagsAttribute] + public enum BitmapCreateOptions + { + None = 0, + PreservePixelFormat = 1, + DelayCreation = 2, + IgnoreColorProfile = 4, + IgnoreImageCache = 8, + } + public abstract partial class BitmapDecoder : System.Windows.Threading.DispatcherObject + { + protected BitmapDecoder() { } + public virtual System.Windows.Media.Imaging.BitmapCodecInfo CodecInfo { get { throw null; } } + public virtual System.Collections.ObjectModel.ReadOnlyCollection ColorContexts { get { throw null; } } + public virtual System.Collections.ObjectModel.ReadOnlyCollection Frames { get { throw null; } } + public virtual bool IsDownloading { get { throw null; } } + public virtual System.Windows.Media.Imaging.BitmapMetadata Metadata { get { throw null; } } + public virtual System.Windows.Media.Imaging.BitmapPalette Palette { get { throw null; } } + public virtual System.Windows.Media.Imaging.BitmapSource Preview { get { throw null; } } + public virtual System.Windows.Media.Imaging.BitmapSource Thumbnail { get { throw null; } } + public virtual event System.EventHandler DownloadCompleted { add { } remove { } } + public virtual event System.EventHandler DownloadFailed { add { } remove { } } + public virtual event System.EventHandler DownloadProgress { add { } remove { } } + public static System.Windows.Media.Imaging.BitmapDecoder Create(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { throw null; } + public static System.Windows.Media.Imaging.BitmapDecoder Create(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { throw null; } + public static System.Windows.Media.Imaging.BitmapDecoder Create(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption, System.Net.Cache.RequestCachePolicy uriCachePolicy) { throw null; } + public virtual System.Windows.Media.Imaging.InPlaceBitmapMetadataWriter CreateInPlaceBitmapMetadataWriter() { throw null; } + ~BitmapDecoder() { } + public override string ToString() { throw null; } + } + public abstract partial class BitmapEncoder : System.Windows.Threading.DispatcherObject + { + protected BitmapEncoder() { } + public virtual System.Windows.Media.Imaging.BitmapCodecInfo CodecInfo { get { throw null; } } + public virtual System.Collections.ObjectModel.ReadOnlyCollection ColorContexts { get { throw null; } set { } } + public virtual System.Collections.Generic.IList Frames { get { throw null; } set { } } + public virtual System.Windows.Media.Imaging.BitmapMetadata Metadata { get { throw null; } set { } } + public virtual System.Windows.Media.Imaging.BitmapPalette Palette { get { throw null; } set { } } + public virtual System.Windows.Media.Imaging.BitmapSource Preview { get { throw null; } set { } } + public virtual System.Windows.Media.Imaging.BitmapSource Thumbnail { get { throw null; } set { } } + public static System.Windows.Media.Imaging.BitmapEncoder Create(System.Guid containerFormat) { throw null; } + public virtual void Save(System.IO.Stream stream) { } + } + public abstract partial class BitmapFrame : System.Windows.Media.Imaging.BitmapSource, System.Windows.Markup.IUriContext + { + protected BitmapFrame() { } + public abstract System.Uri BaseUri { get; set; } + public abstract System.Collections.ObjectModel.ReadOnlyCollection ColorContexts { get; } + public abstract System.Windows.Media.Imaging.BitmapDecoder Decoder { get; } + public abstract System.Windows.Media.Imaging.BitmapSource Thumbnail { get; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.IO.Stream bitmapStream) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Uri bitmapUri) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Uri bitmapUri, System.Net.Cache.RequestCachePolicy uriCachePolicy) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption, System.Net.Cache.RequestCachePolicy uriCachePolicy) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Windows.Media.Imaging.BitmapSource source) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.Imaging.BitmapSource thumbnail) { throw null; } + public static System.Windows.Media.Imaging.BitmapFrame Create(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.Imaging.BitmapSource thumbnail, System.Windows.Media.Imaging.BitmapMetadata metadata, System.Collections.ObjectModel.ReadOnlyCollection colorContexts) { throw null; } + public abstract System.Windows.Media.Imaging.InPlaceBitmapMetadataWriter CreateInPlaceBitmapMetadataWriter(); + } + public sealed partial class BitmapImage : System.Windows.Media.Imaging.BitmapSource, System.ComponentModel.ISupportInitialize, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty CacheOptionProperty; + public static readonly System.Windows.DependencyProperty CreateOptionsProperty; + public static readonly System.Windows.DependencyProperty DecodePixelHeightProperty; + public static readonly System.Windows.DependencyProperty DecodePixelWidthProperty; + public static readonly System.Windows.DependencyProperty RotationProperty; + public static readonly System.Windows.DependencyProperty SourceRectProperty; + public static readonly System.Windows.DependencyProperty StreamSourceProperty; + public static readonly System.Windows.DependencyProperty UriCachePolicyProperty; + public static readonly System.Windows.DependencyProperty UriSourceProperty; + public BitmapImage() { } + public BitmapImage(System.Uri uriSource) { } + public BitmapImage(System.Uri uriSource, System.Net.Cache.RequestCachePolicy uriCachePolicy) { } + public System.Uri BaseUri { get { throw null; } set { } } + public System.Windows.Media.Imaging.BitmapCacheOption CacheOption { get { throw null; } set { } } + public System.Windows.Media.Imaging.BitmapCreateOptions CreateOptions { get { throw null; } set { } } + public int DecodePixelHeight { get { throw null; } set { } } + public int DecodePixelWidth { get { throw null; } set { } } + public override bool IsDownloading { get { throw null; } } + public override System.Windows.Media.ImageMetadata Metadata { get { throw null; } } + public System.Windows.Media.Imaging.Rotation Rotation { get { throw null; } set { } } + public System.Windows.Int32Rect SourceRect { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.IO.Stream StreamSource { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.RequestCachePolicyConverter))] + public System.Net.Cache.RequestCachePolicy UriCachePolicy { get { throw null; } set { } } + public System.Uri UriSource { get { throw null; } set { } } + public void BeginInit() { } + public new System.Windows.Media.Imaging.BitmapImage Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Imaging.BitmapImage CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void EndInit() { } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + } + public partial class BitmapMetadata : System.Windows.Media.ImageMetadata, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable + { + public BitmapMetadata(string containerFormat) { } + public string ApplicationName { get { throw null; } set { } } + public System.Collections.ObjectModel.ReadOnlyCollection Author { get { throw null; } set { } } + public string CameraManufacturer { get { throw null; } set { } } + public string CameraModel { get { throw null; } set { } } + public string Comment { get { throw null; } set { } } + public string Copyright { get { throw null; } set { } } + public string DateTaken { get { throw null; } set { } } + public string Format { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection Keywords { get { throw null; } set { } } + public string Location { get { throw null; } } + public int Rating { get { throw null; } set { } } + public string Subject { get { throw null; } set { } } + public string Title { get { throw null; } set { } } + public new System.Windows.Media.Imaging.BitmapMetadata Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool ContainsQuery(string query) { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public object GetQuery(string query) { throw null; } + public void RemoveQuery(string query) { } + public void SetQuery(string query, object value) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public partial class BitmapMetadataBlob + { + public BitmapMetadataBlob(byte[] blob) { } + public byte[] GetBlobValue() { throw null; } + } + public sealed partial class BitmapPalette : System.Windows.Threading.DispatcherObject + { + public BitmapPalette(System.Collections.Generic.IList colors) { } + public BitmapPalette(System.Windows.Media.Imaging.BitmapSource bitmapSource, int maxColorCount) { } + public System.Collections.Generic.IList Colors { get { throw null; } } + } + public static partial class BitmapPalettes + { + public static System.Windows.Media.Imaging.BitmapPalette BlackAndWhite { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette BlackAndWhiteTransparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray16 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray16Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray256 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray256Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray4 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Gray4Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone125 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone125Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone216 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone216Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone252 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone252Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone256 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone256Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone27 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone27Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone64 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone64Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone8 { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette Halftone8Transparent { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette WebPalette { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapPalette WebPaletteTransparent { get { throw null; } } + } + public partial class BitmapSizeOptions + { + internal BitmapSizeOptions() { } + public int PixelHeight { get { throw null; } } + public int PixelWidth { get { throw null; } } + public bool PreservesAspectRatio { get { throw null; } } + public System.Windows.Media.Imaging.Rotation Rotation { get { throw null; } } + public static System.Windows.Media.Imaging.BitmapSizeOptions FromEmptyOptions() { throw null; } + public static System.Windows.Media.Imaging.BitmapSizeOptions FromHeight(int pixelHeight) { throw null; } + public static System.Windows.Media.Imaging.BitmapSizeOptions FromRotation(System.Windows.Media.Imaging.Rotation rotation) { throw null; } + public static System.Windows.Media.Imaging.BitmapSizeOptions FromWidth(int pixelWidth) { throw null; } + public static System.Windows.Media.Imaging.BitmapSizeOptions FromWidthAndHeight(int pixelWidth, int pixelHeight) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class BitmapSource : System.Windows.Media.ImageSource + { + protected BitmapSource() { } + public virtual double DpiX { get { throw null; } } + public virtual double DpiY { get { throw null; } } + public virtual System.Windows.Media.PixelFormat Format { get { throw null; } } + public override double Height { get { throw null; } } + public virtual bool IsDownloading { get { throw null; } } + public override System.Windows.Media.ImageMetadata Metadata { get { throw null; } } + public virtual System.Windows.Media.Imaging.BitmapPalette Palette { get { throw null; } } + public virtual int PixelHeight { get { throw null; } } + public virtual int PixelWidth { get { throw null; } } + public override double Width { get { throw null; } } + public virtual event System.EventHandler DecodeFailed { add { } remove { } } + public virtual event System.EventHandler DownloadCompleted { add { } remove { } } + public virtual event System.EventHandler DownloadFailed { add { } remove { } } + public virtual event System.EventHandler DownloadProgress { add { } remove { } } + protected void CheckIfSiteOfOrigin() { } + public new System.Windows.Media.Imaging.BitmapSource Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Imaging.BitmapSource CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public virtual void CopyPixels(System.Array pixels, int stride, int offset) { } + public virtual void CopyPixels(System.Windows.Int32Rect sourceRect, System.Array pixels, int stride, int offset) { } + public virtual void CopyPixels(System.Windows.Int32Rect sourceRect, System.IntPtr buffer, int bufferSize, int stride) { } + public static System.Windows.Media.Imaging.BitmapSource Create(int pixelWidth, int pixelHeight, double dpiX, double dpiY, System.Windows.Media.PixelFormat pixelFormat, System.Windows.Media.Imaging.BitmapPalette palette, System.Array pixels, int stride) { throw null; } + public static System.Windows.Media.Imaging.BitmapSource Create(int pixelWidth, int pixelHeight, double dpiX, double dpiY, System.Windows.Media.PixelFormat pixelFormat, System.Windows.Media.Imaging.BitmapPalette palette, System.IntPtr buffer, int bufferSize, int stride) { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + } + public sealed partial class BmpBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public BmpBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public BmpBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class BmpBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public BmpBitmapEncoder() { } + } + public sealed partial class CachedBitmap : System.Windows.Media.Imaging.BitmapSource + { + public CachedBitmap(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public new System.Windows.Media.Imaging.CachedBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Imaging.CachedBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + } + public sealed partial class ColorConvertedBitmap : System.Windows.Media.Imaging.BitmapSource, System.ComponentModel.ISupportInitialize + { + public static readonly System.Windows.DependencyProperty DestinationColorContextProperty; + public static readonly System.Windows.DependencyProperty DestinationFormatProperty; + public static readonly System.Windows.DependencyProperty SourceColorContextProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public ColorConvertedBitmap() { } + public ColorConvertedBitmap(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.ColorContext sourceColorContext, System.Windows.Media.ColorContext destinationColorContext, System.Windows.Media.PixelFormat format) { } + public System.Windows.Media.ColorContext DestinationColorContext { get { throw null; } set { } } + public System.Windows.Media.PixelFormat DestinationFormat { get { throw null; } set { } } + public System.Windows.Media.Imaging.BitmapSource Source { get { throw null; } set { } } + public System.Windows.Media.ColorContext SourceColorContext { get { throw null; } set { } } + public void BeginInit() { } + public new System.Windows.Media.Imaging.ColorConvertedBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Imaging.ColorConvertedBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void EndInit() { } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + } + public sealed partial class CroppedBitmap : System.Windows.Media.Imaging.BitmapSource, System.ComponentModel.ISupportInitialize + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public static readonly System.Windows.DependencyProperty SourceRectProperty; + public CroppedBitmap() { } + public CroppedBitmap(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Int32Rect sourceRect) { } + public System.Windows.Media.Imaging.BitmapSource Source { get { throw null; } set { } } + public System.Windows.Int32Rect SourceRect { get { throw null; } set { } } + public void BeginInit() { } + public new System.Windows.Media.Imaging.CroppedBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Imaging.CroppedBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void EndInit() { } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + } + public partial class DownloadProgressEventArgs : System.EventArgs + { + internal DownloadProgressEventArgs() { } + public int Progress { get { throw null; } } + } + public sealed partial class FormatConvertedBitmap : System.Windows.Media.Imaging.BitmapSource, System.ComponentModel.ISupportInitialize + { + public static readonly System.Windows.DependencyProperty AlphaThresholdProperty; + public static readonly System.Windows.DependencyProperty DestinationFormatProperty; + public static readonly System.Windows.DependencyProperty DestinationPaletteProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public FormatConvertedBitmap() { } + public FormatConvertedBitmap(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.PixelFormat destinationFormat, System.Windows.Media.Imaging.BitmapPalette destinationPalette, double alphaThreshold) { } + public double AlphaThreshold { get { throw null; } set { } } + public System.Windows.Media.PixelFormat DestinationFormat { get { throw null; } set { } } + public System.Windows.Media.Imaging.BitmapPalette DestinationPalette { get { throw null; } set { } } + public System.Windows.Media.Imaging.BitmapSource Source { get { throw null; } set { } } + public void BeginInit() { } + public new System.Windows.Media.Imaging.FormatConvertedBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Imaging.FormatConvertedBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void EndInit() { } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + } + public sealed partial class GifBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public GifBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public GifBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class GifBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public GifBitmapEncoder() { } + } + public sealed partial class IconBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public IconBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public IconBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class InPlaceBitmapMetadataWriter : System.Windows.Media.Imaging.BitmapMetadata + { + internal InPlaceBitmapMetadataWriter() : base(default(string)) { } + public new System.Windows.Media.Imaging.InPlaceBitmapMetadataWriter Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public bool TrySave() { throw null; } + } + public sealed partial class JpegBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public JpegBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public JpegBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class JpegBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public JpegBitmapEncoder() { } + public bool FlipHorizontal { get { throw null; } set { } } + public bool FlipVertical { get { throw null; } set { } } + public int QualityLevel { get { throw null; } set { } } + public System.Windows.Media.Imaging.Rotation Rotation { get { throw null; } set { } } + } + public sealed partial class LateBoundBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + internal LateBoundBitmapDecoder() { } + public override System.Windows.Media.Imaging.BitmapCodecInfo CodecInfo { get { throw null; } } + public override System.Collections.ObjectModel.ReadOnlyCollection ColorContexts { get { throw null; } } + public System.Windows.Media.Imaging.BitmapDecoder Decoder { get { throw null; } } + public override System.Collections.ObjectModel.ReadOnlyCollection Frames { get { throw null; } } + public override bool IsDownloading { get { throw null; } } + public override System.Windows.Media.Imaging.BitmapPalette Palette { get { throw null; } } + public override System.Windows.Media.Imaging.BitmapSource Preview { get { throw null; } } + public override System.Windows.Media.Imaging.BitmapSource Thumbnail { get { throw null; } } + } + public sealed partial class PngBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public PngBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public PngBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class PngBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public PngBitmapEncoder() { } + public System.Windows.Media.Imaging.PngInterlaceOption Interlace { get { throw null; } set { } } + } + public enum PngInterlaceOption + { + Default = 0, + On = 1, + Off = 2, + } + public sealed partial class RenderTargetBitmap : System.Windows.Media.Imaging.BitmapSource + { + public RenderTargetBitmap(int pixelWidth, int pixelHeight, double dpiX, double dpiY, System.Windows.Media.PixelFormat pixelFormat) { } + public void Clear() { } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void Render(System.Windows.Media.Visual visual) { } + } + public enum Rotation + { + Rotate0 = 0, + Rotate90 = 1, + Rotate180 = 2, + Rotate270 = 3, + } + public sealed partial class TiffBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public TiffBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public TiffBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class TiffBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public TiffBitmapEncoder() { } + public System.Windows.Media.Imaging.TiffCompressOption Compression { get { throw null; } set { } } + } + public enum TiffCompressOption + { + Default = 0, + None = 1, + Ccitt3 = 2, + Ccitt4 = 3, + Lzw = 4, + Rle = 5, + Zip = 6, + } + public sealed partial class TransformedBitmap : System.Windows.Media.Imaging.BitmapSource, System.ComponentModel.ISupportInitialize + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public static readonly System.Windows.DependencyProperty TransformProperty; + public TransformedBitmap() { } + public TransformedBitmap(System.Windows.Media.Imaging.BitmapSource source, System.Windows.Media.Transform newTransform) { } + public System.Windows.Media.Imaging.BitmapSource Source { get { throw null; } set { } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public void BeginInit() { } + public new System.Windows.Media.Imaging.TransformedBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Imaging.TransformedBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public void EndInit() { } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + } + public sealed partial class WmpBitmapDecoder : System.Windows.Media.Imaging.BitmapDecoder + { + public WmpBitmapDecoder(System.IO.Stream bitmapStream, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + public WmpBitmapDecoder(System.Uri bitmapUri, System.Windows.Media.Imaging.BitmapCreateOptions createOptions, System.Windows.Media.Imaging.BitmapCacheOption cacheOption) { } + } + public sealed partial class WmpBitmapEncoder : System.Windows.Media.Imaging.BitmapEncoder + { + public WmpBitmapEncoder() { } + public byte AlphaDataDiscardLevel { get { throw null; } set { } } + public byte AlphaQualityLevel { get { throw null; } set { } } + public bool CompressedDomainTranscode { get { throw null; } set { } } + public bool FlipHorizontal { get { throw null; } set { } } + public bool FlipVertical { get { throw null; } set { } } + public bool FrequencyOrder { get { throw null; } set { } } + public short HorizontalTileSlices { get { throw null; } set { } } + public bool IgnoreOverlap { get { throw null; } set { } } + public byte ImageDataDiscardLevel { get { throw null; } set { } } + public float ImageQualityLevel { get { throw null; } set { } } + public bool InterleavedAlpha { get { throw null; } set { } } + public bool Lossless { get { throw null; } set { } } + public byte OverlapLevel { get { throw null; } set { } } + public byte QualityLevel { get { throw null; } set { } } + public System.Windows.Media.Imaging.Rotation Rotation { get { throw null; } set { } } + public byte SubsamplingLevel { get { throw null; } set { } } + public bool UseCodecOptions { get { throw null; } set { } } + public short VerticalTileSlices { get { throw null; } set { } } + } + public sealed partial class WriteableBitmap : System.Windows.Media.Imaging.BitmapSource + { + public WriteableBitmap(int pixelWidth, int pixelHeight, double dpiX, double dpiY, System.Windows.Media.PixelFormat pixelFormat, System.Windows.Media.Imaging.BitmapPalette palette) { } + public WriteableBitmap(System.Windows.Media.Imaging.BitmapSource source) { } + public System.IntPtr BackBuffer { get { throw null; } } + public int BackBufferStride { get { throw null; } } + public void AddDirtyRect(System.Windows.Int32Rect dirtyRect) { } + public new System.Windows.Media.Imaging.WriteableBitmap Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Imaging.WriteableBitmap CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public void Lock() { } + public bool TryLock(System.Windows.Duration timeout) { throw null; } + public void Unlock() { } + public void WritePixels(System.Windows.Int32Rect sourceRect, System.Array pixels, int stride, int offset) { } + public void WritePixels(System.Windows.Int32Rect sourceRect, System.Array sourceBuffer, int sourceBufferStride, int destinationX, int destinationY) { } + public void WritePixels(System.Windows.Int32Rect sourceRect, System.IntPtr buffer, int bufferSize, int stride) { } + public void WritePixels(System.Windows.Int32Rect sourceRect, System.IntPtr sourceBuffer, int sourceBufferSize, int sourceBufferStride, int destinationX, int destinationY) { } + } +} +namespace System.Windows.Media.Media3D +{ + public abstract partial class AffineTransform3D : System.Windows.Media.Media3D.Transform3D + { + internal AffineTransform3D() { } + public override bool IsAffine { get { throw null; } } + public new System.Windows.Media.Media3D.AffineTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.AffineTransform3D CloneCurrentValue() { throw null; } + } + public sealed partial class AmbientLight : System.Windows.Media.Media3D.Light + { + public AmbientLight() { } + public AmbientLight(System.Windows.Media.Color ambientColor) { } + public new System.Windows.Media.Media3D.AmbientLight Clone() { throw null; } + public new System.Windows.Media.Media3D.AmbientLight CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class AxisAngleRotation3D : System.Windows.Media.Media3D.Rotation3D + { + public static readonly System.Windows.DependencyProperty AngleProperty; + public static readonly System.Windows.DependencyProperty AxisProperty; + public AxisAngleRotation3D() { } + public AxisAngleRotation3D(System.Windows.Media.Media3D.Vector3D axis, double angle) { } + public double Angle { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D Axis { get { throw null; } set { } } + public new System.Windows.Media.Media3D.AxisAngleRotation3D Clone() { throw null; } + public new System.Windows.Media.Media3D.AxisAngleRotation3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class Camera : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal Camera() { } + public static readonly System.Windows.DependencyProperty TransformProperty; + public System.Windows.Media.Media3D.Transform3D Transform { get { throw null; } set { } } + public new System.Windows.Media.Media3D.Camera Clone() { throw null; } + public new System.Windows.Media.Media3D.Camera CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class ContainerUIElement3D : System.Windows.UIElement3D + { + public ContainerUIElement3D() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.Media3D.Visual3DCollection Children { get { throw null; } } + protected override int Visual3DChildrenCount { get { throw null; } } + protected override System.Windows.Media.Media3D.Visual3D GetVisual3DChild(int index) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public sealed partial class DiffuseMaterial : System.Windows.Media.Media3D.Material + { + public static readonly System.Windows.DependencyProperty AmbientColorProperty; + public static readonly System.Windows.DependencyProperty BrushProperty; + public static readonly System.Windows.DependencyProperty ColorProperty; + public DiffuseMaterial() { } + public DiffuseMaterial(System.Windows.Media.Brush brush) { } + public System.Windows.Media.Color AmbientColor { get { throw null; } set { } } + public System.Windows.Media.Brush Brush { get { throw null; } set { } } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public new System.Windows.Media.Media3D.DiffuseMaterial Clone() { throw null; } + public new System.Windows.Media.Media3D.DiffuseMaterial CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class DirectionalLight : System.Windows.Media.Media3D.Light + { + public static readonly System.Windows.DependencyProperty DirectionProperty; + public DirectionalLight() { } + public DirectionalLight(System.Windows.Media.Color diffuseColor, System.Windows.Media.Media3D.Vector3D direction) { } + public System.Windows.Media.Media3D.Vector3D Direction { get { throw null; } set { } } + public new System.Windows.Media.Media3D.DirectionalLight Clone() { throw null; } + public new System.Windows.Media.Media3D.DirectionalLight CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class EmissiveMaterial : System.Windows.Media.Media3D.Material + { + public static readonly System.Windows.DependencyProperty BrushProperty; + public static readonly System.Windows.DependencyProperty ColorProperty; + public EmissiveMaterial() { } + public EmissiveMaterial(System.Windows.Media.Brush brush) { } + public System.Windows.Media.Brush Brush { get { throw null; } set { } } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public new System.Windows.Media.Media3D.EmissiveMaterial Clone() { throw null; } + public new System.Windows.Media.Media3D.EmissiveMaterial CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class GeneralTransform2DTo3D : System.Windows.Freezable + { + internal GeneralTransform2DTo3D() { } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Windows.Media.Media3D.Point3D Transform(System.Windows.Point point) { throw null; } + public bool TryTransform(System.Windows.Point inPoint, out System.Windows.Media.Media3D.Point3D result) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class GeneralTransform3D : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal GeneralTransform3D() { } + public abstract System.Windows.Media.Media3D.GeneralTransform3D Inverse { get; } + public new System.Windows.Media.Media3D.GeneralTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.GeneralTransform3D CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public System.Windows.Media.Media3D.Point3D Transform(System.Windows.Media.Media3D.Point3D point) { throw null; } + public abstract System.Windows.Media.Media3D.Rect3D TransformBounds(System.Windows.Media.Media3D.Rect3D rect); + public abstract bool TryTransform(System.Windows.Media.Media3D.Point3D inPoint, out System.Windows.Media.Media3D.Point3D result); + } + public sealed partial class GeneralTransform3DCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public GeneralTransform3DCollection() { } + public GeneralTransform3DCollection(System.Collections.Generic.IEnumerable collection) { } + public GeneralTransform3DCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.GeneralTransform3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.GeneralTransform3D value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.GeneralTransform3DCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.GeneralTransform3DCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.GeneralTransform3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.GeneralTransform3D[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.GeneralTransform3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.GeneralTransform3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.GeneralTransform3D value) { } + public bool Remove(System.Windows.Media.Media3D.GeneralTransform3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.GeneralTransform3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class GeneralTransform3DGroup : System.Windows.Media.Media3D.GeneralTransform3D + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public GeneralTransform3DGroup() { } + public System.Windows.Media.Media3D.GeneralTransform3DCollection Children { get { throw null; } set { } } + public override System.Windows.Media.Media3D.GeneralTransform3D Inverse { get { throw null; } } + public new System.Windows.Media.Media3D.GeneralTransform3DGroup Clone() { throw null; } + public new System.Windows.Media.Media3D.GeneralTransform3DGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public override System.Windows.Media.Media3D.Rect3D TransformBounds(System.Windows.Media.Media3D.Rect3D rect) { throw null; } + public override bool TryTransform(System.Windows.Media.Media3D.Point3D inPoint, out System.Windows.Media.Media3D.Point3D result) { throw null; } + } + public partial class GeneralTransform3DTo2D : System.Windows.Freezable + { + internal GeneralTransform3DTo2D() { } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Windows.Point Transform(System.Windows.Media.Media3D.Point3D point) { throw null; } + public System.Windows.Rect TransformBounds(System.Windows.Media.Media3D.Rect3D rect3D) { throw null; } + public bool TryTransform(System.Windows.Media.Media3D.Point3D inPoint, out System.Windows.Point result) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class Geometry3D : System.Windows.Media.Animation.Animatable + { + internal Geometry3D() { } + public abstract System.Windows.Media.Media3D.Rect3D Bounds { get; } + public new System.Windows.Media.Media3D.Geometry3D Clone() { throw null; } + public new System.Windows.Media.Media3D.Geometry3D CloneCurrentValue() { throw null; } + } + public sealed partial class GeometryModel3D : System.Windows.Media.Media3D.Model3D + { + public static readonly System.Windows.DependencyProperty BackMaterialProperty; + public static readonly System.Windows.DependencyProperty GeometryProperty; + public static readonly System.Windows.DependencyProperty MaterialProperty; + public GeometryModel3D() { } + public GeometryModel3D(System.Windows.Media.Media3D.Geometry3D geometry, System.Windows.Media.Media3D.Material material) { } + public System.Windows.Media.Media3D.Material BackMaterial { get { throw null; } set { } } + public System.Windows.Media.Media3D.Geometry3D Geometry { get { throw null; } set { } } + public System.Windows.Media.Media3D.Material Material { get { throw null; } set { } } + public new System.Windows.Media.Media3D.GeometryModel3D Clone() { throw null; } + public new System.Windows.Media.Media3D.GeometryModel3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class HitTestParameters3D + { + internal HitTestParameters3D() { } + } + public abstract partial class Light : System.Windows.Media.Media3D.Model3D + { + internal Light() { } + public static readonly System.Windows.DependencyProperty ColorProperty; + public System.Windows.Media.Color Color { get { throw null; } set { } } + public new System.Windows.Media.Media3D.Light Clone() { throw null; } + public new System.Windows.Media.Media3D.Light CloneCurrentValue() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class Material : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal Material() { } + public new System.Windows.Media.Media3D.Material Clone() { throw null; } + public new System.Windows.Media.Media3D.Material CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class MaterialCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public MaterialCollection() { } + public MaterialCollection(System.Collections.Generic.IEnumerable collection) { } + public MaterialCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Material this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Material value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.MaterialCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.MaterialCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.Material value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Material[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.MaterialCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Material value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Material value) { } + public bool Remove(System.Windows.Media.Media3D.Material value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Material Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class MaterialGroup : System.Windows.Media.Media3D.Material + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public MaterialGroup() { } + public System.Windows.Media.Media3D.MaterialCollection Children { get { throw null; } set { } } + public new System.Windows.Media.Media3D.MaterialGroup Clone() { throw null; } + public new System.Windows.Media.Media3D.MaterialGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Matrix3DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Matrix3DValueSerializer))] + public partial struct Matrix3D : System.IFormattable + { + public Matrix3D(double m11, double m12, double m13, double m14, double m21, double m22, double m23, double m24, double m31, double m32, double m33, double m34, double offsetX, double offsetY, double offsetZ, double m44) { throw null; } + public double Determinant { get { throw null; } } + public bool HasInverse { get { throw null; } } + public static System.Windows.Media.Media3D.Matrix3D Identity { get { throw null; } } + public bool IsAffine { get { throw null; } } + public bool IsIdentity { get { throw null; } } + public double M11 { get { throw null; } set { } } + public double M12 { get { throw null; } set { } } + public double M13 { get { throw null; } set { } } + public double M14 { get { throw null; } set { } } + public double M21 { get { throw null; } set { } } + public double M22 { get { throw null; } set { } } + public double M23 { get { throw null; } set { } } + public double M24 { get { throw null; } set { } } + public double M31 { get { throw null; } set { } } + public double M32 { get { throw null; } set { } } + public double M33 { get { throw null; } set { } } + public double M34 { get { throw null; } set { } } + public double M44 { get { throw null; } set { } } + public double OffsetX { get { throw null; } set { } } + public double OffsetY { get { throw null; } set { } } + public double OffsetZ { get { throw null; } set { } } + public void Append(System.Windows.Media.Media3D.Matrix3D matrix) { } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Matrix3D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2) { throw null; } + public override int GetHashCode() { throw null; } + public void Invert() { } + public static System.Windows.Media.Media3D.Matrix3D Multiply(System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2) { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2) { throw null; } + public static System.Windows.Media.Media3D.Matrix3D operator *(System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2) { throw null; } + public static System.Windows.Media.Media3D.Matrix3D Parse(string source) { throw null; } + public void Prepend(System.Windows.Media.Media3D.Matrix3D matrix) { } + public void Rotate(System.Windows.Media.Media3D.Quaternion quaternion) { } + public void RotateAt(System.Windows.Media.Media3D.Quaternion quaternion, System.Windows.Media.Media3D.Point3D center) { } + public void RotateAtPrepend(System.Windows.Media.Media3D.Quaternion quaternion, System.Windows.Media.Media3D.Point3D center) { } + public void RotatePrepend(System.Windows.Media.Media3D.Quaternion quaternion) { } + public void Scale(System.Windows.Media.Media3D.Vector3D scale) { } + public void ScaleAt(System.Windows.Media.Media3D.Vector3D scale, System.Windows.Media.Media3D.Point3D center) { } + public void ScaleAtPrepend(System.Windows.Media.Media3D.Vector3D scale, System.Windows.Media.Media3D.Point3D center) { } + public void ScalePrepend(System.Windows.Media.Media3D.Vector3D scale) { } + public void SetIdentity() { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public System.Windows.Media.Media3D.Point3D Transform(System.Windows.Media.Media3D.Point3D point) { throw null; } + public void Transform(System.Windows.Media.Media3D.Point3D[] points) { } + public System.Windows.Media.Media3D.Point4D Transform(System.Windows.Media.Media3D.Point4D point) { throw null; } + public void Transform(System.Windows.Media.Media3D.Point4D[] points) { } + public System.Windows.Media.Media3D.Vector3D Transform(System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public void Transform(System.Windows.Media.Media3D.Vector3D[] vectors) { } + public void Translate(System.Windows.Media.Media3D.Vector3D offset) { } + public void TranslatePrepend(System.Windows.Media.Media3D.Vector3D offset) { } + } + public sealed partial class Matrix3DConverter : System.ComponentModel.TypeConverter + { + public Matrix3DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class MatrixCamera : System.Windows.Media.Media3D.Camera + { + public static readonly System.Windows.DependencyProperty ProjectionMatrixProperty; + public static readonly System.Windows.DependencyProperty ViewMatrixProperty; + public MatrixCamera() { } + public MatrixCamera(System.Windows.Media.Media3D.Matrix3D viewMatrix, System.Windows.Media.Media3D.Matrix3D projectionMatrix) { } + public System.Windows.Media.Media3D.Matrix3D ProjectionMatrix { get { throw null; } set { } } + public System.Windows.Media.Media3D.Matrix3D ViewMatrix { get { throw null; } set { } } + public new System.Windows.Media.Media3D.MatrixCamera Clone() { throw null; } + public new System.Windows.Media.Media3D.MatrixCamera CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class MatrixTransform3D : System.Windows.Media.Media3D.Transform3D + { + public static readonly System.Windows.DependencyProperty MatrixProperty; + public MatrixTransform3D() { } + public MatrixTransform3D(System.Windows.Media.Media3D.Matrix3D matrix) { } + public override bool IsAffine { get { throw null; } } + public System.Windows.Media.Media3D.Matrix3D Matrix { get { throw null; } set { } } + public override System.Windows.Media.Media3D.Matrix3D Value { get { throw null; } } + public new System.Windows.Media.Media3D.MatrixTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.MatrixTransform3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class MeshGeometry3D : System.Windows.Media.Media3D.Geometry3D + { + public static readonly System.Windows.DependencyProperty NormalsProperty; + public static readonly System.Windows.DependencyProperty PositionsProperty; + public static readonly System.Windows.DependencyProperty TextureCoordinatesProperty; + public static readonly System.Windows.DependencyProperty TriangleIndicesProperty; + public MeshGeometry3D() { } + public override System.Windows.Media.Media3D.Rect3D Bounds { get { throw null; } } + public System.Windows.Media.Media3D.Vector3DCollection Normals { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3DCollection Positions { get { throw null; } set { } } + public System.Windows.Media.PointCollection TextureCoordinates { get { throw null; } set { } } + public System.Windows.Media.Int32Collection TriangleIndices { get { throw null; } set { } } + public new System.Windows.Media.Media3D.MeshGeometry3D Clone() { throw null; } + public new System.Windows.Media.Media3D.MeshGeometry3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class Model3D : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal Model3D() { } + public static readonly System.Windows.DependencyProperty TransformProperty; + public System.Windows.Media.Media3D.Rect3D Bounds { get { throw null; } } + public System.Windows.Media.Media3D.Transform3D Transform { get { throw null; } set { } } + public new System.Windows.Media.Media3D.Model3D Clone() { throw null; } + public new System.Windows.Media.Media3D.Model3D CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class Model3DCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Model3DCollection() { } + public Model3DCollection(System.Collections.Generic.IEnumerable collection) { } + public Model3DCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Model3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Model3D value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.Model3DCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.Model3DCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.Model3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Model3D[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.Model3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Model3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Model3D value) { } + public bool Remove(System.Windows.Media.Media3D.Model3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Model3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class Model3DGroup : System.Windows.Media.Media3D.Model3D + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public Model3DGroup() { } + public System.Windows.Media.Media3D.Model3DCollection Children { get { throw null; } set { } } + public new System.Windows.Media.Media3D.Model3DGroup Clone() { throw null; } + public new System.Windows.Media.Media3D.Model3DGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Model")] + public sealed partial class ModelUIElement3D : System.Windows.UIElement3D + { + public static readonly System.Windows.DependencyProperty ModelProperty; + public ModelUIElement3D() { } + public System.Windows.Media.Media3D.Model3D Model { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public partial class ModelVisual3D : System.Windows.Media.Media3D.Visual3D, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty ContentProperty; + public static readonly new System.Windows.DependencyProperty TransformProperty; + public ModelVisual3D() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.Media3D.Visual3DCollection Children { get { throw null; } } + public System.Windows.Media.Media3D.Model3D Content { get { throw null; } set { } } + public new System.Windows.Media.Media3D.Transform3D Transform { get { throw null; } set { } } + protected sealed override int Visual3DChildrenCount { get { throw null; } } + protected sealed override System.Windows.Media.Media3D.Visual3D GetVisual3DChild(int index) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class OrthographicCamera : System.Windows.Media.Media3D.ProjectionCamera + { + public static readonly System.Windows.DependencyProperty WidthProperty; + public OrthographicCamera() { } + public OrthographicCamera(System.Windows.Media.Media3D.Point3D position, System.Windows.Media.Media3D.Vector3D lookDirection, System.Windows.Media.Media3D.Vector3D upDirection, double width) { } + public double Width { get { throw null; } set { } } + public new System.Windows.Media.Media3D.OrthographicCamera Clone() { throw null; } + public new System.Windows.Media.Media3D.OrthographicCamera CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class PerspectiveCamera : System.Windows.Media.Media3D.ProjectionCamera + { + public static readonly System.Windows.DependencyProperty FieldOfViewProperty; + public PerspectiveCamera() { } + public PerspectiveCamera(System.Windows.Media.Media3D.Point3D position, System.Windows.Media.Media3D.Vector3D lookDirection, System.Windows.Media.Media3D.Vector3D upDirection, double fieldOfView) { } + public double FieldOfView { get { throw null; } set { } } + public new System.Windows.Media.Media3D.PerspectiveCamera Clone() { throw null; } + public new System.Windows.Media.Media3D.PerspectiveCamera CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Point3DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Point3DValueSerializer))] + public partial struct Point3D : System.IFormattable + { + public Point3D(double x, double y, double z) { throw null; } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public static System.Windows.Media.Media3D.Point3D Add(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Point3D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2) { throw null; } + public override int GetHashCode() { throw null; } + public static System.Windows.Media.Media3D.Point3D Multiply(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public void Offset(double offsetX, double offsetY, double offsetZ) { } + public static System.Windows.Media.Media3D.Point3D operator +(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Point4D(System.Windows.Media.Media3D.Point3D point) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Vector3D(System.Windows.Media.Media3D.Point3D point) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2) { throw null; } + public static System.Windows.Media.Media3D.Point3D operator *(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator -(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2) { throw null; } + public static System.Windows.Media.Media3D.Point3D operator -(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static System.Windows.Media.Media3D.Point3D Parse(string source) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Subtract(System.Windows.Media.Media3D.Point3D point1, System.Windows.Media.Media3D.Point3D point2) { throw null; } + public static System.Windows.Media.Media3D.Point3D Subtract(System.Windows.Media.Media3D.Point3D point, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Point3DCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Point3DCollectionValueSerializer))] + public sealed partial class Point3DCollection : System.Windows.Freezable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public Point3DCollection() { } + public Point3DCollection(System.Collections.Generic.IEnumerable collection) { } + public Point3DCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Point3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Point3D value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.Point3DCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.Point3DCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.Point3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Point3D[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.Point3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Point3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Point3D value) { } + public static System.Windows.Media.Media3D.Point3DCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Media.Media3D.Point3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Point3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class Point3DCollectionConverter : System.ComponentModel.TypeConverter + { + public Point3DCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class Point3DConverter : System.ComponentModel.TypeConverter + { + public Point3DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Point4DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Point4DValueSerializer))] + public partial struct Point4D : System.IFormattable + { + public Point4D(double x, double y, double z, double w) { throw null; } + public double W { get { throw null; } set { } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public static System.Windows.Media.Media3D.Point4D Add(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Point4D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public override int GetHashCode() { throw null; } + public static System.Windows.Media.Media3D.Point4D Multiply(System.Windows.Media.Media3D.Point4D point, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public void Offset(double deltaX, double deltaY, double deltaZ, double deltaW) { } + public static System.Windows.Media.Media3D.Point4D operator +(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public static System.Windows.Media.Media3D.Point4D operator *(System.Windows.Media.Media3D.Point4D point, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public static System.Windows.Media.Media3D.Point4D operator -(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + public static System.Windows.Media.Media3D.Point4D Parse(string source) { throw null; } + public static System.Windows.Media.Media3D.Point4D Subtract(System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class Point4DConverter : System.ComponentModel.TypeConverter + { + public Point4DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class PointLight : System.Windows.Media.Media3D.PointLightBase + { + public PointLight() { } + public PointLight(System.Windows.Media.Color diffuseColor, System.Windows.Media.Media3D.Point3D position) { } + public new System.Windows.Media.Media3D.PointLight Clone() { throw null; } + public new System.Windows.Media.Media3D.PointLight CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class PointLightBase : System.Windows.Media.Media3D.Light + { + internal PointLightBase() { } + public static readonly System.Windows.DependencyProperty ConstantAttenuationProperty; + public static readonly System.Windows.DependencyProperty LinearAttenuationProperty; + public static readonly System.Windows.DependencyProperty PositionProperty; + public static readonly System.Windows.DependencyProperty QuadraticAttenuationProperty; + public static readonly System.Windows.DependencyProperty RangeProperty; + public double ConstantAttenuation { get { throw null; } set { } } + public double LinearAttenuation { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D Position { get { throw null; } set { } } + public double QuadraticAttenuation { get { throw null; } set { } } + public double Range { get { throw null; } set { } } + public new System.Windows.Media.Media3D.PointLightBase Clone() { throw null; } + public new System.Windows.Media.Media3D.PointLightBase CloneCurrentValue() { throw null; } + } + public abstract partial class ProjectionCamera : System.Windows.Media.Media3D.Camera + { + internal ProjectionCamera() { } + public static readonly System.Windows.DependencyProperty FarPlaneDistanceProperty; + public static readonly System.Windows.DependencyProperty LookDirectionProperty; + public static readonly System.Windows.DependencyProperty NearPlaneDistanceProperty; + public static readonly System.Windows.DependencyProperty PositionProperty; + public static readonly System.Windows.DependencyProperty UpDirectionProperty; + public double FarPlaneDistance { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D LookDirection { get { throw null; } set { } } + public double NearPlaneDistance { get { throw null; } set { } } + public System.Windows.Media.Media3D.Point3D Position { get { throw null; } set { } } + public System.Windows.Media.Media3D.Vector3D UpDirection { get { throw null; } set { } } + public new System.Windows.Media.Media3D.ProjectionCamera Clone() { throw null; } + public new System.Windows.Media.Media3D.ProjectionCamera CloneCurrentValue() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.QuaternionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.QuaternionValueSerializer))] + public partial struct Quaternion : System.IFormattable + { + public Quaternion(double x, double y, double z, double w) { throw null; } + public Quaternion(System.Windows.Media.Media3D.Vector3D axisOfRotation, double angleInDegrees) { throw null; } + public double Angle { get { throw null; } } + public System.Windows.Media.Media3D.Vector3D Axis { get { throw null; } } + public static System.Windows.Media.Media3D.Quaternion Identity { get { throw null; } } + public bool IsIdentity { get { throw null; } } + public bool IsNormalized { get { throw null; } } + public double W { get { throw null; } set { } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public static System.Windows.Media.Media3D.Quaternion Add(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + public void Conjugate() { } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Quaternion value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Quaternion quaternion1, System.Windows.Media.Media3D.Quaternion quaternion2) { throw null; } + public override int GetHashCode() { throw null; } + public void Invert() { } + public static System.Windows.Media.Media3D.Quaternion Multiply(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + public void Normalize() { } + public static System.Windows.Media.Media3D.Quaternion operator +(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Quaternion quaternion1, System.Windows.Media.Media3D.Quaternion quaternion2) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Quaternion quaternion1, System.Windows.Media.Media3D.Quaternion quaternion2) { throw null; } + public static System.Windows.Media.Media3D.Quaternion operator *(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + public static System.Windows.Media.Media3D.Quaternion operator -(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + public static System.Windows.Media.Media3D.Quaternion Parse(string source) { throw null; } + public static System.Windows.Media.Media3D.Quaternion Slerp(System.Windows.Media.Media3D.Quaternion from, System.Windows.Media.Media3D.Quaternion to, double t) { throw null; } + public static System.Windows.Media.Media3D.Quaternion Slerp(System.Windows.Media.Media3D.Quaternion from, System.Windows.Media.Media3D.Quaternion to, double t, bool useShortestPath) { throw null; } + public static System.Windows.Media.Media3D.Quaternion Subtract(System.Windows.Media.Media3D.Quaternion left, System.Windows.Media.Media3D.Quaternion right) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class QuaternionConverter : System.ComponentModel.TypeConverter + { + public QuaternionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class QuaternionRotation3D : System.Windows.Media.Media3D.Rotation3D + { + public static readonly System.Windows.DependencyProperty QuaternionProperty; + public QuaternionRotation3D() { } + public QuaternionRotation3D(System.Windows.Media.Media3D.Quaternion quaternion) { } + public System.Windows.Media.Media3D.Quaternion Quaternion { get { throw null; } set { } } + public new System.Windows.Media.Media3D.QuaternionRotation3D Clone() { throw null; } + public new System.Windows.Media.Media3D.QuaternionRotation3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class RayHitTestParameters : System.Windows.Media.Media3D.HitTestParameters3D + { + public RayHitTestParameters(System.Windows.Media.Media3D.Point3D origin, System.Windows.Media.Media3D.Vector3D direction) { } + public System.Windows.Media.Media3D.Vector3D Direction { get { throw null; } } + public System.Windows.Media.Media3D.Point3D Origin { get { throw null; } } + } + public abstract partial class RayHitTestResult : System.Windows.Media.HitTestResult + { + internal RayHitTestResult() { } + public abstract double DistanceToRayOrigin { get; } + public System.Windows.Media.Media3D.Model3D ModelHit { get { throw null; } } + public abstract System.Windows.Media.Media3D.Point3D PointHit { get; } + public new System.Windows.Media.Media3D.Visual3D VisualHit { get { throw null; } } + } + public sealed partial class RayMeshGeometry3DHitTestResult : System.Windows.Media.Media3D.RayHitTestResult + { + internal RayMeshGeometry3DHitTestResult() { } + public override double DistanceToRayOrigin { get { throw null; } } + public System.Windows.Media.Media3D.MeshGeometry3D MeshHit { get { throw null; } } + public override System.Windows.Media.Media3D.Point3D PointHit { get { throw null; } } + public int VertexIndex1 { get { throw null; } } + public int VertexIndex2 { get { throw null; } } + public int VertexIndex3 { get { throw null; } } + public double VertexWeight1 { get { throw null; } } + public double VertexWeight2 { get { throw null; } } + public double VertexWeight3 { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Rect3DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Rect3DValueSerializer))] + public partial struct Rect3D : System.IFormattable + { + public Rect3D(double x, double y, double z, double sizeX, double sizeY, double sizeZ) { throw null; } + public Rect3D(System.Windows.Media.Media3D.Point3D location, System.Windows.Media.Media3D.Size3D size) { throw null; } + public static System.Windows.Media.Media3D.Rect3D Empty { get { throw null; } } + public bool IsEmpty { get { throw null; } } + public System.Windows.Media.Media3D.Point3D Location { get { throw null; } set { } } + public System.Windows.Media.Media3D.Size3D Size { get { throw null; } set { } } + public double SizeX { get { throw null; } set { } } + public double SizeY { get { throw null; } set { } } + public double SizeZ { get { throw null; } set { } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public bool Contains(double x, double y, double z) { throw null; } + public bool Contains(System.Windows.Media.Media3D.Point3D point) { throw null; } + public bool Contains(System.Windows.Media.Media3D.Rect3D rect) { throw null; } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Rect3D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Rect3D rect1, System.Windows.Media.Media3D.Rect3D rect2) { throw null; } + public override int GetHashCode() { throw null; } + public void Intersect(System.Windows.Media.Media3D.Rect3D rect) { } + public static System.Windows.Media.Media3D.Rect3D Intersect(System.Windows.Media.Media3D.Rect3D rect1, System.Windows.Media.Media3D.Rect3D rect2) { throw null; } + public bool IntersectsWith(System.Windows.Media.Media3D.Rect3D rect) { throw null; } + public void Offset(double offsetX, double offsetY, double offsetZ) { } + public static System.Windows.Media.Media3D.Rect3D Offset(System.Windows.Media.Media3D.Rect3D rect, double offsetX, double offsetY, double offsetZ) { throw null; } + public static System.Windows.Media.Media3D.Rect3D Offset(System.Windows.Media.Media3D.Rect3D rect, System.Windows.Media.Media3D.Vector3D offsetVector) { throw null; } + public void Offset(System.Windows.Media.Media3D.Vector3D offsetVector) { } + public static bool operator ==(System.Windows.Media.Media3D.Rect3D rect1, System.Windows.Media.Media3D.Rect3D rect2) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Rect3D rect1, System.Windows.Media.Media3D.Rect3D rect2) { throw null; } + public static System.Windows.Media.Media3D.Rect3D Parse(string source) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public void Union(System.Windows.Media.Media3D.Point3D point) { } + public void Union(System.Windows.Media.Media3D.Rect3D rect) { } + public static System.Windows.Media.Media3D.Rect3D Union(System.Windows.Media.Media3D.Rect3D rect, System.Windows.Media.Media3D.Point3D point) { throw null; } + public static System.Windows.Media.Media3D.Rect3D Union(System.Windows.Media.Media3D.Rect3D rect1, System.Windows.Media.Media3D.Rect3D rect2) { throw null; } + } + public sealed partial class Rect3DConverter : System.ComponentModel.TypeConverter + { + public Rect3DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class RotateTransform3D : System.Windows.Media.Media3D.AffineTransform3D + { + public static readonly System.Windows.DependencyProperty CenterXProperty; + public static readonly System.Windows.DependencyProperty CenterYProperty; + public static readonly System.Windows.DependencyProperty CenterZProperty; + public static readonly System.Windows.DependencyProperty RotationProperty; + public RotateTransform3D() { } + public RotateTransform3D(System.Windows.Media.Media3D.Rotation3D rotation) { } + public RotateTransform3D(System.Windows.Media.Media3D.Rotation3D rotation, double centerX, double centerY, double centerZ) { } + public RotateTransform3D(System.Windows.Media.Media3D.Rotation3D rotation, System.Windows.Media.Media3D.Point3D center) { } + public double CenterX { get { throw null; } set { } } + public double CenterY { get { throw null; } set { } } + public double CenterZ { get { throw null; } set { } } + public System.Windows.Media.Media3D.Rotation3D Rotation { get { throw null; } set { } } + public override System.Windows.Media.Media3D.Matrix3D Value { get { throw null; } } + public new System.Windows.Media.Media3D.RotateTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.RotateTransform3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public abstract partial class Rotation3D : System.Windows.Media.Animation.Animatable, System.IFormattable + { + internal Rotation3D() { } + public static System.Windows.Media.Media3D.Rotation3D Identity { get { throw null; } } + public new System.Windows.Media.Media3D.Rotation3D Clone() { throw null; } + public new System.Windows.Media.Media3D.Rotation3D CloneCurrentValue() { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class ScaleTransform3D : System.Windows.Media.Media3D.AffineTransform3D + { + public static readonly System.Windows.DependencyProperty CenterXProperty; + public static readonly System.Windows.DependencyProperty CenterYProperty; + public static readonly System.Windows.DependencyProperty CenterZProperty; + public static readonly System.Windows.DependencyProperty ScaleXProperty; + public static readonly System.Windows.DependencyProperty ScaleYProperty; + public static readonly System.Windows.DependencyProperty ScaleZProperty; + public ScaleTransform3D() { } + public ScaleTransform3D(double scaleX, double scaleY, double scaleZ) { } + public ScaleTransform3D(double scaleX, double scaleY, double scaleZ, double centerX, double centerY, double centerZ) { } + public ScaleTransform3D(System.Windows.Media.Media3D.Vector3D scale) { } + public ScaleTransform3D(System.Windows.Media.Media3D.Vector3D scale, System.Windows.Media.Media3D.Point3D center) { } + public double CenterX { get { throw null; } set { } } + public double CenterY { get { throw null; } set { } } + public double CenterZ { get { throw null; } set { } } + public double ScaleX { get { throw null; } set { } } + public double ScaleY { get { throw null; } set { } } + public double ScaleZ { get { throw null; } set { } } + public override System.Windows.Media.Media3D.Matrix3D Value { get { throw null; } } + public new System.Windows.Media.Media3D.ScaleTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.ScaleTransform3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Size3DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Size3DValueSerializer))] + public partial struct Size3D : System.IFormattable + { + public Size3D(double x, double y, double z) { throw null; } + public static System.Windows.Media.Media3D.Size3D Empty { get { throw null; } } + public bool IsEmpty { get { throw null; } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Size3D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Size3D size1, System.Windows.Media.Media3D.Size3D size2) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Size3D size1, System.Windows.Media.Media3D.Size3D size2) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Point3D(System.Windows.Media.Media3D.Size3D size) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Vector3D(System.Windows.Media.Media3D.Size3D size) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Size3D size1, System.Windows.Media.Media3D.Size3D size2) { throw null; } + public static System.Windows.Media.Media3D.Size3D Parse(string source) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + public sealed partial class Size3DConverter : System.ComponentModel.TypeConverter + { + public Size3DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class SpecularMaterial : System.Windows.Media.Media3D.Material + { + public static readonly System.Windows.DependencyProperty BrushProperty; + public static readonly System.Windows.DependencyProperty ColorProperty; + public static readonly System.Windows.DependencyProperty SpecularPowerProperty; + public SpecularMaterial() { } + public SpecularMaterial(System.Windows.Media.Brush brush, double specularPower) { } + public System.Windows.Media.Brush Brush { get { throw null; } set { } } + public System.Windows.Media.Color Color { get { throw null; } set { } } + public double SpecularPower { get { throw null; } set { } } + public new System.Windows.Media.Media3D.SpecularMaterial Clone() { throw null; } + public new System.Windows.Media.Media3D.SpecularMaterial CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class SpotLight : System.Windows.Media.Media3D.PointLightBase + { + public static readonly System.Windows.DependencyProperty DirectionProperty; + public static readonly System.Windows.DependencyProperty InnerConeAngleProperty; + public static readonly System.Windows.DependencyProperty OuterConeAngleProperty; + public SpotLight() { } + public SpotLight(System.Windows.Media.Color diffuseColor, System.Windows.Media.Media3D.Point3D position, System.Windows.Media.Media3D.Vector3D direction, double outerConeAngle, double innerConeAngle) { } + public System.Windows.Media.Media3D.Vector3D Direction { get { throw null; } set { } } + public double InnerConeAngle { get { throw null; } set { } } + public double OuterConeAngle { get { throw null; } set { } } + public new System.Windows.Media.Media3D.SpotLight Clone() { throw null; } + public new System.Windows.Media.Media3D.SpotLight CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability = System.Windows.Readability.Unreadable)] + public abstract partial class Transform3D : System.Windows.Media.Media3D.GeneralTransform3D + { + internal Transform3D() { } + public static System.Windows.Media.Media3D.Transform3D Identity { get { throw null; } } + public override System.Windows.Media.Media3D.GeneralTransform3D Inverse { get { throw null; } } + public abstract bool IsAffine { get; } + public abstract System.Windows.Media.Media3D.Matrix3D Value { get; } + public new System.Windows.Media.Media3D.Transform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.Transform3D CloneCurrentValue() { throw null; } + public new System.Windows.Media.Media3D.Point3D Transform(System.Windows.Media.Media3D.Point3D point) { throw null; } + public void Transform(System.Windows.Media.Media3D.Point3D[] points) { } + public System.Windows.Media.Media3D.Point4D Transform(System.Windows.Media.Media3D.Point4D point) { throw null; } + public void Transform(System.Windows.Media.Media3D.Point4D[] points) { } + public System.Windows.Media.Media3D.Vector3D Transform(System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public void Transform(System.Windows.Media.Media3D.Vector3D[] vectors) { } + public override System.Windows.Media.Media3D.Rect3D TransformBounds(System.Windows.Media.Media3D.Rect3D rect) { throw null; } + public override bool TryTransform(System.Windows.Media.Media3D.Point3D inPoint, out System.Windows.Media.Media3D.Point3D result) { throw null; } + } + public sealed partial class Transform3DCollection : System.Windows.Media.Animation.Animatable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public Transform3DCollection() { } + public Transform3DCollection(System.Collections.Generic.IEnumerable collection) { } + public Transform3DCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Transform3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Transform3D value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.Transform3DCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.Transform3DCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.Transform3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Transform3D[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.Transform3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Transform3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Transform3D value) { } + public bool Remove(System.Windows.Media.Media3D.Transform3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Transform3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class Transform3DGroup : System.Windows.Media.Media3D.Transform3D + { + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public Transform3DGroup() { } + public System.Windows.Media.Media3D.Transform3DCollection Children { get { throw null; } set { } } + public override bool IsAffine { get { throw null; } } + public override System.Windows.Media.Media3D.Matrix3D Value { get { throw null; } } + public new System.Windows.Media.Media3D.Transform3DGroup Clone() { throw null; } + public new System.Windows.Media.Media3D.Transform3DGroup CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public sealed partial class TranslateTransform3D : System.Windows.Media.Media3D.AffineTransform3D + { + public static readonly System.Windows.DependencyProperty OffsetXProperty; + public static readonly System.Windows.DependencyProperty OffsetYProperty; + public static readonly System.Windows.DependencyProperty OffsetZProperty; + public TranslateTransform3D() { } + public TranslateTransform3D(double offsetX, double offsetY, double offsetZ) { } + public TranslateTransform3D(System.Windows.Media.Media3D.Vector3D offset) { } + public double OffsetX { get { throw null; } set { } } + public double OffsetY { get { throw null; } set { } } + public double OffsetZ { get { throw null; } set { } } + public override System.Windows.Media.Media3D.Matrix3D Value { get { throw null; } } + public new System.Windows.Media.Media3D.TranslateTransform3D Clone() { throw null; } + public new System.Windows.Media.Media3D.TranslateTransform3D CloneCurrentValue() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Vector3DConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Vector3DValueSerializer))] + public partial struct Vector3D : System.IFormattable + { + public Vector3D(double x, double y, double z) { throw null; } + public double Length { get { throw null; } } + public double LengthSquared { get { throw null; } } + public double X { get { throw null; } set { } } + public double Y { get { throw null; } set { } } + public double Z { get { throw null; } set { } } + public static System.Windows.Media.Media3D.Point3D Add(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Point3D point) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Add(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static double AngleBetween(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static System.Windows.Media.Media3D.Vector3D CrossProduct(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Divide(System.Windows.Media.Media3D.Vector3D vector, double scalar) { throw null; } + public static double DotProduct(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public override bool Equals(object o) { throw null; } + public bool Equals(System.Windows.Media.Media3D.Vector3D value) { throw null; } + public static bool Equals(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public override int GetHashCode() { throw null; } + public static System.Windows.Media.Media3D.Vector3D Multiply(double scalar, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Multiply(System.Windows.Media.Media3D.Vector3D vector, double scalar) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Multiply(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public void Negate() { } + public void Normalize() { } + public static System.Windows.Media.Media3D.Point3D operator +(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Point3D point) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator +(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator /(System.Windows.Media.Media3D.Vector3D vector, double scalar) { throw null; } + public static bool operator ==(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Point3D(System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static explicit operator System.Windows.Media.Media3D.Size3D(System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static bool operator !=(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator *(double scalar, System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator *(System.Windows.Media.Media3D.Vector3D vector, double scalar) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator *(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Matrix3D matrix) { throw null; } + public static System.Windows.Media.Media3D.Point3D operator -(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Point3D point) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator -(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + public static System.Windows.Media.Media3D.Vector3D operator -(System.Windows.Media.Media3D.Vector3D vector) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Parse(string source) { throw null; } + public static System.Windows.Media.Media3D.Point3D Subtract(System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Point3D point) { throw null; } + public static System.Windows.Media.Media3D.Vector3D Subtract(System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2) { throw null; } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Media.Media3D.Vector3DCollectionConverter))] + [System.Windows.Markup.ValueSerializerAttribute(typeof(System.Windows.Media.Media3D.Converters.Vector3DCollectionValueSerializer))] + public sealed partial class Vector3DCollection : System.Windows.Freezable, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.IFormattable + { + public Vector3DCollection() { } + public Vector3DCollection(System.Collections.Generic.IEnumerable collection) { } + public Vector3DCollection(int capacity) { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Vector3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Vector3D value) { } + public void Clear() { } + public new System.Windows.Media.Media3D.Vector3DCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable source) { } + public new System.Windows.Media.Media3D.Vector3DCollection CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable source) { } + public bool Contains(System.Windows.Media.Media3D.Vector3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Vector3D[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + public System.Windows.Media.Media3D.Vector3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Vector3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Vector3D value) { } + public static System.Windows.Media.Media3D.Vector3DCollection Parse(string source) { throw null; } + public bool Remove(System.Windows.Media.Media3D.Vector3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + string System.IFormattable.ToString(string format, System.IFormatProvider provider) { throw null; } + public override string ToString() { throw null; } + public string ToString(System.IFormatProvider provider) { throw null; } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Vector3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } + public sealed partial class Vector3DCollectionConverter : System.ComponentModel.TypeConverter + { + public Vector3DCollectionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class Vector3DConverter : System.ComponentModel.TypeConverter + { + public Vector3DConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Visual")] + public sealed partial class Viewport2DVisual3D : System.Windows.Media.Media3D.Visual3D + { + public static readonly System.Windows.DependencyProperty CacheModeProperty; + public static readonly System.Windows.DependencyProperty GeometryProperty; + public static readonly System.Windows.DependencyProperty IsVisualHostMaterialProperty; + public static readonly System.Windows.DependencyProperty MaterialProperty; + public static readonly System.Windows.DependencyProperty VisualProperty; + public Viewport2DVisual3D() { } + public System.Windows.Media.CacheMode CacheMode { get { throw null; } set { } } + public System.Windows.Media.Media3D.Geometry3D Geometry { get { throw null; } set { } } + public System.Windows.Media.Media3D.Material Material { get { throw null; } set { } } + public System.Windows.Media.Visual Visual { get { throw null; } set { } } + protected override int Visual3DChildrenCount { get { throw null; } } + public static bool GetIsVisualHostMaterial(System.Windows.Media.Media3D.Material element) { throw null; } + protected override System.Windows.Media.Media3D.Visual3D GetVisual3DChild(int index) { throw null; } + public static void SetIsVisualHostMaterial(System.Windows.Media.Media3D.Material element, bool value) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class Viewport3DVisual : System.Windows.Media.Visual + { + public static readonly System.Windows.DependencyProperty CameraProperty; + public static readonly System.Windows.DependencyProperty ViewportProperty; + public Viewport3DVisual() { } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffect BitmapEffect { get { throw null; } set { } } + [System.ObsoleteAttribute("BitmapEffects are deprecated and no longer function. Consider using Effects where appropriate instead.")] + public System.Windows.Media.Effects.BitmapEffectInput BitmapEffectInput { get { throw null; } set { } } + public System.Windows.Media.Media3D.Camera Camera { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.Media3D.Visual3DCollection Children { get { throw null; } } + public System.Windows.Media.Geometry Clip { get { throw null; } set { } } + public System.Windows.Rect ContentBounds { get { throw null; } } + public System.Windows.Rect DescendantBounds { get { throw null; } } + public System.Windows.Vector Offset { get { throw null; } set { } } + public double Opacity { get { throw null; } set { } } + public System.Windows.Media.Brush OpacityMask { get { throw null; } set { } } + public System.Windows.DependencyObject Parent { get { throw null; } } + public System.Windows.Media.Transform Transform { get { throw null; } set { } } + public System.Windows.Rect Viewport { get { throw null; } set { } } + public void HitTest(System.Windows.Media.HitTestFilterCallback filterCallback, System.Windows.Media.HitTestResultCallback resultCallback, System.Windows.Media.HitTestParameters hitTestParameters) { } + public System.Windows.Media.HitTestResult HitTest(System.Windows.Point point) { throw null; } + protected override System.Windows.Media.GeometryHitTestResult HitTestCore(System.Windows.Media.GeometryHitTestParameters hitTestParameters) { throw null; } + } + public abstract partial class Visual3D : System.Windows.DependencyObject, System.Windows.Media.Animation.IAnimatable + { + internal Visual3D() { } + public static readonly System.Windows.DependencyProperty TransformProperty; + public bool HasAnimatedProperties { get { throw null; } } + public System.Windows.Media.Media3D.Transform3D Transform { get { throw null; } set { } } + protected virtual int Visual3DChildrenCount { get { throw null; } } + protected System.Windows.Media.Media3D.Model3D Visual3DModel { get { throw null; } set { } } + protected void AddVisual3DChild(System.Windows.Media.Media3D.Visual3D child) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock) { } + public void ApplyAnimationClock(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation) { } + public void BeginAnimation(System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationTimeline animation, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public System.Windows.DependencyObject FindCommonVisualAncestor(System.Windows.DependencyObject otherVisual) { throw null; } + public object GetAnimationBaseValue(System.Windows.DependencyProperty dp) { throw null; } + protected virtual System.Windows.Media.Media3D.Visual3D GetVisual3DChild(int index) { throw null; } + public bool IsAncestorOf(System.Windows.DependencyObject descendant) { throw null; } + public bool IsDescendantOf(System.Windows.DependencyObject ancestor) { throw null; } + protected internal virtual void OnVisualChildrenChanged(System.Windows.DependencyObject visualAdded, System.Windows.DependencyObject visualRemoved) { } + protected internal virtual void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + protected void RemoveVisual3DChild(System.Windows.Media.Media3D.Visual3D child) { } + public System.Windows.Media.Media3D.GeneralTransform3D TransformToAncestor(System.Windows.Media.Media3D.Visual3D ancestor) { throw null; } + public System.Windows.Media.Media3D.GeneralTransform3DTo2D TransformToAncestor(System.Windows.Media.Visual ancestor) { throw null; } + public System.Windows.Media.Media3D.GeneralTransform3D TransformToDescendant(System.Windows.Media.Media3D.Visual3D descendant) { throw null; } + } + public sealed partial class Visual3DCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal Visual3DCollection() { } + public int Count { get { throw null; } } + public System.Windows.Media.Media3D.Visual3D this[int index] { get { throw null; } set { } } + bool System.Collections.Generic.ICollection.IsReadOnly { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Media.Media3D.Visual3D value) { } + public void Clear() { } + public bool Contains(System.Windows.Media.Media3D.Visual3D value) { throw null; } + public void CopyTo(System.Windows.Media.Media3D.Visual3D[] array, int index) { } + public System.Windows.Media.Media3D.Visual3DCollection.Enumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Media3D.Visual3D value) { throw null; } + public void Insert(int index, System.Windows.Media.Media3D.Visual3D value) { } + public bool Remove(System.Windows.Media.Media3D.Visual3D value) { throw null; } + public void RemoveAt(int index) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable + { + public System.Windows.Media.Media3D.Visual3D Current { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + void System.IDisposable.Dispose() { } + } + } +} +namespace System.Windows.Media.Media3D.Converters +{ + public partial class Matrix3DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Matrix3DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Point3DCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public Point3DCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Point3DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Point3DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Point4DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Point4DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class QuaternionValueSerializer : System.Windows.Markup.ValueSerializer + { + public QuaternionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Rect3DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Rect3DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Size3DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Size3DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Vector3DCollectionValueSerializer : System.Windows.Markup.ValueSerializer + { + public Vector3DCollectionValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + public partial class Vector3DValueSerializer : System.Windows.Markup.ValueSerializer + { + public Vector3DValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } +} +namespace System.Windows.Media.TextFormatting +{ + public partial struct CharacterBufferRange : System.IEquatable + { + [System.CLSCompliantAttribute(false)] + public unsafe CharacterBufferRange(char* unsafeCharacterString, int characterLength) { throw null; } + public CharacterBufferRange(char[] characterArray, int offsetToFirstChar, int characterLength) { throw null; } + public CharacterBufferRange(string characterString, int offsetToFirstChar, int characterLength) { throw null; } + public System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public static System.Windows.Media.TextFormatting.CharacterBufferRange Empty { get { throw null; } } + public int Length { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Media.TextFormatting.CharacterBufferRange value) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.TextFormatting.CharacterBufferRange left, System.Windows.Media.TextFormatting.CharacterBufferRange right) { throw null; } + public static bool operator !=(System.Windows.Media.TextFormatting.CharacterBufferRange left, System.Windows.Media.TextFormatting.CharacterBufferRange right) { throw null; } + } + public partial struct CharacterBufferReference : System.IEquatable + { + [System.CLSCompliantAttribute(false)] + public unsafe CharacterBufferReference(char* unsafeCharacterString, int characterLength) { throw null; } + public CharacterBufferReference(char[] characterArray, int offsetToFirstChar) { throw null; } + public CharacterBufferReference(string characterString, int offsetToFirstChar) { throw null; } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Media.TextFormatting.CharacterBufferReference value) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.TextFormatting.CharacterBufferReference left, System.Windows.Media.TextFormatting.CharacterBufferReference right) { throw null; } + public static bool operator !=(System.Windows.Media.TextFormatting.CharacterBufferReference left, System.Windows.Media.TextFormatting.CharacterBufferReference right) { throw null; } + } + public partial struct CharacterHit : System.IEquatable + { + public CharacterHit(int firstCharacterIndex, int trailingLength) { throw null; } + public int FirstCharacterIndex { get { throw null; } } + public int TrailingLength { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Media.TextFormatting.CharacterHit obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.TextFormatting.CharacterHit left, System.Windows.Media.TextFormatting.CharacterHit right) { throw null; } + public static bool operator !=(System.Windows.Media.TextFormatting.CharacterHit left, System.Windows.Media.TextFormatting.CharacterHit right) { throw null; } + } + public partial class CultureSpecificCharacterBufferRange + { + public CultureSpecificCharacterBufferRange(System.Globalization.CultureInfo culture, System.Windows.Media.TextFormatting.CharacterBufferRange characterBufferRange) { } + public System.Windows.Media.TextFormatting.CharacterBufferRange CharacterBufferRange { get { throw null; } } + public System.Globalization.CultureInfo CultureInfo { get { throw null; } } + } + public sealed partial class IndexedGlyphRun + { + internal IndexedGlyphRun() { } + public System.Windows.Media.GlyphRun GlyphRun { get { throw null; } } + public int TextSourceCharacterIndex { get { throw null; } } + public int TextSourceLength { get { throw null; } } + } + [System.FlagsAttribute] + public enum InvertAxes + { + None = 0, + Horizontal = 1, + Vertical = 2, + Both = 3, + } + public partial struct MinMaxParagraphWidth : System.IEquatable + { + public double MaxWidth { get { throw null; } } + public double MinWidth { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Media.TextFormatting.MinMaxParagraphWidth value) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Media.TextFormatting.MinMaxParagraphWidth left, System.Windows.Media.TextFormatting.MinMaxParagraphWidth right) { throw null; } + public static bool operator !=(System.Windows.Media.TextFormatting.MinMaxParagraphWidth left, System.Windows.Media.TextFormatting.MinMaxParagraphWidth right) { throw null; } + } + public sealed partial class TextBounds + { + internal TextBounds() { } + public System.Windows.FlowDirection FlowDirection { get { throw null; } } + public System.Windows.Rect Rectangle { get { throw null; } } + public System.Collections.Generic.IList TextRunBounds { get { throw null; } } + } + public partial class TextCharacters : System.Windows.Media.TextFormatting.TextRun + { + [System.CLSCompliantAttribute(false)] + public unsafe TextCharacters(char* unsafeCharacterString, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public TextCharacters(char[] characterArray, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public TextCharacters(string characterString, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public TextCharacters(string characterString, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public sealed override System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public sealed override int Length { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRunProperties Properties { get { throw null; } } + } + public sealed partial class TextCollapsedRange + { + internal TextCollapsedRange() { } + public int Length { get { throw null; } } + public int TextSourceCharacterIndex { get { throw null; } } + public double Width { get { throw null; } } + } + public abstract partial class TextCollapsingProperties + { + protected TextCollapsingProperties() { } + public abstract System.Windows.Media.TextFormatting.TextCollapsingStyle Style { get; } + public abstract System.Windows.Media.TextFormatting.TextRun Symbol { get; } + public abstract double Width { get; } + } + public enum TextCollapsingStyle + { + TrailingCharacter = 0, + TrailingWord = 1, + } + public abstract partial class TextEmbeddedObject : System.Windows.Media.TextFormatting.TextRun + { + protected TextEmbeddedObject() { } + public abstract System.Windows.LineBreakCondition BreakAfter { get; } + public abstract System.Windows.LineBreakCondition BreakBefore { get; } + public abstract bool HasFixedSize { get; } + public abstract System.Windows.Rect ComputeBoundingBox(bool rightToLeft, bool sideways); + public abstract void Draw(System.Windows.Media.DrawingContext drawingContext, System.Windows.Point origin, bool rightToLeft, bool sideways); + public abstract System.Windows.Media.TextFormatting.TextEmbeddedObjectMetrics Format(double remainingParagraphWidth); + } + public partial class TextEmbeddedObjectMetrics + { + public TextEmbeddedObjectMetrics(double width, double height, double baseline) { } + public double Baseline { get { throw null; } } + public double Height { get { throw null; } } + public double Width { get { throw null; } } + } + public partial class TextEndOfLine : System.Windows.Media.TextFormatting.TextRun + { + public TextEndOfLine(int length) { } + public TextEndOfLine(int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public sealed override System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public sealed override int Length { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRunProperties Properties { get { throw null; } } + } + public partial class TextEndOfParagraph : System.Windows.Media.TextFormatting.TextEndOfLine + { + public TextEndOfParagraph(int length) : base(default(int)) { } + public TextEndOfParagraph(int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) : base(default(int)) { } + } + public partial class TextEndOfSegment : System.Windows.Media.TextFormatting.TextRun + { + public TextEndOfSegment(int length) { } + public sealed override System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public sealed override int Length { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRunProperties Properties { get { throw null; } } + } + public abstract partial class TextFormatter : System.IDisposable + { + protected TextFormatter() { } + public static System.Windows.Media.TextFormatting.TextFormatter Create() { throw null; } + public static System.Windows.Media.TextFormatting.TextFormatter Create(System.Windows.Media.TextFormattingMode textFormattingMode) { throw null; } + public virtual void Dispose() { } + public abstract System.Windows.Media.TextFormatting.TextLine FormatLine(System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, double paragraphWidth, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties, System.Windows.Media.TextFormatting.TextLineBreak previousLineBreak); + public abstract System.Windows.Media.TextFormatting.TextLine FormatLine(System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, double paragraphWidth, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties, System.Windows.Media.TextFormatting.TextLineBreak previousLineBreak, System.Windows.Media.TextFormatting.TextRunCache textRunCache); + public abstract System.Windows.Media.TextFormatting.MinMaxParagraphWidth FormatMinMaxParagraphWidth(System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties); + public abstract System.Windows.Media.TextFormatting.MinMaxParagraphWidth FormatMinMaxParagraphWidth(System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties, System.Windows.Media.TextFormatting.TextRunCache textRunCache); + internal abstract System.Windows.Media.TextFormatting.TextLine RecreateLine(System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, int lineLength, double paragraphWidth, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties, System.Windows.Media.TextFormatting.TextLineBreak previousLineBreak, System.Windows.Media.TextFormatting.TextRunCache textRunCache); + } + public partial class TextHidden : System.Windows.Media.TextFormatting.TextRun + { + public TextHidden(int length) { } + public sealed override System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public sealed override int Length { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRunProperties Properties { get { throw null; } } + } + public abstract partial class TextLine : System.IDisposable + { + protected TextLine() { } + protected TextLine(double pixelsPerDip) { } + public abstract double Baseline { get; } + public abstract int DependentLength { get; } + public abstract double Extent { get; } + public abstract bool HasCollapsed { get; } + public abstract bool HasOverflowed { get; } + public abstract double Height { get; } + public virtual bool IsTruncated { get { throw null; } } + public abstract int Length { get; } + public abstract double MarkerBaseline { get; } + public abstract double MarkerHeight { get; } + public abstract int NewlineLength { get; } + public abstract double OverhangAfter { get; } + public abstract double OverhangLeading { get; } + public abstract double OverhangTrailing { get; } + public double PixelsPerDip { get { throw null; } set { } } + public abstract double Start { get; } + public abstract double TextBaseline { get; } + public abstract double TextHeight { get; } + public abstract int TrailingWhitespaceLength { get; } + public abstract double Width { get; } + public abstract double WidthIncludingTrailingWhitespace { get; } + public abstract System.Windows.Media.TextFormatting.TextLine Collapse(params System.Windows.Media.TextFormatting.TextCollapsingProperties[] collapsingPropertiesList); + public abstract void Dispose(); + public abstract void Draw(System.Windows.Media.DrawingContext drawingContext, System.Windows.Point origin, System.Windows.Media.TextFormatting.InvertAxes inversion); + public abstract System.Windows.Media.TextFormatting.CharacterHit GetBackspaceCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit); + public abstract System.Windows.Media.TextFormatting.CharacterHit GetCharacterHitFromDistance(double distance); + public abstract double GetDistanceFromCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit); + public abstract System.Collections.Generic.IEnumerable GetIndexedGlyphRuns(); + public abstract System.Windows.Media.TextFormatting.CharacterHit GetNextCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit); + public abstract System.Windows.Media.TextFormatting.CharacterHit GetPreviousCaretCharacterHit(System.Windows.Media.TextFormatting.CharacterHit characterHit); + public abstract System.Collections.Generic.IList GetTextBounds(int firstTextSourceCharacterIndex, int textLength); + public abstract System.Collections.Generic.IList GetTextCollapsedRanges(); + public abstract System.Windows.Media.TextFormatting.TextLineBreak GetTextLineBreak(); + public abstract System.Collections.Generic.IList> GetTextRunSpans(); + } + public sealed partial class TextLineBreak : System.IDisposable + { + internal TextLineBreak() { } + public System.Windows.Media.TextFormatting.TextLineBreak Clone() { throw null; } + public void Dispose() { } + ~TextLineBreak() { } + } + public abstract partial class TextMarkerProperties + { + protected TextMarkerProperties() { } + public abstract double Offset { get; } + public abstract System.Windows.Media.TextFormatting.TextSource TextSource { get; } + } + public abstract partial class TextModifier : System.Windows.Media.TextFormatting.TextRun + { + protected TextModifier() { } + public sealed override System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get { throw null; } } + public abstract System.Windows.FlowDirection FlowDirection { get; } + public abstract bool HasDirectionalEmbedding { get; } + public abstract System.Windows.Media.TextFormatting.TextRunProperties ModifyProperties(System.Windows.Media.TextFormatting.TextRunProperties properties); + } + public abstract partial class TextParagraphProperties + { + protected TextParagraphProperties() { } + public virtual bool AlwaysCollapsible { get { throw null; } } + public virtual double DefaultIncrementalTab { get { throw null; } } + public abstract System.Windows.Media.TextFormatting.TextRunProperties DefaultTextRunProperties { get; } + public abstract bool FirstLineInParagraph { get; } + public abstract System.Windows.FlowDirection FlowDirection { get; } + public abstract double Indent { get; } + public abstract double LineHeight { get; } + public virtual double ParagraphIndent { get { throw null; } } + public virtual System.Collections.Generic.IList Tabs { get { throw null; } } + public abstract System.Windows.TextAlignment TextAlignment { get; } + public virtual System.Windows.TextDecorationCollection TextDecorations { get { throw null; } } + public abstract System.Windows.Media.TextFormatting.TextMarkerProperties TextMarkerProperties { get; } + public abstract System.Windows.TextWrapping TextWrapping { get; } + } + public abstract partial class TextRun + { + protected TextRun() { } + public abstract System.Windows.Media.TextFormatting.CharacterBufferReference CharacterBufferReference { get; } + public abstract int Length { get; } + public abstract System.Windows.Media.TextFormatting.TextRunProperties Properties { get; } + } + public sealed partial class TextRunBounds + { + internal TextRunBounds() { } + public int Length { get { throw null; } } + public System.Windows.Rect Rectangle { get { throw null; } } + public System.Windows.Media.TextFormatting.TextRun TextRun { get { throw null; } } + public int TextSourceCharacterIndex { get { throw null; } } + } + public sealed partial class TextRunCache + { + public TextRunCache() { } + public void Change(int textSourceCharacterIndex, int addition, int removal) { } + public void Invalidate() { } + } + public abstract partial class TextRunProperties + { + protected TextRunProperties() { } + public abstract System.Windows.Media.Brush BackgroundBrush { get; } + public virtual System.Windows.BaselineAlignment BaselineAlignment { get { throw null; } } + public abstract System.Globalization.CultureInfo CultureInfo { get; } + public abstract double FontHintingEmSize { get; } + public abstract double FontRenderingEmSize { get; } + public abstract System.Windows.Media.Brush ForegroundBrush { get; } + public virtual System.Windows.Media.NumberSubstitution NumberSubstitution { get { throw null; } } + public double PixelsPerDip { get { throw null; } set { } } + public abstract System.Windows.TextDecorationCollection TextDecorations { get; } + public abstract System.Windows.Media.TextEffectCollection TextEffects { get; } + public abstract System.Windows.Media.Typeface Typeface { get; } + public virtual System.Windows.Media.TextFormatting.TextRunTypographyProperties TypographyProperties { get { throw null; } } + } + public abstract partial class TextRunTypographyProperties + { + protected TextRunTypographyProperties() { } + public abstract int AnnotationAlternates { get; } + public abstract System.Windows.FontCapitals Capitals { get; } + public abstract bool CapitalSpacing { get; } + public abstract bool CaseSensitiveForms { get; } + public abstract bool ContextualAlternates { get; } + public abstract bool ContextualLigatures { get; } + public abstract int ContextualSwashes { get; } + public abstract bool DiscretionaryLigatures { get; } + public abstract bool EastAsianExpertForms { get; } + public abstract System.Windows.FontEastAsianLanguage EastAsianLanguage { get; } + public abstract System.Windows.FontEastAsianWidths EastAsianWidths { get; } + public abstract System.Windows.FontFraction Fraction { get; } + public abstract bool HistoricalForms { get; } + public abstract bool HistoricalLigatures { get; } + public abstract bool Kerning { get; } + public abstract bool MathematicalGreek { get; } + public abstract System.Windows.FontNumeralAlignment NumeralAlignment { get; } + public abstract System.Windows.FontNumeralStyle NumeralStyle { get; } + public abstract bool SlashedZero { get; } + public abstract bool StandardLigatures { get; } + public abstract int StandardSwashes { get; } + public abstract int StylisticAlternates { get; } + public abstract bool StylisticSet1 { get; } + public abstract bool StylisticSet10 { get; } + public abstract bool StylisticSet11 { get; } + public abstract bool StylisticSet12 { get; } + public abstract bool StylisticSet13 { get; } + public abstract bool StylisticSet14 { get; } + public abstract bool StylisticSet15 { get; } + public abstract bool StylisticSet16 { get; } + public abstract bool StylisticSet17 { get; } + public abstract bool StylisticSet18 { get; } + public abstract bool StylisticSet19 { get; } + public abstract bool StylisticSet2 { get; } + public abstract bool StylisticSet20 { get; } + public abstract bool StylisticSet3 { get; } + public abstract bool StylisticSet4 { get; } + public abstract bool StylisticSet5 { get; } + public abstract bool StylisticSet6 { get; } + public abstract bool StylisticSet7 { get; } + public abstract bool StylisticSet8 { get; } + public abstract bool StylisticSet9 { get; } + public abstract System.Windows.FontVariants Variants { get; } + protected void OnPropertiesChanged() { } + } + public partial class TextSimpleMarkerProperties : System.Windows.Media.TextFormatting.TextMarkerProperties + { + public TextSimpleMarkerProperties(System.Windows.TextMarkerStyle style, double offset, int autoNumberingIndex, System.Windows.Media.TextFormatting.TextParagraphProperties textParagraphProperties) { } + public sealed override double Offset { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextSource TextSource { get { throw null; } } + } + public abstract partial class TextSource + { + protected TextSource() { } + public double PixelsPerDip { get { throw null; } set { } } + public abstract System.Windows.Media.TextFormatting.TextSpan GetPrecedingText(int textSourceCharacterIndexLimit); + public abstract int GetTextEffectCharacterIndexFromTextSourceCharacterIndex(int textSourceCharacterIndex); + public abstract System.Windows.Media.TextFormatting.TextRun GetTextRun(int textSourceCharacterIndex); + } + public partial class TextSpan + { + public TextSpan(int length, T value) { } + public int Length { get { throw null; } } + public T Value { get { throw null; } } + } + public enum TextTabAlignment + { + Left = 0, + Center = 1, + Right = 2, + Character = 3, + } + public partial class TextTabProperties + { + public TextTabProperties(System.Windows.Media.TextFormatting.TextTabAlignment alignment, double location, int tabLeader, int aligningChar) { } + public int AligningCharacter { get { throw null; } } + public System.Windows.Media.TextFormatting.TextTabAlignment Alignment { get { throw null; } } + public double Location { get { throw null; } } + public int TabLeader { get { throw null; } } + } + public partial class TextTrailingCharacterEllipsis : System.Windows.Media.TextFormatting.TextCollapsingProperties + { + public TextTrailingCharacterEllipsis(double width, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public sealed override System.Windows.Media.TextFormatting.TextCollapsingStyle Style { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRun Symbol { get { throw null; } } + public sealed override double Width { get { throw null; } } + } + public partial class TextTrailingWordEllipsis : System.Windows.Media.TextFormatting.TextCollapsingProperties + { + public TextTrailingWordEllipsis(double width, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties) { } + public sealed override System.Windows.Media.TextFormatting.TextCollapsingStyle Style { get { throw null; } } + public sealed override System.Windows.Media.TextFormatting.TextRun Symbol { get { throw null; } } + public sealed override double Width { get { throw null; } } + } +} +namespace System.Windows.Navigation +{ + public static partial class BaseUriHelper + { + public static readonly System.Windows.DependencyProperty BaseUriProperty; + public static System.Uri GetBaseUri(System.Windows.DependencyObject element) { throw null; } + } +} +namespace System.Windows.Resources +{ + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple = true)] + public sealed partial class AssemblyAssociatedContentFileAttribute : System.Attribute + { + public AssemblyAssociatedContentFileAttribute(string relativeContentFilePath) { } + public string RelativeContentFilePath { get { throw null; } } + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj index f3964390267..a61f3063baf 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj @@ -1448,7 +1448,10 @@ - + + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj new file mode 100644 index 00000000000..3317372fe5b --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework-ref.csproj @@ -0,0 +1,96 @@ + + + PresentationFramework + PresentationFramework-ref + $(TargetGroup)-$(PackageId)/ + $(DefineConstants);FRAMEWORK_NATIVEMETHODS;COMMONDPS;PRESENTATIONFRAMEWORK_ONLY;PRESENTATIONFRAMEWORK;RIBBON_IN_FRAMEWORK + $(DefineConstants);WeakEventTelemetry + true + false + $(NoWarn);0618;1058,3003 + None + AnyCPU;x64 + false + netcoreapp3.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework.cs b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework.cs new file mode 100644 index 00000000000..58e1f93bf0a --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/PresentationFramework.cs @@ -0,0 +1,12425 @@ +namespace Microsoft.Win32 +{ + public abstract partial class CommonDialog + { + protected CommonDialog() { } + public object Tag { get { throw null; } set { } } + protected virtual void CheckPermissionsToShowDialog() { } + protected virtual System.IntPtr HookProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam) { throw null; } + public abstract void Reset(); + protected abstract bool RunDialog(System.IntPtr hwndOwner); + public virtual bool? ShowDialog() { throw null; } + public bool? ShowDialog(System.Windows.Window owner) { throw null; } + } + public abstract partial class FileDialog : Microsoft.Win32.CommonDialog + { + protected FileDialog() { } + public bool AddExtension { get { throw null; } set { } } + public virtual bool CheckFileExists { get { throw null; } set { } } + public bool CheckPathExists { get { throw null; } set { } } + public System.Collections.Generic.IList CustomPlaces { get { throw null; } set { } } + public string DefaultExt { get { throw null; } set { } } + public bool DereferenceLinks { get { throw null; } set { } } + public string FileName { get { throw null; } set { } } + public string[] FileNames { get { throw null; } } + public string Filter { get { throw null; } set { } } + public int FilterIndex { get { throw null; } set { } } + public string InitialDirectory { get { throw null; } set { } } + protected int Options { get { throw null; } } + public bool RestoreDirectory { get { throw null; } set { } } + public string SafeFileName { get { throw null; } } + public string[] SafeFileNames { get { throw null; } } + public string Title { get { throw null; } set { } } + public bool ValidateNames { get { throw null; } set { } } + public event System.ComponentModel.CancelEventHandler FileOk { add { } remove { } } + protected override System.IntPtr HookProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam) { throw null; } + protected void OnFileOk(System.ComponentModel.CancelEventArgs e) { } + public override void Reset() { } + protected override bool RunDialog(System.IntPtr hwndOwner) { throw null; } + public override string ToString() { throw null; } + } + public sealed partial class FileDialogCustomPlace + { + public FileDialogCustomPlace(System.Guid knownFolder) { } + public FileDialogCustomPlace(string path) { } + public System.Guid KnownFolder { get { throw null; } } + public string Path { get { throw null; } } + } + public static partial class FileDialogCustomPlaces + { + public static Microsoft.Win32.FileDialogCustomPlace Contacts { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Cookies { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Desktop { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Documents { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Favorites { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace LocalApplicationData { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Music { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Pictures { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace ProgramFiles { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace ProgramFilesCommon { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Programs { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace RoamingApplicationData { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace SendTo { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace StartMenu { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Startup { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace System { get { throw null; } } + public static Microsoft.Win32.FileDialogCustomPlace Templates { get { throw null; } } + } + public sealed partial class OpenFileDialog : Microsoft.Win32.FileDialog + { + public OpenFileDialog() { } + public bool Multiselect { get { throw null; } set { } } + public bool ReadOnlyChecked { get { throw null; } set { } } + public bool ShowReadOnly { get { throw null; } set { } } + protected override void CheckPermissionsToShowDialog() { } + public System.IO.Stream OpenFile() { throw null; } + public System.IO.Stream[] OpenFiles() { throw null; } + public override void Reset() { } + } + public sealed partial class SaveFileDialog : Microsoft.Win32.FileDialog + { + public SaveFileDialog() { } + public bool CreatePrompt { get { throw null; } set { } } + public bool OverwritePrompt { get { throw null; } set { } } + public System.IO.Stream OpenFile() { throw null; } + public override void Reset() { } + } +} +namespace System.ComponentModel +{ + public static partial class DesignerProperties + { + public static readonly System.Windows.DependencyProperty IsInDesignModeProperty; + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public static bool GetIsInDesignMode(System.Windows.DependencyObject element) { throw null; } + public static void SetIsInDesignMode(System.Windows.DependencyObject element, bool value) { } + } +} +namespace System.Windows +{ + public partial class Application : System.Windows.Threading.DispatcherObject, System.Windows.Markup.IQueryAmbient + { + public Application() { } + public static System.Windows.Application Current { get { throw null; } } + public System.Windows.Window MainWindow { get { throw null; } set { } } + public System.Collections.IDictionary Properties { get { throw null; } } + public static System.Reflection.Assembly ResourceAssembly { get { throw null; } set { } } + [System.Windows.Markup.AmbientAttribute] + public System.Windows.ResourceDictionary Resources { get { throw null; } set { } } + public System.Windows.ShutdownMode ShutdownMode { get { throw null; } set { } } + public System.Uri StartupUri { get { throw null; } set { } } + public System.Windows.WindowCollection Windows { get { throw null; } } + public event System.EventHandler Activated { add { } remove { } } + public event System.EventHandler Deactivated { add { } remove { } } + public event System.Windows.Threading.DispatcherUnhandledExceptionEventHandler DispatcherUnhandledException { add { } remove { } } + public event System.Windows.ExitEventHandler Exit { add { } remove { } } + public event System.Windows.Navigation.FragmentNavigationEventHandler FragmentNavigation { add { } remove { } } + public event System.Windows.Navigation.LoadCompletedEventHandler LoadCompleted { add { } remove { } } + public event System.Windows.Navigation.NavigatedEventHandler Navigated { add { } remove { } } + public event System.Windows.Navigation.NavigatingCancelEventHandler Navigating { add { } remove { } } + public event System.Windows.Navigation.NavigationFailedEventHandler NavigationFailed { add { } remove { } } + public event System.Windows.Navigation.NavigationProgressEventHandler NavigationProgress { add { } remove { } } + public event System.Windows.Navigation.NavigationStoppedEventHandler NavigationStopped { add { } remove { } } + public event System.Windows.SessionEndingCancelEventHandler SessionEnding { add { } remove { } } + public event System.Windows.StartupEventHandler Startup { add { } remove { } } + public object FindResource(object resourceKey) { throw null; } + public static System.Windows.Resources.StreamResourceInfo GetContentStream(System.Uri uriContent) { throw null; } + public static string GetCookie(System.Uri uri) { throw null; } + public static System.Windows.Resources.StreamResourceInfo GetRemoteStream(System.Uri uriRemote) { throw null; } + public static System.Windows.Resources.StreamResourceInfo GetResourceStream(System.Uri uriResource) { throw null; } + public static void LoadComponent(object component, System.Uri resourceLocator) { } + public static object LoadComponent(System.Uri resourceLocator) { throw null; } + protected virtual void OnActivated(System.EventArgs e) { } + protected virtual void OnDeactivated(System.EventArgs e) { } + protected virtual void OnExit(System.Windows.ExitEventArgs e) { } + protected virtual void OnFragmentNavigation(System.Windows.Navigation.FragmentNavigationEventArgs e) { } + protected virtual void OnLoadCompleted(System.Windows.Navigation.NavigationEventArgs e) { } + protected virtual void OnNavigated(System.Windows.Navigation.NavigationEventArgs e) { } + protected virtual void OnNavigating(System.Windows.Navigation.NavigatingCancelEventArgs e) { } + protected virtual void OnNavigationFailed(System.Windows.Navigation.NavigationFailedEventArgs e) { } + protected virtual void OnNavigationProgress(System.Windows.Navigation.NavigationProgressEventArgs e) { } + protected virtual void OnNavigationStopped(System.Windows.Navigation.NavigationEventArgs e) { } + protected virtual void OnSessionEnding(System.Windows.SessionEndingCancelEventArgs e) { } + protected virtual void OnStartup(System.Windows.StartupEventArgs e) { } + public int Run() { throw null; } + public int Run(System.Windows.Window window) { throw null; } + public static void SetCookie(System.Uri uri, string value) { } + public void Shutdown() { } + public void Shutdown(int exitCode) { } + bool System.Windows.Markup.IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) { throw null; } + public object TryFindResource(object resourceKey) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false)] + public sealed partial class AttachedPropertyBrowsableForChildrenAttribute : System.Windows.AttachedPropertyBrowsableAttribute + { + public AttachedPropertyBrowsableForChildrenAttribute() { } + public bool IncludeDescendants { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + internal override bool IsBrowsable(System.Windows.DependencyObject d, System.Windows.DependencyProperty dp) { throw null; } + } + public enum BaseValueSource + { + Unknown = 0, + Default = 1, + Inherited = 2, + DefaultStyle = 3, + DefaultStyleTrigger = 4, + Style = 5, + TemplateTrigger = 6, + StyleTrigger = 7, + ImplicitStyleReference = 8, + ParentTemplate = 9, + ParentTemplateTrigger = 10, + Local = 11, + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Windows.Media.Imaging.ColorConvertedBitmap))] + public partial class ColorConvertedBitmapExtension : System.Windows.Markup.MarkupExtension + { + public ColorConvertedBitmapExtension() { } + public ColorConvertedBitmapExtension(object image) { } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + public enum ColumnSpaceDistribution + { + Left = 0, + Right = 1, + Between = 2, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.ComponentResourceKeyConverter))] + public partial class ComponentResourceKey : System.Windows.ResourceKey + { + public ComponentResourceKey() { } + public ComponentResourceKey(System.Type typeInTargetAssembly, object resourceId) { } + public override System.Reflection.Assembly Assembly { get { throw null; } } + public object ResourceId { get { throw null; } set { } } + public System.Type TypeInTargetAssembly { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public override string ToString() { throw null; } + } + [System.Windows.Markup.XamlSetMarkupExtensionAttribute("ReceiveMarkupExtension")] + [System.Windows.Markup.XamlSetTypeConverterAttribute("ReceiveTypeConverter")] + public sealed partial class Condition : System.ComponentModel.ISupportInitialize + { + public Condition() { } + public Condition(System.Windows.Data.BindingBase binding, object conditionValue) { } + public Condition(System.Windows.DependencyProperty conditionProperty, object conditionValue) { } + public Condition(System.Windows.DependencyProperty conditionProperty, object conditionValue, string sourceName) { } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.BindingBase Binding { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.DependencyProperty Property { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string SourceName { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.SetterTriggerConditionValueConverter))] + public object Value { get { throw null; } set { } } + public static void ReceiveMarkupExtension(object targetObject, System.Windows.Markup.XamlSetMarkupExtensionEventArgs eventArgs) { } + public static void ReceiveTypeConverter(object targetObject, System.Windows.Markup.XamlSetTypeConverterEventArgs eventArgs) { } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + public sealed partial class ConditionCollection : System.Collections.ObjectModel.Collection + { + public ConditionCollection() { } + public bool IsSealed { get { throw null; } } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.Windows.Condition item) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.Condition item) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CornerRadiusConverter))] + public partial struct CornerRadius : System.IEquatable + { + public CornerRadius(double uniformRadius) { throw null; } + public CornerRadius(double topLeft, double topRight, double bottomRight, double bottomLeft) { throw null; } + public double BottomLeft { get { throw null; } set { } } + public double BottomRight { get { throw null; } set { } } + public double TopLeft { get { throw null; } set { } } + public double TopRight { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.CornerRadius cornerRadius) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.CornerRadius cr1, System.Windows.CornerRadius cr2) { throw null; } + public static bool operator !=(System.Windows.CornerRadius cr1, System.Windows.CornerRadius cr2) { throw null; } + public override string ToString() { throw null; } + } + public partial class CornerRadiusConverter : System.ComponentModel.TypeConverter + { + public CornerRadiusConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.DictionaryKeyPropertyAttribute("DataTemplateKey")] + public partial class DataTemplate : System.Windows.FrameworkTemplate + { + public DataTemplate() { } + public DataTemplate(object dataType) { } + public object DataTemplateKey { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public object DataType { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + [System.Windows.Markup.DependsOnAttribute("Template")] + [System.Windows.Markup.DependsOnAttribute("VisualTree")] + public System.Windows.TriggerCollection Triggers { get { throw null; } } + protected override void ValidateTemplatedParent(System.Windows.FrameworkElement templatedParent) { } + } + public partial class DataTemplateKey : System.Windows.TemplateKey + { + public DataTemplateKey() : base (default(System.Windows.TemplateKey.TemplateType)) { } + public DataTemplateKey(object dataType) : base (default(System.Windows.TemplateKey.TemplateType)) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Setters")] + [System.Windows.Markup.XamlSetMarkupExtensionAttribute("ReceiveMarkupExtension")] + public partial class DataTrigger : System.Windows.TriggerBase, System.Windows.Markup.IAddChild + { + public DataTrigger() { } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public System.Windows.Data.BindingBase Binding { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.SetterBaseCollection Setters { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.DependsOnAttribute("Binding")] + public object Value { get { throw null; } set { } } + public static void ReceiveMarkupExtension(object targetObject, System.Windows.Markup.XamlSetMarkupExtensionEventArgs eventArgs) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.DeferrableContentConverter))] + public partial class DeferrableContent + { + internal DeferrableContent() { } + } + public partial class DeferrableContentConverter : System.ComponentModel.TypeConverter + { + public DeferrableContentConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + } + public static partial class DependencyPropertyHelper + { + public static System.Windows.ValueSource GetValueSource(System.Windows.DependencyObject dependencyObject, System.Windows.DependencyProperty dependencyProperty) { throw null; } + public static bool IsTemplatedValueDynamic(System.Windows.DependencyObject elementInTemplate, System.Windows.DependencyProperty dependencyProperty) { throw null; } + } + public partial class DialogResultConverter : System.ComponentModel.TypeConverter + { + public DialogResultConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.DynamicResourceExtensionConverter))] + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public partial class DynamicResourceExtension : System.Windows.Markup.MarkupExtension + { + public DynamicResourceExtension() { } + public DynamicResourceExtension(object resourceKey) { } + [System.Windows.Markup.ConstructorArgumentAttribute("resourceKey")] + public object ResourceKey { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + public partial class DynamicResourceExtensionConverter : System.ComponentModel.TypeConverter + { + public DynamicResourceExtensionConverter() { } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class EventSetter : System.Windows.SetterBase + { + public EventSetter() { } + public EventSetter(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public System.Windows.RoutedEvent Event { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool HandledEventsToo { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.EventSetterHandlerConverter))] + public System.Delegate Handler { get { throw null; } set { } } + } + [System.Windows.Markup.ContentPropertyAttribute("Actions")] + public partial class EventTrigger : System.Windows.TriggerBase, System.Windows.Markup.IAddChild + { + public EventTrigger() { } + public EventTrigger(System.Windows.RoutedEvent routedEvent) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.TriggerActionCollection Actions { get { throw null; } } + public System.Windows.RoutedEvent RoutedEvent { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string SourceName { get { throw null; } set { } } + protected virtual void AddChild(object value) { } + protected virtual void AddText(string text) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeActions() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class ExceptionRoutedEventArgs : System.Windows.RoutedEventArgs + { + internal ExceptionRoutedEventArgs() { } + public System.Exception ErrorException { get { throw null; } } + } + public partial class ExitEventArgs : System.EventArgs + { + internal ExitEventArgs() { } + public int ApplicationExitCode { get { throw null; } set { } } + } + public delegate void ExitEventHandler(object sender, System.Windows.ExitEventArgs e); + public enum FigureHorizontalAnchor + { + PageLeft = 0, + PageCenter = 1, + PageRight = 2, + ContentLeft = 3, + ContentCenter = 4, + ContentRight = 5, + ColumnLeft = 6, + ColumnCenter = 7, + ColumnRight = 8, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FigureLengthConverter))] + public partial struct FigureLength : System.IEquatable + { + public FigureLength(double pixels) { throw null; } + public FigureLength(double value, System.Windows.FigureUnitType type) { throw null; } + public System.Windows.FigureUnitType FigureUnitType { get { throw null; } } + public bool IsAbsolute { get { throw null; } } + public bool IsAuto { get { throw null; } } + public bool IsColumn { get { throw null; } } + public bool IsContent { get { throw null; } } + public bool IsPage { get { throw null; } } + public double Value { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.FigureLength figureLength) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.FigureLength fl1, System.Windows.FigureLength fl2) { throw null; } + public static bool operator !=(System.Windows.FigureLength fl1, System.Windows.FigureLength fl2) { throw null; } + public override string ToString() { throw null; } + } + public partial class FigureLengthConverter : System.ComponentModel.TypeConverter + { + public FigureLengthConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum FigureUnitType + { + Auto = 0, + Pixel = 1, + Column = 2, + Content = 3, + Page = 4, + } + public enum FigureVerticalAnchor + { + PageTop = 0, + PageCenter = 1, + PageBottom = 2, + ContentTop = 3, + ContentCenter = 4, + ContentBottom = 5, + ParagraphTop = 6, + } + public partial class FontSizeConverter : System.ComponentModel.TypeConverter + { + public FontSizeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public static partial class FrameworkCompatibilityPreferences + { + public static bool AreInactiveSelectionHighlightBrushKeysSupported { get { throw null; } set { } } + public static bool KeepTextBoxDisplaySynchronizedWithTextProperty { get { throw null; } set { } } + public static bool ShouldThrowOnCopyOrCutFailure { get { throw null; } set { } } + } + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + [System.Windows.Markup.UsableDuringInitializationAttribute(true)] + [System.Windows.Markup.XmlLangPropertyAttribute("Language")] + [System.Windows.StyleTypedPropertyAttribute(Property="FocusVisualStyle", StyleTargetType=typeof(System.Windows.Controls.Control))] + public partial class FrameworkContentElement : System.Windows.ContentElement, System.ComponentModel.ISupportInitialize, System.Windows.IFrameworkInputElement, System.Windows.IInputElement, System.Windows.Markup.IQueryAmbient + { + public static readonly System.Windows.DependencyProperty BindingGroupProperty; + public static readonly System.Windows.RoutedEvent ContextMenuClosingEvent; + public static readonly System.Windows.RoutedEvent ContextMenuOpeningEvent; + public static readonly System.Windows.DependencyProperty ContextMenuProperty; + public static readonly System.Windows.DependencyProperty CursorProperty; + public static readonly System.Windows.DependencyProperty DataContextProperty; + protected internal static readonly System.Windows.DependencyProperty DefaultStyleKeyProperty; + public static readonly System.Windows.DependencyProperty FocusVisualStyleProperty; + public static readonly System.Windows.DependencyProperty ForceCursorProperty; + public static readonly System.Windows.DependencyProperty InputScopeProperty; + public static readonly System.Windows.DependencyProperty LanguageProperty; + public static readonly System.Windows.RoutedEvent LoadedEvent; + public static readonly System.Windows.DependencyProperty NameProperty; + public static readonly System.Windows.DependencyProperty OverridesDefaultStyleProperty; + public static readonly System.Windows.DependencyProperty StyleProperty; + public static readonly System.Windows.DependencyProperty TagProperty; + public static readonly System.Windows.RoutedEvent ToolTipClosingEvent; + public static readonly System.Windows.RoutedEvent ToolTipOpeningEvent; + public static readonly System.Windows.DependencyProperty ToolTipProperty; + public static readonly System.Windows.RoutedEvent UnloadedEvent; + public FrameworkContentElement() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Data.BindingGroup BindingGroup { get { throw null; } set { } } + public System.Windows.Controls.ContextMenu ContextMenu { get { throw null; } set { } } + public System.Windows.Input.Cursor Cursor { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object DataContext { get { throw null; } set { } } + protected internal object DefaultStyleKey { get { throw null; } set { } } + public System.Windows.Style FocusVisualStyle { get { throw null; } set { } } + public bool ForceCursor { get { throw null; } set { } } + public System.Windows.Input.InputScope InputScope { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public bool IsInitialized { get { throw null; } } + public bool IsLoaded { get { throw null; } } + public System.Windows.Markup.XmlLanguage Language { get { throw null; } set { } } + protected internal virtual System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.MergablePropertyAttribute(false)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public string Name { get { throw null; } set { } } + public bool OverridesDefaultStyle { get { throw null; } set { } } + public System.Windows.DependencyObject Parent { get { throw null; } } + [System.Windows.Markup.AmbientAttribute] + public System.Windows.ResourceDictionary Resources { get { throw null; } set { } } + public System.Windows.Style Style { get { throw null; } set { } } + public object Tag { get { throw null; } set { } } + public System.Windows.DependencyObject TemplatedParent { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public object ToolTip { get { throw null; } set { } } + public event System.Windows.Controls.ContextMenuEventHandler ContextMenuClosing { add { } remove { } } + public event System.Windows.Controls.ContextMenuEventHandler ContextMenuOpening { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler DataContextChanged { add { } remove { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public event System.EventHandler Initialized { add { } remove { } } + public event System.Windows.RoutedEventHandler Loaded { add { } remove { } } + public event System.EventHandler SourceUpdated { add { } remove { } } + public event System.EventHandler TargetUpdated { add { } remove { } } + public event System.Windows.Controls.ToolTipEventHandler ToolTipClosing { add { } remove { } } + public event System.Windows.Controls.ToolTipEventHandler ToolTipOpening { add { } remove { } } + public event System.Windows.RoutedEventHandler Unloaded { add { } remove { } } + protected internal void AddLogicalChild(object child) { } + public virtual void BeginInit() { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard) { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable) { } + public void BringIntoView() { } + public virtual void EndInit() { } + public object FindName(string name) { throw null; } + public object FindResource(object resourceKey) { throw null; } + public System.Windows.Data.BindingExpression GetBindingExpression(System.Windows.DependencyProperty dp) { throw null; } + protected internal override System.Windows.DependencyObject GetUIParentCore() { throw null; } + public sealed override bool MoveFocus(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual void OnContextMenuClosing(System.Windows.Controls.ContextMenuEventArgs e) { } + protected virtual void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected virtual void OnInitialized(System.EventArgs e) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected internal virtual void OnStyleChanged(System.Windows.Style oldStyle, System.Windows.Style newStyle) { } + protected virtual void OnToolTipClosing(System.Windows.Controls.ToolTipEventArgs e) { } + protected virtual void OnToolTipOpening(System.Windows.Controls.ToolTipEventArgs e) { } + public sealed override System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) { throw null; } + public void RegisterName(string name, object scopedElement) { } + protected internal void RemoveLogicalChild(object child) { } + public System.Windows.Data.BindingExpression SetBinding(System.Windows.DependencyProperty dp, string path) { throw null; } + public System.Windows.Data.BindingExpressionBase SetBinding(System.Windows.DependencyProperty dp, System.Windows.Data.BindingBase binding) { throw null; } + public void SetResourceReference(System.Windows.DependencyProperty dp, object name) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeResources() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeStyle() { throw null; } + bool System.Windows.Markup.IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) { throw null; } + public object TryFindResource(object resourceKey) { throw null; } + public void UnregisterName(string name) { } + public void UpdateDefaultStyle() { } + } + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + [System.Windows.Markup.UsableDuringInitializationAttribute(true)] + [System.Windows.Markup.XmlLangPropertyAttribute("Language")] + [System.Windows.StyleTypedPropertyAttribute(Property="FocusVisualStyle", StyleTargetType=typeof(System.Windows.Controls.Control))] + public partial class FrameworkElement : System.Windows.UIElement, System.ComponentModel.ISupportInitialize, System.Windows.IFrameworkInputElement, System.Windows.IInputElement, System.Windows.Markup.IQueryAmbient + { + public static readonly System.Windows.DependencyProperty ActualHeightProperty; + public static readonly System.Windows.DependencyProperty ActualWidthProperty; + public static readonly System.Windows.DependencyProperty BindingGroupProperty; + public static readonly System.Windows.RoutedEvent ContextMenuClosingEvent; + public static readonly System.Windows.RoutedEvent ContextMenuOpeningEvent; + public static readonly System.Windows.DependencyProperty ContextMenuProperty; + public static readonly System.Windows.DependencyProperty CursorProperty; + public static readonly System.Windows.DependencyProperty DataContextProperty; + protected internal static readonly System.Windows.DependencyProperty DefaultStyleKeyProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty FocusVisualStyleProperty; + public static readonly System.Windows.DependencyProperty ForceCursorProperty; + public static readonly System.Windows.DependencyProperty HeightProperty; + public static readonly System.Windows.DependencyProperty HorizontalAlignmentProperty; + public static readonly System.Windows.DependencyProperty InputScopeProperty; + public static readonly System.Windows.DependencyProperty LanguageProperty; + public static readonly System.Windows.DependencyProperty LayoutTransformProperty; + public static readonly System.Windows.RoutedEvent LoadedEvent; + public static readonly System.Windows.DependencyProperty MarginProperty; + public static readonly System.Windows.DependencyProperty MaxHeightProperty; + public static readonly System.Windows.DependencyProperty MaxWidthProperty; + public static readonly System.Windows.DependencyProperty MinHeightProperty; + public static readonly System.Windows.DependencyProperty MinWidthProperty; + public static readonly System.Windows.DependencyProperty NameProperty; + public static readonly System.Windows.DependencyProperty OverridesDefaultStyleProperty; + public static readonly System.Windows.RoutedEvent RequestBringIntoViewEvent; + public static readonly System.Windows.RoutedEvent SizeChangedEvent; + public static readonly System.Windows.DependencyProperty StyleProperty; + public static readonly System.Windows.DependencyProperty TagProperty; + public static readonly System.Windows.RoutedEvent ToolTipClosingEvent; + public static readonly System.Windows.RoutedEvent ToolTipOpeningEvent; + public static readonly System.Windows.DependencyProperty ToolTipProperty; + public static readonly System.Windows.RoutedEvent UnloadedEvent; + public static readonly System.Windows.DependencyProperty UseLayoutRoundingProperty; + public static readonly System.Windows.DependencyProperty VerticalAlignmentProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public FrameworkElement() { } + public double ActualHeight { get { throw null; } } + public double ActualWidth { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Data.BindingGroup BindingGroup { get { throw null; } set { } } + public System.Windows.Controls.ContextMenu ContextMenu { get { throw null; } set { } } + public System.Windows.Input.Cursor Cursor { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object DataContext { get { throw null; } set { } } + protected internal object DefaultStyleKey { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + public System.Windows.Style FocusVisualStyle { get { throw null; } set { } } + public bool ForceCursor { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double Height { get { throw null; } set { } } + public System.Windows.HorizontalAlignment HorizontalAlignment { get { throw null; } set { } } + protected internal System.Windows.InheritanceBehavior InheritanceBehavior { get { throw null; } set { } } + public System.Windows.Input.InputScope InputScope { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public bool IsInitialized { get { throw null; } } + public bool IsLoaded { get { throw null; } } + public System.Windows.Markup.XmlLanguage Language { get { throw null; } set { } } + public System.Windows.Media.Transform LayoutTransform { get { throw null; } set { } } + protected internal virtual System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Thickness Margin { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double MaxHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double MaxWidth { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double MinHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double MinWidth { get { throw null; } set { } } + [System.ComponentModel.MergablePropertyAttribute(false)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public string Name { get { throw null; } set { } } + public bool OverridesDefaultStyle { get { throw null; } set { } } + public System.Windows.DependencyObject Parent { get { throw null; } } + [System.Windows.Markup.AmbientAttribute] + public System.Windows.ResourceDictionary Resources { get { throw null; } set { } } + public System.Windows.Style Style { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object Tag { get { throw null; } set { } } + public System.Windows.DependencyObject TemplatedParent { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.ToolTip)] + public object ToolTip { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.TriggerCollection Triggers { get { throw null; } } + public bool UseLayoutRounding { get { throw null; } set { } } + public System.Windows.VerticalAlignment VerticalAlignment { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double Width { get { throw null; } set { } } + public event System.Windows.Controls.ContextMenuEventHandler ContextMenuClosing { add { } remove { } } + public event System.Windows.Controls.ContextMenuEventHandler ContextMenuOpening { add { } remove { } } + public event System.Windows.DependencyPropertyChangedEventHandler DataContextChanged { add { } remove { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public event System.EventHandler Initialized { add { } remove { } } + public event System.Windows.RoutedEventHandler Loaded { add { } remove { } } + public event System.Windows.RequestBringIntoViewEventHandler RequestBringIntoView { add { } remove { } } + public event System.Windows.SizeChangedEventHandler SizeChanged { add { } remove { } } + public event System.EventHandler SourceUpdated { add { } remove { } } + public event System.EventHandler TargetUpdated { add { } remove { } } + public event System.Windows.Controls.ToolTipEventHandler ToolTipClosing { add { } remove { } } + public event System.Windows.Controls.ToolTipEventHandler ToolTipOpening { add { } remove { } } + public event System.Windows.RoutedEventHandler Unloaded { add { } remove { } } + protected internal void AddLogicalChild(object child) { } + public bool ApplyTemplate() { throw null; } + protected sealed override void ArrangeCore(System.Windows.Rect finalRect) { } + protected virtual System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + public virtual void BeginInit() { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard) { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void BeginStoryboard(System.Windows.Media.Animation.Storyboard storyboard, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable) { } + public void BringIntoView() { } + public void BringIntoView(System.Windows.Rect targetRectangle) { } + public virtual void EndInit() { } + public object FindName(string name) { throw null; } + public object FindResource(object resourceKey) { throw null; } + public System.Windows.Data.BindingExpression GetBindingExpression(System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.FlowDirection GetFlowDirection(System.Windows.DependencyObject element) { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected internal System.Windows.DependencyObject GetTemplateChild(string childName) { throw null; } + protected internal override System.Windows.DependencyObject GetUIParentCore() { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected sealed override System.Windows.Size MeasureCore(System.Windows.Size availableSize) { throw null; } + protected virtual System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + public sealed override bool MoveFocus(System.Windows.Input.TraversalRequest request) { throw null; } + public virtual void OnApplyTemplate() { } + protected virtual void OnContextMenuClosing(System.Windows.Controls.ContextMenuEventArgs e) { } + protected virtual void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected virtual void OnInitialized(System.EventArgs e) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected internal override void OnRenderSizeChanged(System.Windows.SizeChangedInfo sizeInfo) { } + protected internal virtual void OnStyleChanged(System.Windows.Style oldStyle, System.Windows.Style newStyle) { } + protected virtual void OnToolTipClosing(System.Windows.Controls.ToolTipEventArgs e) { } + protected virtual void OnToolTipOpening(System.Windows.Controls.ToolTipEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + protected internal virtual void ParentLayoutInvalidated(System.Windows.UIElement child) { } + public sealed override System.Windows.DependencyObject PredictFocus(System.Windows.Input.FocusNavigationDirection direction) { throw null; } + public void RegisterName(string name, object scopedElement) { } + protected internal void RemoveLogicalChild(object child) { } + public System.Windows.Data.BindingExpression SetBinding(System.Windows.DependencyProperty dp, string path) { throw null; } + public System.Windows.Data.BindingExpressionBase SetBinding(System.Windows.DependencyProperty dp, System.Windows.Data.BindingBase binding) { throw null; } + public static void SetFlowDirection(System.Windows.DependencyObject element, System.Windows.FlowDirection value) { } + public void SetResourceReference(System.Windows.DependencyProperty dp, object name) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeResources() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeStyle() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeTriggers() { throw null; } + bool System.Windows.Markup.IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) { throw null; } + public object TryFindResource(object resourceKey) { throw null; } + public void UnregisterName(string name) { } + public void UpdateDefaultStyle() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class FrameworkElementFactory + { + public FrameworkElementFactory() { } + public FrameworkElementFactory(string text) { } + public FrameworkElementFactory(System.Type type) { } + public FrameworkElementFactory(System.Type type, string name) { } + public System.Windows.FrameworkElementFactory FirstChild { get { throw null; } } + public bool IsSealed { get { throw null; } } + public string Name { get { throw null; } set { } } + public System.Windows.FrameworkElementFactory NextSibling { get { throw null; } } + public System.Windows.FrameworkElementFactory Parent { get { throw null; } } + public string Text { get { throw null; } set { } } + public System.Type Type { get { throw null; } set { } } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public void AddHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler, bool handledEventsToo) { } + public void AppendChild(System.Windows.FrameworkElementFactory child) { } + public void RemoveHandler(System.Windows.RoutedEvent routedEvent, System.Delegate handler) { } + public void SetBinding(System.Windows.DependencyProperty dp, System.Windows.Data.BindingBase binding) { } + public void SetResourceReference(System.Windows.DependencyProperty dp, object name) { } + public void SetValue(System.Windows.DependencyProperty dp, object value) { } + } + public partial class FrameworkPropertyMetadata : System.Windows.UIPropertyMetadata + { + public FrameworkPropertyMetadata() { } + public FrameworkPropertyMetadata(object defaultValue) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.FrameworkPropertyMetadataOptions flags) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.FrameworkPropertyMetadataOptions flags, System.Windows.PropertyChangedCallback propertyChangedCallback) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.FrameworkPropertyMetadataOptions flags, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.FrameworkPropertyMetadataOptions flags, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback, bool isAnimationProhibited) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.FrameworkPropertyMetadataOptions flags, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback, bool isAnimationProhibited, System.Windows.Data.UpdateSourceTrigger defaultUpdateSourceTrigger) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.PropertyChangedCallback propertyChangedCallback) { } + public FrameworkPropertyMetadata(object defaultValue, System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback) { } + public FrameworkPropertyMetadata(System.Windows.PropertyChangedCallback propertyChangedCallback) { } + public FrameworkPropertyMetadata(System.Windows.PropertyChangedCallback propertyChangedCallback, System.Windows.CoerceValueCallback coerceValueCallback) { } + public bool AffectsArrange { get { throw null; } set { } } + public bool AffectsMeasure { get { throw null; } set { } } + public bool AffectsParentArrange { get { throw null; } set { } } + public bool AffectsParentMeasure { get { throw null; } set { } } + public bool AffectsRender { get { throw null; } set { } } + public bool BindsTwoWayByDefault { get { throw null; } set { } } + public System.Windows.Data.UpdateSourceTrigger DefaultUpdateSourceTrigger { get { throw null; } set { } } + public bool Inherits { get { throw null; } set { } } + public bool IsDataBindingAllowed { get { throw null; } } + public bool IsNotDataBindable { get { throw null; } set { } } + public bool Journal { get { throw null; } set { } } + public bool OverridesInheritanceBehavior { get { throw null; } set { } } + public bool SubPropertiesDoNotAffectRender { get { throw null; } set { } } + protected override void Merge(System.Windows.PropertyMetadata baseMetadata, System.Windows.DependencyProperty dp) { } + protected override void OnApply(System.Windows.DependencyProperty dp, System.Type targetType) { } + } + [System.FlagsAttribute] + public enum FrameworkPropertyMetadataOptions + { + None = 0, + AffectsMeasure = 1, + AffectsArrange = 2, + AffectsParentMeasure = 4, + AffectsParentArrange = 8, + AffectsRender = 16, + Inherits = 32, + OverridesInheritanceBehavior = 64, + NotDataBindable = 128, + BindsTwoWayByDefault = 256, + Journal = 1024, + SubPropertiesDoNotAffectRender = 2048, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.Markup.ContentPropertyAttribute("VisualTree")] + public abstract partial class FrameworkTemplate : System.Windows.Threading.DispatcherObject, System.Windows.Markup.INameScope, System.Windows.Markup.IQueryAmbient + { + protected FrameworkTemplate() { } + public bool HasContent { get { throw null; } } + public bool IsSealed { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.ResourceDictionary Resources { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.TemplateContent Template { get { throw null; } set { } } + public System.Windows.FrameworkElementFactory VisualTree { get { throw null; } set { } } + public object FindName(string name, System.Windows.FrameworkElement templatedParent) { throw null; } + public System.Windows.DependencyObject LoadContent() { throw null; } + public void RegisterName(string name, object scopedElement) { } + public void Seal() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeResources(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeVisualTree() { throw null; } + object System.Windows.Markup.INameScope.FindName(string name) { throw null; } + bool System.Windows.Markup.IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) { throw null; } + public void UnregisterName(string name) { } + protected virtual void ValidateTemplatedParent(System.Windows.FrameworkElement templatedParent) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.GridLengthConverter))] + public partial struct GridLength : System.IEquatable + { + public GridLength(double pixels) { throw null; } + public GridLength(double value, System.Windows.GridUnitType type) { throw null; } + public static System.Windows.GridLength Auto { get { throw null; } } + public System.Windows.GridUnitType GridUnitType { get { throw null; } } + public bool IsAbsolute { get { throw null; } } + public bool IsAuto { get { throw null; } } + public bool IsStar { get { throw null; } } + public double Value { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.GridLength gridLength) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.GridLength gl1, System.Windows.GridLength gl2) { throw null; } + public static bool operator !=(System.Windows.GridLength gl1, System.Windows.GridLength gl2) { throw null; } + public override string ToString() { throw null; } + } + public partial class GridLengthConverter : System.ComponentModel.TypeConverter + { + public GridLengthConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum GridUnitType + { + Auto = 0, + Pixel = 1, + Star = 2, + } + public partial class HierarchicalDataTemplate : System.Windows.DataTemplate + { + public HierarchicalDataTemplate() { } + public HierarchicalDataTemplate(object dataType) { } + public int AlternationCount { get { throw null; } set { } } + public System.Windows.Data.BindingGroup ItemBindingGroup { get { throw null; } set { } } + public System.Windows.Style ItemContainerStyle { get { throw null; } set { } } + public System.Windows.Controls.StyleSelector ItemContainerStyleSelector { get { throw null; } set { } } + public System.Windows.Data.BindingBase ItemsSource { get { throw null; } set { } } + public string ItemStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate ItemTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector ItemTemplateSelector { get { throw null; } set { } } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum HorizontalAlignment + { + Left = 0, + Center = 1, + Right = 2, + Stretch = 3, + } + public partial interface IFrameworkInputElement : System.Windows.IInputElement + { + string Name { get; set; } + } + public enum InheritanceBehavior + { + Default = 0, + SkipToAppNow = 1, + SkipToAppNext = 2, + SkipToThemeNow = 3, + SkipToThemeNext = 4, + SkipAllNow = 5, + SkipAllNext = 6, + } + public partial class LengthConverter : System.ComponentModel.TypeConverter + { + public LengthConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum LineStackingStrategy + { + BlockLineHeight = 0, + MaxHeight = 1, + } + public static partial class Localization + { + public static readonly System.Windows.DependencyProperty AttributesProperty; + public static readonly System.Windows.DependencyProperty CommentsProperty; + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(object))] + public static string GetAttributes(object element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(object))] + public static string GetComments(object element) { throw null; } + public static void SetAttributes(object element, string attributes) { } + public static void SetComments(object element, string comments) { } + } + public static partial class LogicalTreeHelper + { + public static void BringIntoView(System.Windows.DependencyObject current) { } + public static System.Windows.DependencyObject FindLogicalNode(System.Windows.DependencyObject logicalTreeNode, string elementName) { throw null; } + public static System.Collections.IEnumerable GetChildren(System.Windows.DependencyObject current) { throw null; } + public static System.Collections.IEnumerable GetChildren(System.Windows.FrameworkContentElement current) { throw null; } + public static System.Collections.IEnumerable GetChildren(System.Windows.FrameworkElement current) { throw null; } + public static System.Windows.DependencyObject GetParent(System.Windows.DependencyObject current) { throw null; } + } + public partial class LostFocusEventManager : System.Windows.WeakEventManager + { + internal LostFocusEventManager() { } + public static void AddHandler(System.Windows.DependencyObject source, System.EventHandler handler) { } + public static void AddListener(System.Windows.DependencyObject source, System.Windows.IWeakEventListener listener) { } + protected override System.Windows.WeakEventManager.ListenerList NewListenerList() { throw null; } + public static void RemoveHandler(System.Windows.DependencyObject source, System.EventHandler handler) { } + public static void RemoveListener(System.Windows.DependencyObject source, System.Windows.IWeakEventListener listener) { } + protected override void StartListening(object source) { } + protected override void StopListening(object source) { } + } + public sealed partial class MediaScriptCommandRoutedEventArgs : System.Windows.RoutedEventArgs + { + internal MediaScriptCommandRoutedEventArgs() { } + public string ParameterType { get { throw null; } } + public string ParameterValue { get { throw null; } } + } + public sealed partial class MessageBox + { + internal MessageBox() { } + public static System.Windows.MessageBoxResult Show(string messageBoxText) { throw null; } + public static System.Windows.MessageBoxResult Show(string messageBoxText, string caption) { throw null; } + public static System.Windows.MessageBoxResult Show(string messageBoxText, string caption, System.Windows.MessageBoxButton button) { throw null; } + public static System.Windows.MessageBoxResult Show(string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon) { throw null; } + public static System.Windows.MessageBoxResult Show(string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult) { throw null; } + public static System.Windows.MessageBoxResult Show(string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText, string caption) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult) { throw null; } + public static System.Windows.MessageBoxResult Show(System.Windows.Window owner, string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon, System.Windows.MessageBoxResult defaultResult, System.Windows.MessageBoxOptions options) { throw null; } + } + public enum MessageBoxButton + { + OK = 0, + OKCancel = 1, + YesNoCancel = 3, + YesNo = 4, + } + public enum MessageBoxImage + { + None = 0, + Error = 16, + Hand = 16, + Stop = 16, + Question = 32, + Exclamation = 48, + Warning = 48, + Asterisk = 64, + Information = 64, + } + [System.FlagsAttribute] + public enum MessageBoxOptions + { + None = 0, + DefaultDesktopOnly = 131072, + RightAlign = 524288, + RtlReading = 1048576, + ServiceNotification = 2097152, + } + public enum MessageBoxResult + { + None = 0, + OK = 1, + Cancel = 2, + Yes = 6, + No = 7, + } + [System.Windows.Markup.ContentPropertyAttribute("Setters")] + public sealed partial class MultiDataTrigger : System.Windows.TriggerBase, System.Windows.Markup.IAddChild + { + public MultiDataTrigger() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.ConditionCollection Conditions { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.SetterBaseCollection Setters { get { throw null; } } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Setters")] + public sealed partial class MultiTrigger : System.Windows.TriggerBase, System.Windows.Markup.IAddChild + { + public MultiTrigger() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.ConditionCollection Conditions { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.SetterBaseCollection Setters { get { throw null; } } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class NullableBoolConverter : System.ComponentModel.NullableConverter + { + public NullableBoolConverter() : base (default(System.Type)) { } + public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; } + } + public enum PowerLineStatus + { + Offline = 0, + Online = 1, + Unknown = 255, + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.PropertyPathConverter))] + public sealed partial class PropertyPath + { + public PropertyPath(object parameter) { } + public PropertyPath(string path, params object[] pathParameters) { } + public string Path { get { throw null; } set { } } + public System.Collections.ObjectModel.Collection PathParameters { get { throw null; } } + } + public sealed partial class PropertyPathConverter : System.ComponentModel.TypeConverter + { + public PropertyPathConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum ReasonSessionEnding : byte + { + Logoff = (byte)0, + Shutdown = (byte)1, + } + public partial class RequestBringIntoViewEventArgs : System.Windows.RoutedEventArgs + { + internal RequestBringIntoViewEventArgs() { } + public System.Windows.DependencyObject TargetObject { get { throw null; } } + public System.Windows.Rect TargetRect { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void RequestBringIntoViewEventHandler(object sender, System.Windows.RequestBringIntoViewEventArgs e); + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum ResizeMode + { + NoResize = 0, + CanMinimize = 1, + CanResize = 2, + CanResizeWithGrip = 3, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.Markup.AmbientAttribute] + [System.Windows.Markup.UsableDuringInitializationAttribute(true)] + public partial class ResourceDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.ComponentModel.ISupportInitialize, System.Windows.Markup.INameScope, System.Windows.Markup.IUriContext + { + public ResourceDictionary() { } + public int Count { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.DeferrableContent DeferrableContent { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool InvalidatesImplicitDataTemplateResources { get { throw null; } set { } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public object this[object key] { get { throw null; } set { } } + public System.Collections.ICollection Keys { get { throw null; } } + public System.Collections.ObjectModel.Collection MergedDictionaries { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Uri Source { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public System.Collections.ICollection Values { get { throw null; } } + public void Add(object key, object value) { } + public void BeginInit() { } + public void Clear() { } + public bool Contains(object key) { throw null; } + public void CopyTo(System.Collections.DictionaryEntry[] array, int arrayIndex) { } + public void EndInit() { } + public object FindName(string name) { throw null; } + public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; } + protected virtual void OnGettingValue(object key, ref object value, out bool canCache) { throw null; } + public void RegisterName(string name, object scopedElement) { } + public void Remove(object key) { } + void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + public void UnregisterName(string name) { } + } + public enum ResourceDictionaryLocation + { + None = 0, + SourceAssembly = 1, + ExternalAssembly = 2, + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Windows.ResourceKey))] + public abstract partial class ResourceKey : System.Windows.Markup.MarkupExtension + { + protected ResourceKey() { } + public abstract System.Reflection.Assembly Assembly { get; } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + public partial class ResourceReferenceKeyNotFoundException : System.InvalidOperationException + { + public ResourceReferenceKeyNotFoundException() { } + protected ResourceReferenceKeyNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public ResourceReferenceKeyNotFoundException(string message, object resourceKey) { } + public object Key { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class RoutedPropertyChangedEventArgs : System.Windows.RoutedEventArgs + { + public RoutedPropertyChangedEventArgs(T oldValue, T newValue) { } + public RoutedPropertyChangedEventArgs(T oldValue, T newValue, System.Windows.RoutedEvent routedEvent) { } + public T NewValue { get { throw null; } } + public T OldValue { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void RoutedPropertyChangedEventHandler(object sender, System.Windows.RoutedPropertyChangedEventArgs e); + public partial class SessionEndingCancelEventArgs : System.ComponentModel.CancelEventArgs + { + internal SessionEndingCancelEventArgs() { } + public System.Windows.ReasonSessionEnding ReasonSessionEnding { get { throw null; } } + } + public delegate void SessionEndingCancelEventHandler(object sender, System.Windows.SessionEndingCancelEventArgs e); + [System.Windows.Markup.XamlSetMarkupExtensionAttribute("ReceiveMarkupExtension")] + [System.Windows.Markup.XamlSetTypeConverterAttribute("ReceiveTypeConverter")] + public partial class Setter : System.Windows.SetterBase, System.ComponentModel.ISupportInitialize + { + public Setter() { } + public Setter(System.Windows.DependencyProperty property, object value) { } + public Setter(System.Windows.DependencyProperty property, object value, string targetName) { } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Modifiability=System.Windows.Modifiability.Unmodifiable, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.DependencyProperty Property { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public string TargetName { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.SetterTriggerConditionValueConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.DependsOnAttribute("Property")] + [System.Windows.Markup.DependsOnAttribute("TargetName")] + public object Value { get { throw null; } set { } } + public static void ReceiveMarkupExtension(object targetObject, System.Windows.Markup.XamlSetMarkupExtensionEventArgs eventArgs) { } + public static void ReceiveTypeConverter(object targetObject, System.Windows.Markup.XamlSetTypeConverterEventArgs eventArgs) { } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + public abstract partial class SetterBase + { + internal SetterBase() { } + public bool IsSealed { get { throw null; } } + protected void CheckSealed() { } + } + public sealed partial class SetterBaseCollection : System.Collections.ObjectModel.Collection + { + public SetterBaseCollection() { } + public bool IsSealed { get { throw null; } } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.Windows.SetterBase item) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.SetterBase item) { } + } + public enum ShutdownMode : byte + { + OnLastWindowClose = (byte)0, + OnMainWindowClose = (byte)1, + OnExplicitShutdown = (byte)2, + } + public partial class SizeChangedEventArgs : System.Windows.RoutedEventArgs + { + internal SizeChangedEventArgs() { } + public bool HeightChanged { get { throw null; } } + public System.Windows.Size NewSize { get { throw null; } } + public System.Windows.Size PreviousSize { get { throw null; } } + public bool WidthChanged { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void SizeChangedEventHandler(object sender, System.Windows.SizeChangedEventArgs e); + public partial class StartupEventArgs : System.EventArgs + { + internal StartupEventArgs() { } + public string[] Args { get { throw null; } } + } + public delegate void StartupEventHandler(object sender, System.Windows.StartupEventArgs e); + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public partial class StaticResourceExtension : System.Windows.Markup.MarkupExtension + { + public StaticResourceExtension() { } + public StaticResourceExtension(object resourceKey) { } + [System.Windows.Markup.ConstructorArgumentAttribute("resourceKey")] + public object ResourceKey { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.Markup.ContentPropertyAttribute("Setters")] + [System.Windows.Markup.DictionaryKeyPropertyAttribute("TargetType")] + public partial class Style : System.Windows.Threading.DispatcherObject, System.Windows.Markup.IAddChild, System.Windows.Markup.INameScope, System.Windows.Markup.IQueryAmbient + { + public Style() { } + public Style(System.Type targetType) { } + public Style(System.Type targetType, System.Windows.Style basedOn) { } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.Style BasedOn { get { throw null; } set { } } + public bool IsSealed { get { throw null; } } + [System.Windows.Markup.AmbientAttribute] + public System.Windows.ResourceDictionary Resources { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.SetterBaseCollection Setters { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.Markup.AmbientAttribute] + public System.Type TargetType { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.TriggerCollection Triggers { get { throw null; } } + public override int GetHashCode() { throw null; } + public void RegisterName(string name, object scopedElement) { } + public void Seal() { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + object System.Windows.Markup.INameScope.FindName(string name) { throw null; } + bool System.Windows.Markup.IQueryAmbient.IsAmbientPropertyAvailable(string propertyName) { throw null; } + public void UnregisterName(string name) { } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true)] + public sealed partial class StyleTypedPropertyAttribute : System.Attribute + { + public StyleTypedPropertyAttribute() { } + public string Property { get { throw null; } set { } } + public System.Type StyleTargetType { get { throw null; } set { } } + } + public static partial class SystemColors + { + public static System.Windows.Media.SolidColorBrush ActiveBorderBrush { get { throw null; } } + public static System.Windows.ResourceKey ActiveBorderBrushKey { get { throw null; } } + public static System.Windows.Media.Color ActiveBorderColor { get { throw null; } } + public static System.Windows.ResourceKey ActiveBorderColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ActiveCaptionBrush { get { throw null; } } + public static System.Windows.ResourceKey ActiveCaptionBrushKey { get { throw null; } } + public static System.Windows.Media.Color ActiveCaptionColor { get { throw null; } } + public static System.Windows.ResourceKey ActiveCaptionColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ActiveCaptionTextBrush { get { throw null; } } + public static System.Windows.ResourceKey ActiveCaptionTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color ActiveCaptionTextColor { get { throw null; } } + public static System.Windows.ResourceKey ActiveCaptionTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush AppWorkspaceBrush { get { throw null; } } + public static System.Windows.ResourceKey AppWorkspaceBrushKey { get { throw null; } } + public static System.Windows.Media.Color AppWorkspaceColor { get { throw null; } } + public static System.Windows.ResourceKey AppWorkspaceColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlColor { get { throw null; } } + public static System.Windows.ResourceKey ControlColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlDarkBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlDarkBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlDarkColor { get { throw null; } } + public static System.Windows.ResourceKey ControlDarkColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlDarkDarkBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlDarkDarkBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlDarkDarkColor { get { throw null; } } + public static System.Windows.ResourceKey ControlDarkDarkColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlLightBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlLightBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlLightColor { get { throw null; } } + public static System.Windows.ResourceKey ControlLightColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlLightLightBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlLightLightBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlLightLightColor { get { throw null; } } + public static System.Windows.ResourceKey ControlLightLightColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ControlTextBrush { get { throw null; } } + public static System.Windows.ResourceKey ControlTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color ControlTextColor { get { throw null; } } + public static System.Windows.ResourceKey ControlTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush DesktopBrush { get { throw null; } } + public static System.Windows.ResourceKey DesktopBrushKey { get { throw null; } } + public static System.Windows.Media.Color DesktopColor { get { throw null; } } + public static System.Windows.ResourceKey DesktopColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush GradientActiveCaptionBrush { get { throw null; } } + public static System.Windows.ResourceKey GradientActiveCaptionBrushKey { get { throw null; } } + public static System.Windows.Media.Color GradientActiveCaptionColor { get { throw null; } } + public static System.Windows.ResourceKey GradientActiveCaptionColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush GradientInactiveCaptionBrush { get { throw null; } } + public static System.Windows.ResourceKey GradientInactiveCaptionBrushKey { get { throw null; } } + public static System.Windows.Media.Color GradientInactiveCaptionColor { get { throw null; } } + public static System.Windows.ResourceKey GradientInactiveCaptionColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush GrayTextBrush { get { throw null; } } + public static System.Windows.ResourceKey GrayTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color GrayTextColor { get { throw null; } } + public static System.Windows.ResourceKey GrayTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush HighlightBrush { get { throw null; } } + public static System.Windows.ResourceKey HighlightBrushKey { get { throw null; } } + public static System.Windows.Media.Color HighlightColor { get { throw null; } } + public static System.Windows.ResourceKey HighlightColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush HighlightTextBrush { get { throw null; } } + public static System.Windows.ResourceKey HighlightTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color HighlightTextColor { get { throw null; } } + public static System.Windows.ResourceKey HighlightTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush HotTrackBrush { get { throw null; } } + public static System.Windows.ResourceKey HotTrackBrushKey { get { throw null; } } + public static System.Windows.Media.Color HotTrackColor { get { throw null; } } + public static System.Windows.ResourceKey HotTrackColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InactiveBorderBrush { get { throw null; } } + public static System.Windows.ResourceKey InactiveBorderBrushKey { get { throw null; } } + public static System.Windows.Media.Color InactiveBorderColor { get { throw null; } } + public static System.Windows.ResourceKey InactiveBorderColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InactiveCaptionBrush { get { throw null; } } + public static System.Windows.ResourceKey InactiveCaptionBrushKey { get { throw null; } } + public static System.Windows.Media.Color InactiveCaptionColor { get { throw null; } } + public static System.Windows.ResourceKey InactiveCaptionColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InactiveCaptionTextBrush { get { throw null; } } + public static System.Windows.ResourceKey InactiveCaptionTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color InactiveCaptionTextColor { get { throw null; } } + public static System.Windows.ResourceKey InactiveCaptionTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InactiveSelectionHighlightBrush { get { throw null; } } + public static System.Windows.ResourceKey InactiveSelectionHighlightBrushKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InactiveSelectionHighlightTextBrush { get { throw null; } } + public static System.Windows.ResourceKey InactiveSelectionHighlightTextBrushKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InfoBrush { get { throw null; } } + public static System.Windows.ResourceKey InfoBrushKey { get { throw null; } } + public static System.Windows.Media.Color InfoColor { get { throw null; } } + public static System.Windows.ResourceKey InfoColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush InfoTextBrush { get { throw null; } } + public static System.Windows.ResourceKey InfoTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color InfoTextColor { get { throw null; } } + public static System.Windows.ResourceKey InfoTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MenuBarBrush { get { throw null; } } + public static System.Windows.ResourceKey MenuBarBrushKey { get { throw null; } } + public static System.Windows.Media.Color MenuBarColor { get { throw null; } } + public static System.Windows.ResourceKey MenuBarColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MenuBrush { get { throw null; } } + public static System.Windows.ResourceKey MenuBrushKey { get { throw null; } } + public static System.Windows.Media.Color MenuColor { get { throw null; } } + public static System.Windows.ResourceKey MenuColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MenuHighlightBrush { get { throw null; } } + public static System.Windows.ResourceKey MenuHighlightBrushKey { get { throw null; } } + public static System.Windows.Media.Color MenuHighlightColor { get { throw null; } } + public static System.Windows.ResourceKey MenuHighlightColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush MenuTextBrush { get { throw null; } } + public static System.Windows.ResourceKey MenuTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color MenuTextColor { get { throw null; } } + public static System.Windows.ResourceKey MenuTextColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush ScrollBarBrush { get { throw null; } } + public static System.Windows.ResourceKey ScrollBarBrushKey { get { throw null; } } + public static System.Windows.Media.Color ScrollBarColor { get { throw null; } } + public static System.Windows.ResourceKey ScrollBarColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush WindowBrush { get { throw null; } } + public static System.Windows.ResourceKey WindowBrushKey { get { throw null; } } + public static System.Windows.Media.Color WindowColor { get { throw null; } } + public static System.Windows.ResourceKey WindowColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush WindowFrameBrush { get { throw null; } } + public static System.Windows.ResourceKey WindowFrameBrushKey { get { throw null; } } + public static System.Windows.Media.Color WindowFrameColor { get { throw null; } } + public static System.Windows.ResourceKey WindowFrameColorKey { get { throw null; } } + public static System.Windows.Media.SolidColorBrush WindowTextBrush { get { throw null; } } + public static System.Windows.ResourceKey WindowTextBrushKey { get { throw null; } } + public static System.Windows.Media.Color WindowTextColor { get { throw null; } } + public static System.Windows.ResourceKey WindowTextColorKey { get { throw null; } } + } + public static partial class SystemCommands + { + public static System.Windows.Input.RoutedCommand CloseWindowCommand { get { throw null; } } + public static System.Windows.Input.RoutedCommand MaximizeWindowCommand { get { throw null; } } + public static System.Windows.Input.RoutedCommand MinimizeWindowCommand { get { throw null; } } + public static System.Windows.Input.RoutedCommand RestoreWindowCommand { get { throw null; } } + public static System.Windows.Input.RoutedCommand ShowSystemMenuCommand { get { throw null; } } + public static void CloseWindow(System.Windows.Window window) { } + public static void MaximizeWindow(System.Windows.Window window) { } + public static void MinimizeWindow(System.Windows.Window window) { } + public static void RestoreWindow(System.Windows.Window window) { } + public static void ShowSystemMenu(System.Windows.Window window, System.Windows.Point screenLocation) { } + } + public static partial class SystemFonts + { + public static System.Windows.Media.FontFamily CaptionFontFamily { get { throw null; } } + public static System.Windows.ResourceKey CaptionFontFamilyKey { get { throw null; } } + public static double CaptionFontSize { get { throw null; } } + public static System.Windows.ResourceKey CaptionFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle CaptionFontStyle { get { throw null; } } + public static System.Windows.ResourceKey CaptionFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection CaptionFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey CaptionFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight CaptionFontWeight { get { throw null; } } + public static System.Windows.ResourceKey CaptionFontWeightKey { get { throw null; } } + public static System.Windows.Media.FontFamily IconFontFamily { get { throw null; } } + public static System.Windows.ResourceKey IconFontFamilyKey { get { throw null; } } + public static double IconFontSize { get { throw null; } } + public static System.Windows.ResourceKey IconFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle IconFontStyle { get { throw null; } } + public static System.Windows.ResourceKey IconFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection IconFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey IconFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight IconFontWeight { get { throw null; } } + public static System.Windows.ResourceKey IconFontWeightKey { get { throw null; } } + public static System.Windows.Media.FontFamily MenuFontFamily { get { throw null; } } + public static System.Windows.ResourceKey MenuFontFamilyKey { get { throw null; } } + public static double MenuFontSize { get { throw null; } } + public static System.Windows.ResourceKey MenuFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle MenuFontStyle { get { throw null; } } + public static System.Windows.ResourceKey MenuFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection MenuFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey MenuFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight MenuFontWeight { get { throw null; } } + public static System.Windows.ResourceKey MenuFontWeightKey { get { throw null; } } + public static System.Windows.Media.FontFamily MessageFontFamily { get { throw null; } } + public static System.Windows.ResourceKey MessageFontFamilyKey { get { throw null; } } + public static double MessageFontSize { get { throw null; } } + public static System.Windows.ResourceKey MessageFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle MessageFontStyle { get { throw null; } } + public static System.Windows.ResourceKey MessageFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection MessageFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey MessageFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight MessageFontWeight { get { throw null; } } + public static System.Windows.ResourceKey MessageFontWeightKey { get { throw null; } } + public static System.Windows.Media.FontFamily SmallCaptionFontFamily { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionFontFamilyKey { get { throw null; } } + public static double SmallCaptionFontSize { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle SmallCaptionFontStyle { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection SmallCaptionFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight SmallCaptionFontWeight { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionFontWeightKey { get { throw null; } } + public static System.Windows.Media.FontFamily StatusFontFamily { get { throw null; } } + public static System.Windows.ResourceKey StatusFontFamilyKey { get { throw null; } } + public static double StatusFontSize { get { throw null; } } + public static System.Windows.ResourceKey StatusFontSizeKey { get { throw null; } } + public static System.Windows.FontStyle StatusFontStyle { get { throw null; } } + public static System.Windows.ResourceKey StatusFontStyleKey { get { throw null; } } + public static System.Windows.TextDecorationCollection StatusFontTextDecorations { get { throw null; } } + public static System.Windows.ResourceKey StatusFontTextDecorationsKey { get { throw null; } } + public static System.Windows.FontWeight StatusFontWeight { get { throw null; } } + public static System.Windows.ResourceKey StatusFontWeightKey { get { throw null; } } + } + public static partial class SystemParameters + { + public static int Border { get { throw null; } } + public static System.Windows.ResourceKey BorderKey { get { throw null; } } + public static double BorderWidth { get { throw null; } } + public static System.Windows.ResourceKey BorderWidthKey { get { throw null; } } + public static double CaptionHeight { get { throw null; } } + public static System.Windows.ResourceKey CaptionHeightKey { get { throw null; } } + public static double CaptionWidth { get { throw null; } } + public static System.Windows.ResourceKey CaptionWidthKey { get { throw null; } } + public static double CaretWidth { get { throw null; } } + public static System.Windows.ResourceKey CaretWidthKey { get { throw null; } } + public static bool ClientAreaAnimation { get { throw null; } } + public static System.Windows.ResourceKey ClientAreaAnimationKey { get { throw null; } } + public static bool ComboBoxAnimation { get { throw null; } } + public static System.Windows.ResourceKey ComboBoxAnimationKey { get { throw null; } } + public static System.Windows.Controls.Primitives.PopupAnimation ComboBoxPopupAnimation { get { throw null; } } + public static System.Windows.ResourceKey ComboBoxPopupAnimationKey { get { throw null; } } + public static double CursorHeight { get { throw null; } } + public static System.Windows.ResourceKey CursorHeightKey { get { throw null; } } + public static bool CursorShadow { get { throw null; } } + public static System.Windows.ResourceKey CursorShadowKey { get { throw null; } } + public static double CursorWidth { get { throw null; } } + public static System.Windows.ResourceKey CursorWidthKey { get { throw null; } } + public static bool DragFullWindows { get { throw null; } } + public static System.Windows.ResourceKey DragFullWindowsKey { get { throw null; } } + public static bool DropShadow { get { throw null; } } + public static System.Windows.ResourceKey DropShadowKey { get { throw null; } } + public static double FixedFrameHorizontalBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey FixedFrameHorizontalBorderHeightKey { get { throw null; } } + public static double FixedFrameVerticalBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey FixedFrameVerticalBorderWidthKey { get { throw null; } } + public static bool FlatMenu { get { throw null; } } + public static System.Windows.ResourceKey FlatMenuKey { get { throw null; } } + public static double FocusBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey FocusBorderHeightKey { get { throw null; } } + public static double FocusBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey FocusBorderWidthKey { get { throw null; } } + public static double FocusHorizontalBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey FocusHorizontalBorderHeightKey { get { throw null; } } + public static double FocusVerticalBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey FocusVerticalBorderWidthKey { get { throw null; } } + public static System.Windows.ResourceKey FocusVisualStyleKey { get { throw null; } } + public static int ForegroundFlashCount { get { throw null; } } + public static System.Windows.ResourceKey ForegroundFlashCountKey { get { throw null; } } + public static double FullPrimaryScreenHeight { get { throw null; } } + public static System.Windows.ResourceKey FullPrimaryScreenHeightKey { get { throw null; } } + public static double FullPrimaryScreenWidth { get { throw null; } } + public static System.Windows.ResourceKey FullPrimaryScreenWidthKey { get { throw null; } } + public static bool GradientCaptions { get { throw null; } } + public static System.Windows.ResourceKey GradientCaptionsKey { get { throw null; } } + public static bool HighContrast { get { throw null; } } + public static System.Windows.ResourceKey HighContrastKey { get { throw null; } } + public static double HorizontalScrollBarButtonWidth { get { throw null; } } + public static System.Windows.ResourceKey HorizontalScrollBarButtonWidthKey { get { throw null; } } + public static double HorizontalScrollBarHeight { get { throw null; } } + public static System.Windows.ResourceKey HorizontalScrollBarHeightKey { get { throw null; } } + public static double HorizontalScrollBarThumbWidth { get { throw null; } } + public static System.Windows.ResourceKey HorizontalScrollBarThumbWidthKey { get { throw null; } } + public static bool HotTracking { get { throw null; } } + public static System.Windows.ResourceKey HotTrackingKey { get { throw null; } } + public static double IconGridHeight { get { throw null; } } + public static System.Windows.ResourceKey IconGridHeightKey { get { throw null; } } + public static double IconGridWidth { get { throw null; } } + public static System.Windows.ResourceKey IconGridWidthKey { get { throw null; } } + public static double IconHeight { get { throw null; } } + public static System.Windows.ResourceKey IconHeightKey { get { throw null; } } + public static double IconHorizontalSpacing { get { throw null; } } + public static System.Windows.ResourceKey IconHorizontalSpacingKey { get { throw null; } } + public static bool IconTitleWrap { get { throw null; } } + public static System.Windows.ResourceKey IconTitleWrapKey { get { throw null; } } + public static double IconVerticalSpacing { get { throw null; } } + public static System.Windows.ResourceKey IconVerticalSpacingKey { get { throw null; } } + public static double IconWidth { get { throw null; } } + public static System.Windows.ResourceKey IconWidthKey { get { throw null; } } + public static bool IsGlassEnabled { get { throw null; } } + public static bool IsImmEnabled { get { throw null; } } + public static System.Windows.ResourceKey IsImmEnabledKey { get { throw null; } } + public static bool IsMediaCenter { get { throw null; } } + public static System.Windows.ResourceKey IsMediaCenterKey { get { throw null; } } + public static bool IsMenuDropRightAligned { get { throw null; } } + public static System.Windows.ResourceKey IsMenuDropRightAlignedKey { get { throw null; } } + public static bool IsMiddleEastEnabled { get { throw null; } } + public static System.Windows.ResourceKey IsMiddleEastEnabledKey { get { throw null; } } + public static bool IsMousePresent { get { throw null; } } + public static System.Windows.ResourceKey IsMousePresentKey { get { throw null; } } + public static bool IsMouseWheelPresent { get { throw null; } } + public static System.Windows.ResourceKey IsMouseWheelPresentKey { get { throw null; } } + public static bool IsPenWindows { get { throw null; } } + public static System.Windows.ResourceKey IsPenWindowsKey { get { throw null; } } + public static bool IsRemotelyControlled { get { throw null; } } + public static System.Windows.ResourceKey IsRemotelyControlledKey { get { throw null; } } + public static bool IsRemoteSession { get { throw null; } } + public static System.Windows.ResourceKey IsRemoteSessionKey { get { throw null; } } + public static bool IsSlowMachine { get { throw null; } } + public static System.Windows.ResourceKey IsSlowMachineKey { get { throw null; } } + public static bool IsTabletPC { get { throw null; } } + public static System.Windows.ResourceKey IsTabletPCKey { get { throw null; } } + public static double KanjiWindowHeight { get { throw null; } } + public static System.Windows.ResourceKey KanjiWindowHeightKey { get { throw null; } } + public static bool KeyboardCues { get { throw null; } } + public static System.Windows.ResourceKey KeyboardCuesKey { get { throw null; } } + public static int KeyboardDelay { get { throw null; } } + public static System.Windows.ResourceKey KeyboardDelayKey { get { throw null; } } + public static bool KeyboardPreference { get { throw null; } } + public static System.Windows.ResourceKey KeyboardPreferenceKey { get { throw null; } } + public static int KeyboardSpeed { get { throw null; } } + public static System.Windows.ResourceKey KeyboardSpeedKey { get { throw null; } } + public static bool ListBoxSmoothScrolling { get { throw null; } } + public static System.Windows.ResourceKey ListBoxSmoothScrollingKey { get { throw null; } } + public static double MaximizedPrimaryScreenHeight { get { throw null; } } + public static System.Windows.ResourceKey MaximizedPrimaryScreenHeightKey { get { throw null; } } + public static double MaximizedPrimaryScreenWidth { get { throw null; } } + public static System.Windows.ResourceKey MaximizedPrimaryScreenWidthKey { get { throw null; } } + public static double MaximumWindowTrackHeight { get { throw null; } } + public static System.Windows.ResourceKey MaximumWindowTrackHeightKey { get { throw null; } } + public static double MaximumWindowTrackWidth { get { throw null; } } + public static System.Windows.ResourceKey MaximumWindowTrackWidthKey { get { throw null; } } + public static bool MenuAnimation { get { throw null; } } + public static System.Windows.ResourceKey MenuAnimationKey { get { throw null; } } + public static double MenuBarHeight { get { throw null; } } + public static System.Windows.ResourceKey MenuBarHeightKey { get { throw null; } } + public static double MenuButtonHeight { get { throw null; } } + public static System.Windows.ResourceKey MenuButtonHeightKey { get { throw null; } } + public static double MenuButtonWidth { get { throw null; } } + public static System.Windows.ResourceKey MenuButtonWidthKey { get { throw null; } } + public static double MenuCheckmarkHeight { get { throw null; } } + public static System.Windows.ResourceKey MenuCheckmarkHeightKey { get { throw null; } } + public static double MenuCheckmarkWidth { get { throw null; } } + public static System.Windows.ResourceKey MenuCheckmarkWidthKey { get { throw null; } } + public static bool MenuDropAlignment { get { throw null; } } + public static System.Windows.ResourceKey MenuDropAlignmentKey { get { throw null; } } + public static bool MenuFade { get { throw null; } } + public static System.Windows.ResourceKey MenuFadeKey { get { throw null; } } + public static double MenuHeight { get { throw null; } } + public static System.Windows.ResourceKey MenuHeightKey { get { throw null; } } + public static System.Windows.Controls.Primitives.PopupAnimation MenuPopupAnimation { get { throw null; } } + public static System.Windows.ResourceKey MenuPopupAnimationKey { get { throw null; } } + public static int MenuShowDelay { get { throw null; } } + public static System.Windows.ResourceKey MenuShowDelayKey { get { throw null; } } + public static double MenuWidth { get { throw null; } } + public static System.Windows.ResourceKey MenuWidthKey { get { throw null; } } + public static bool MinimizeAnimation { get { throw null; } } + public static System.Windows.ResourceKey MinimizeAnimationKey { get { throw null; } } + public static double MinimizedGridHeight { get { throw null; } } + public static System.Windows.ResourceKey MinimizedGridHeightKey { get { throw null; } } + public static double MinimizedGridWidth { get { throw null; } } + public static System.Windows.ResourceKey MinimizedGridWidthKey { get { throw null; } } + public static double MinimizedWindowHeight { get { throw null; } } + public static System.Windows.ResourceKey MinimizedWindowHeightKey { get { throw null; } } + public static double MinimizedWindowWidth { get { throw null; } } + public static System.Windows.ResourceKey MinimizedWindowWidthKey { get { throw null; } } + public static double MinimumHorizontalDragDistance { get { throw null; } } + public static double MinimumVerticalDragDistance { get { throw null; } } + public static double MinimumWindowHeight { get { throw null; } } + public static System.Windows.ResourceKey MinimumWindowHeightKey { get { throw null; } } + public static double MinimumWindowTrackHeight { get { throw null; } } + public static System.Windows.ResourceKey MinimumWindowTrackHeightKey { get { throw null; } } + public static double MinimumWindowTrackWidth { get { throw null; } } + public static System.Windows.ResourceKey MinimumWindowTrackWidthKey { get { throw null; } } + public static double MinimumWindowWidth { get { throw null; } } + public static System.Windows.ResourceKey MinimumWindowWidthKey { get { throw null; } } + public static double MouseHoverHeight { get { throw null; } } + public static System.Windows.ResourceKey MouseHoverHeightKey { get { throw null; } } + public static System.TimeSpan MouseHoverTime { get { throw null; } } + public static System.Windows.ResourceKey MouseHoverTimeKey { get { throw null; } } + public static double MouseHoverWidth { get { throw null; } } + public static System.Windows.ResourceKey MouseHoverWidthKey { get { throw null; } } + public static System.Windows.ResourceKey NavigationChromeDownLevelStyleKey { get { throw null; } } + public static System.Windows.ResourceKey NavigationChromeStyleKey { get { throw null; } } + public static System.Windows.PowerLineStatus PowerLineStatus { get { throw null; } } + public static System.Windows.ResourceKey PowerLineStatusKey { get { throw null; } } + public static double PrimaryScreenHeight { get { throw null; } } + public static System.Windows.ResourceKey PrimaryScreenHeightKey { get { throw null; } } + public static double PrimaryScreenWidth { get { throw null; } } + public static System.Windows.ResourceKey PrimaryScreenWidthKey { get { throw null; } } + public static double ResizeFrameHorizontalBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey ResizeFrameHorizontalBorderHeightKey { get { throw null; } } + public static double ResizeFrameVerticalBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey ResizeFrameVerticalBorderWidthKey { get { throw null; } } + public static double ScrollHeight { get { throw null; } } + public static System.Windows.ResourceKey ScrollHeightKey { get { throw null; } } + public static double ScrollWidth { get { throw null; } } + public static System.Windows.ResourceKey ScrollWidthKey { get { throw null; } } + public static bool SelectionFade { get { throw null; } } + public static System.Windows.ResourceKey SelectionFadeKey { get { throw null; } } + public static bool ShowSounds { get { throw null; } } + public static System.Windows.ResourceKey ShowSoundsKey { get { throw null; } } + public static double SmallCaptionHeight { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionHeightKey { get { throw null; } } + public static double SmallCaptionWidth { get { throw null; } } + public static System.Windows.ResourceKey SmallCaptionWidthKey { get { throw null; } } + public static double SmallIconHeight { get { throw null; } } + public static System.Windows.ResourceKey SmallIconHeightKey { get { throw null; } } + public static double SmallIconWidth { get { throw null; } } + public static System.Windows.ResourceKey SmallIconWidthKey { get { throw null; } } + public static double SmallWindowCaptionButtonHeight { get { throw null; } } + public static System.Windows.ResourceKey SmallWindowCaptionButtonHeightKey { get { throw null; } } + public static double SmallWindowCaptionButtonWidth { get { throw null; } } + public static System.Windows.ResourceKey SmallWindowCaptionButtonWidthKey { get { throw null; } } + public static bool SnapToDefaultButton { get { throw null; } } + public static System.Windows.ResourceKey SnapToDefaultButtonKey { get { throw null; } } + public static bool StylusHotTracking { get { throw null; } } + public static System.Windows.ResourceKey StylusHotTrackingKey { get { throw null; } } + public static bool SwapButtons { get { throw null; } } + public static System.Windows.ResourceKey SwapButtonsKey { get { throw null; } } + public static double ThickHorizontalBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey ThickHorizontalBorderHeightKey { get { throw null; } } + public static double ThickVerticalBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey ThickVerticalBorderWidthKey { get { throw null; } } + public static double ThinHorizontalBorderHeight { get { throw null; } } + public static System.Windows.ResourceKey ThinHorizontalBorderHeightKey { get { throw null; } } + public static double ThinVerticalBorderWidth { get { throw null; } } + public static System.Windows.ResourceKey ThinVerticalBorderWidthKey { get { throw null; } } + public static bool ToolTipAnimation { get { throw null; } } + public static System.Windows.ResourceKey ToolTipAnimationKey { get { throw null; } } + public static bool ToolTipFade { get { throw null; } } + public static System.Windows.ResourceKey ToolTipFadeKey { get { throw null; } } + public static System.Windows.Controls.Primitives.PopupAnimation ToolTipPopupAnimation { get { throw null; } } + public static System.Windows.ResourceKey ToolTipPopupAnimationKey { get { throw null; } } + public static bool UIEffects { get { throw null; } } + public static System.Windows.ResourceKey UIEffectsKey { get { throw null; } } + public static string UxThemeColor { get { throw null; } } + public static string UxThemeName { get { throw null; } } + public static double VerticalScrollBarButtonHeight { get { throw null; } } + public static System.Windows.ResourceKey VerticalScrollBarButtonHeightKey { get { throw null; } } + public static double VerticalScrollBarThumbHeight { get { throw null; } } + public static System.Windows.ResourceKey VerticalScrollBarThumbHeightKey { get { throw null; } } + public static double VerticalScrollBarWidth { get { throw null; } } + public static System.Windows.ResourceKey VerticalScrollBarWidthKey { get { throw null; } } + public static double VirtualScreenHeight { get { throw null; } } + public static System.Windows.ResourceKey VirtualScreenHeightKey { get { throw null; } } + public static double VirtualScreenLeft { get { throw null; } } + public static System.Windows.ResourceKey VirtualScreenLeftKey { get { throw null; } } + public static double VirtualScreenTop { get { throw null; } } + public static System.Windows.ResourceKey VirtualScreenTopKey { get { throw null; } } + public static double VirtualScreenWidth { get { throw null; } } + public static System.Windows.ResourceKey VirtualScreenWidthKey { get { throw null; } } + public static int WheelScrollLines { get { throw null; } } + public static System.Windows.ResourceKey WheelScrollLinesKey { get { throw null; } } + public static double WindowCaptionButtonHeight { get { throw null; } } + public static System.Windows.ResourceKey WindowCaptionButtonHeightKey { get { throw null; } } + public static double WindowCaptionButtonWidth { get { throw null; } } + public static System.Windows.ResourceKey WindowCaptionButtonWidthKey { get { throw null; } } + public static double WindowCaptionHeight { get { throw null; } } + public static System.Windows.ResourceKey WindowCaptionHeightKey { get { throw null; } } + public static System.Windows.CornerRadius WindowCornerRadius { get { throw null; } } + public static System.Windows.Media.Brush WindowGlassBrush { get { throw null; } } + public static System.Windows.Media.Color WindowGlassColor { get { throw null; } } + public static System.Windows.Thickness WindowNonClientFrameThickness { get { throw null; } } + public static System.Windows.Thickness WindowResizeBorderThickness { get { throw null; } } + public static System.Windows.Rect WorkArea { get { throw null; } } + public static System.Windows.ResourceKey WorkAreaKey { get { throw null; } } + public static event System.ComponentModel.PropertyChangedEventHandler StaticPropertyChanged { add { } remove { } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.TemplateBindingExpressionConverter))] + public partial class TemplateBindingExpression : System.Windows.Expression + { + internal TemplateBindingExpression() { } + public System.Windows.TemplateBindingExtension TemplateBindingExtension { get { throw null; } } + } + public partial class TemplateBindingExpressionConverter : System.ComponentModel.TypeConverter + { + public TemplateBindingExpressionConverter() { } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.TemplateBindingExtensionConverter))] + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public partial class TemplateBindingExtension : System.Windows.Markup.MarkupExtension + { + public TemplateBindingExtension() { } + public TemplateBindingExtension(System.Windows.DependencyProperty property) { } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.IValueConverter Converter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public object ConverterParameter { get { throw null; } set { } } + [System.Windows.Markup.ConstructorArgumentAttribute("property")] + public System.Windows.DependencyProperty Property { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + public partial class TemplateBindingExtensionConverter : System.ComponentModel.TypeConverter + { + public TemplateBindingExtensionConverter() { } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.XamlDeferLoadAttribute(typeof(System.Windows.TemplateContentLoader), typeof(System.Windows.FrameworkElement))] + public partial class TemplateContent + { + internal TemplateContent() { } + } + public partial class TemplateContentLoader : System.Xaml.XamlDeferringLoader + { + public TemplateContentLoader() { } + public override object Load(System.Xaml.XamlReader xamlReader, System.IServiceProvider serviceProvider) { throw null; } + public override System.Xaml.XamlReader Save(object value, System.IServiceProvider serviceProvider) { throw null; } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.TemplateKeyConverter))] + public abstract partial class TemplateKey : System.Windows.ResourceKey, System.ComponentModel.ISupportInitialize + { + protected TemplateKey(System.Windows.TemplateKey.TemplateType templateType) { } + protected TemplateKey(System.Windows.TemplateKey.TemplateType templateType, object dataType) { } + public override System.Reflection.Assembly Assembly { get { throw null; } } + public object DataType { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + public override string ToString() { throw null; } + protected enum TemplateType + { + DataTemplate = 0, + TableTemplate = 1, + } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true)] + public sealed partial class TemplatePartAttribute : System.Attribute + { + public TemplatePartAttribute() { } + public string Name { get { throw null; } set { } } + public System.Type Type { get { throw null; } set { } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true)] + public sealed partial class TemplateVisualStateAttribute : System.Attribute + { + public TemplateVisualStateAttribute() { } + public string GroupName { get { throw null; } set { } } + public string Name { get { throw null; } set { } } + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Uri))] + public partial class ThemeDictionaryExtension : System.Windows.Markup.MarkupExtension + { + public ThemeDictionaryExtension() { } + public ThemeDictionaryExtension(string assemblyName) { } + public string AssemblyName { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)] + public sealed partial class ThemeInfoAttribute : System.Attribute + { + public ThemeInfoAttribute(System.Windows.ResourceDictionaryLocation themeDictionaryLocation, System.Windows.ResourceDictionaryLocation genericDictionaryLocation) { } + public System.Windows.ResourceDictionaryLocation GenericDictionaryLocation { get { throw null; } } + public System.Windows.ResourceDictionaryLocation ThemeDictionaryLocation { get { throw null; } } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.ThicknessConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial struct Thickness : System.IEquatable + { + public Thickness(double uniformLength) { throw null; } + public Thickness(double left, double top, double right, double bottom) { throw null; } + public double Bottom { get { throw null; } set { } } + public double Left { get { throw null; } set { } } + public double Right { get { throw null; } set { } } + public double Top { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Thickness thickness) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Thickness t1, System.Windows.Thickness t2) { throw null; } + public static bool operator !=(System.Windows.Thickness t1, System.Windows.Thickness t2) { throw null; } + public override string ToString() { throw null; } + } + public partial class ThicknessConverter : System.ComponentModel.TypeConverter + { + public ThicknessConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Setters")] + [System.Windows.Markup.XamlSetTypeConverterAttribute("ReceiveTypeConverter")] + public partial class Trigger : System.Windows.TriggerBase, System.ComponentModel.ISupportInitialize, System.Windows.Markup.IAddChild + { + public Trigger() { } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Modifiability=System.Windows.Modifiability.Unmodifiable, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.AmbientAttribute] + public System.Windows.DependencyProperty Property { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.SetterBaseCollection Setters { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public string SourceName { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.SetterTriggerConditionValueConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.DependsOnAttribute("Property")] + [System.Windows.Markup.DependsOnAttribute("SourceName")] + public object Value { get { throw null; } set { } } + public static void ReceiveTypeConverter(object targetObject, System.Windows.Markup.XamlSetTypeConverterEventArgs eventArgs) { } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public abstract partial class TriggerAction : System.Windows.DependencyObject + { + internal TriggerAction() { } + } + public sealed partial class TriggerActionCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public TriggerActionCollection() { } + public TriggerActionCollection(int initialSize) { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.TriggerAction this[int index] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.TriggerAction value) { } + public void Clear() { } + public bool Contains(System.Windows.TriggerAction value) { throw null; } + public void CopyTo(System.Windows.TriggerAction[] array, int index) { } + [System.CLSCompliantAttribute(false)] + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.TriggerAction value) { throw null; } + public void Insert(int index, System.Windows.TriggerAction value) { } + public bool Remove(System.Windows.TriggerAction value) { throw null; } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public abstract partial class TriggerBase : System.Windows.DependencyObject + { + internal TriggerBase() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.TriggerActionCollection EnterActions { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.TriggerActionCollection ExitActions { get { throw null; } } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public sealed partial class TriggerCollection : System.Collections.ObjectModel.Collection + { + internal TriggerCollection() { } + public bool IsSealed { get { throw null; } } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.Windows.TriggerBase item) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.TriggerBase item) { } + } + public partial struct ValueSource + { + public System.Windows.BaseValueSource BaseValueSource { get { throw null; } } + public bool IsAnimated { get { throw null; } } + public bool IsCoerced { get { throw null; } } + public bool IsCurrent { get { throw null; } } + public bool IsExpression { get { throw null; } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.ValueSource vs1, System.Windows.ValueSource vs2) { throw null; } + public static bool operator !=(System.Windows.ValueSource vs1, System.Windows.ValueSource vs2) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum VerticalAlignment + { + Top = 0, + Center = 1, + Bottom = 2, + Stretch = 3, + } + [System.Windows.Markup.ContentPropertyAttribute("Storyboard")] + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + public partial class VisualState : System.Windows.DependencyObject + { + public VisualState() { } + public string Name { get { throw null; } set { } } + public System.Windows.Media.Animation.Storyboard Storyboard { get { throw null; } set { } } + } + public sealed partial class VisualStateChangedEventArgs : System.EventArgs + { + internal VisualStateChangedEventArgs() { } + public System.Windows.FrameworkElement Control { get { throw null; } } + public System.Windows.VisualState NewState { get { throw null; } } + public System.Windows.VisualState OldState { get { throw null; } } + public System.Windows.FrameworkElement StateGroupsRoot { get { throw null; } } + } + [System.Windows.Markup.ContentPropertyAttribute("States")] + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + public partial class VisualStateGroup : System.Windows.DependencyObject + { + public VisualStateGroup() { } + public System.Windows.VisualState CurrentState { get { throw null; } } + public string Name { get { throw null; } set { } } + public System.Collections.IList States { get { throw null; } } + public System.Collections.IList Transitions { get { throw null; } } + public event System.EventHandler CurrentStateChanged { add { } remove { } } + public event System.EventHandler CurrentStateChanging { add { } remove { } } + } + public partial class VisualStateManager : System.Windows.DependencyObject + { + public static readonly System.Windows.DependencyProperty CustomVisualStateManagerProperty; + public static readonly System.Windows.DependencyProperty VisualStateGroupsProperty; + public VisualStateManager() { } + public static System.Windows.VisualStateManager GetCustomVisualStateManager(System.Windows.FrameworkElement obj) { throw null; } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public static System.Collections.IList GetVisualStateGroups(System.Windows.FrameworkElement obj) { throw null; } + public static bool GoToElementState(System.Windows.FrameworkElement stateGroupsRoot, string stateName, bool useTransitions) { throw null; } + public static bool GoToState(System.Windows.FrameworkElement control, string stateName, bool useTransitions) { throw null; } + protected virtual bool GoToStateCore(System.Windows.FrameworkElement control, System.Windows.FrameworkElement stateGroupsRoot, string stateName, System.Windows.VisualStateGroup group, System.Windows.VisualState state, bool useTransitions) { throw null; } + protected void RaiseCurrentStateChanged(System.Windows.VisualStateGroup stateGroup, System.Windows.VisualState oldState, System.Windows.VisualState newState, System.Windows.FrameworkElement control, System.Windows.FrameworkElement stateGroupsRoot) { } + protected void RaiseCurrentStateChanging(System.Windows.VisualStateGroup stateGroup, System.Windows.VisualState oldState, System.Windows.VisualState newState, System.Windows.FrameworkElement control, System.Windows.FrameworkElement stateGroupsRoot) { } + public static void SetCustomVisualStateManager(System.Windows.FrameworkElement obj, System.Windows.VisualStateManager value) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Storyboard")] + public partial class VisualTransition : System.Windows.DependencyObject + { + public VisualTransition() { } + public string From { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.DurationConverter))] + public System.Windows.Duration GeneratedDuration { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction GeneratedEasingFunction { get { throw null; } set { } } + public System.Windows.Media.Animation.Storyboard Storyboard { get { throw null; } set { } } + public string To { get { throw null; } set { } } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + public partial class Window : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty AllowsTransparencyProperty; + public static readonly System.Windows.RoutedEvent DpiChangedEvent; + public static readonly System.Windows.DependencyProperty IconProperty; + public static readonly System.Windows.DependencyProperty IsActiveProperty; + public static readonly System.Windows.DependencyProperty LeftProperty; + public static readonly System.Windows.DependencyProperty ResizeModeProperty; + public static readonly System.Windows.DependencyProperty ShowActivatedProperty; + public static readonly System.Windows.DependencyProperty ShowInTaskbarProperty; + public static readonly System.Windows.DependencyProperty SizeToContentProperty; + public static readonly System.Windows.DependencyProperty TaskbarItemInfoProperty; + public static readonly System.Windows.DependencyProperty TitleProperty; + public static readonly System.Windows.DependencyProperty TopmostProperty; + public static readonly System.Windows.DependencyProperty TopProperty; + public static readonly System.Windows.DependencyProperty WindowStateProperty; + public static readonly System.Windows.DependencyProperty WindowStyleProperty; + public Window() { } + public bool AllowsTransparency { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.DialogResultConverter))] + public bool? DialogResult { get { throw null; } set { } } + public System.Windows.Media.ImageSource Icon { get { throw null; } set { } } + public bool IsActive { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public double Left { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.WindowCollection OwnedWindows { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Window Owner { get { throw null; } set { } } + public System.Windows.ResizeMode ResizeMode { get { throw null; } set { } } + public System.Windows.Rect RestoreBounds { get { throw null; } } + public bool ShowActivated { get { throw null; } set { } } + public bool ShowInTaskbar { get { throw null; } set { } } + public System.Windows.SizeToContent SizeToContent { get { throw null; } set { } } + public System.Windows.Shell.TaskbarItemInfo TaskbarItemInfo { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Title)] + public string Title { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public double Top { get { throw null; } set { } } + public bool Topmost { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.WindowStartupLocation.Manual)] + public System.Windows.WindowStartupLocation WindowStartupLocation { get { throw null; } set { } } + public System.Windows.WindowState WindowState { get { throw null; } set { } } + public System.Windows.WindowStyle WindowStyle { get { throw null; } set { } } + public event System.EventHandler Activated { add { } remove { } } + public event System.EventHandler Closed { add { } remove { } } + public event System.ComponentModel.CancelEventHandler Closing { add { } remove { } } + public event System.EventHandler ContentRendered { add { } remove { } } + public event System.EventHandler Deactivated { add { } remove { } } + public event System.Windows.DpiChangedEventHandler DpiChanged { add { } remove { } } + public event System.EventHandler LocationChanged { add { } remove { } } + public event System.EventHandler SourceInitialized { add { } remove { } } + public event System.EventHandler StateChanged { add { } remove { } } + public bool Activate() { throw null; } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + public void Close() { } + public void DragMove() { } + public static System.Windows.Window GetWindow(System.Windows.DependencyObject dependencyObject) { throw null; } + public void Hide() { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected virtual void OnActivated(System.EventArgs e) { } + protected virtual void OnClosed(System.EventArgs e) { } + protected virtual void OnClosing(System.ComponentModel.CancelEventArgs e) { } + protected override void OnContentChanged(object oldContent, object newContent) { } + protected virtual void OnContentRendered(System.EventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDeactivated(System.EventArgs e) { } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpi, System.Windows.DpiScale newDpi) { } + protected virtual void OnLocationChanged(System.EventArgs e) { } + protected override void OnManipulationBoundaryFeedback(System.Windows.Input.ManipulationBoundaryFeedbackEventArgs e) { } + protected virtual void OnSourceInitialized(System.EventArgs e) { } + protected virtual void OnStateChanged(System.EventArgs e) { } + protected internal override void OnVisualChildrenChanged(System.Windows.DependencyObject visualAdded, System.Windows.DependencyObject visualRemoved) { } + protected internal sealed override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + public void Show() { } + public bool? ShowDialog() { throw null; } + } + public sealed partial class WindowCollection : System.Collections.ICollection, System.Collections.IEnumerable + { + public WindowCollection() { } + public int Count { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Window this[int index] { get { throw null; } } + public object SyncRoot { get { throw null; } } + public void CopyTo(System.Windows.Window[] array, int index) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum WindowStartupLocation + { + Manual = 0, + CenterScreen = 1, + CenterOwner = 2, + } + public enum WindowState + { + Normal = 0, + Minimized = 1, + Maximized = 2, + } + public enum WindowStyle + { + None = 0, + SingleBorderWindow = 1, + ThreeDBorderWindow = 2, + ToolWindow = 3, + } + public enum WrapDirection + { + None = 0, + Left = 1, + Right = 2, + Both = 3, + } +} +namespace System.Windows.Annotations +{ + public sealed partial class Annotation : System.Xml.Serialization.IXmlSerializable + { + public Annotation() { } + public Annotation(System.Xml.XmlQualifiedName annotationType) { } + public Annotation(System.Xml.XmlQualifiedName annotationType, System.Guid id, System.DateTime creationTime, System.DateTime lastModificationTime) { } + public System.Collections.ObjectModel.Collection Anchors { get { throw null; } } + public System.Xml.XmlQualifiedName AnnotationType { get { throw null; } } + public System.Collections.ObjectModel.Collection Authors { get { throw null; } } + public System.Collections.ObjectModel.Collection Cargos { get { throw null; } } + public System.DateTime CreationTime { get { throw null; } } + public System.Guid Id { get { throw null; } } + public System.DateTime LastModificationTime { get { throw null; } } + public event System.Windows.Annotations.AnnotationResourceChangedEventHandler AnchorChanged { add { } remove { } } + public event System.Windows.Annotations.AnnotationAuthorChangedEventHandler AuthorChanged { add { } remove { } } + public event System.Windows.Annotations.AnnotationResourceChangedEventHandler CargoChanged { add { } remove { } } + public System.Xml.Schema.XmlSchema GetSchema() { throw null; } + public void ReadXml(System.Xml.XmlReader reader) { } + public void WriteXml(System.Xml.XmlWriter writer) { } + } + public enum AnnotationAction + { + Added = 0, + Removed = 1, + Modified = 2, + } + public sealed partial class AnnotationAuthorChangedEventArgs : System.EventArgs + { + public AnnotationAuthorChangedEventArgs(System.Windows.Annotations.Annotation annotation, System.Windows.Annotations.AnnotationAction action, object author) { } + public System.Windows.Annotations.AnnotationAction Action { get { throw null; } } + public System.Windows.Annotations.Annotation Annotation { get { throw null; } } + public object Author { get { throw null; } } + } + public delegate void AnnotationAuthorChangedEventHandler(object sender, System.Windows.Annotations.AnnotationAuthorChangedEventArgs e); + public sealed partial class AnnotationDocumentPaginator : System.Windows.Documents.DocumentPaginator + { + public AnnotationDocumentPaginator(System.Windows.Documents.DocumentPaginator originalPaginator, System.IO.Stream annotationStore) { } + public AnnotationDocumentPaginator(System.Windows.Documents.DocumentPaginator originalPaginator, System.IO.Stream annotationStore, System.Windows.FlowDirection flowDirection) { } + public AnnotationDocumentPaginator(System.Windows.Documents.DocumentPaginator originalPaginator, System.Windows.Annotations.Storage.AnnotationStore annotationStore) { } + public AnnotationDocumentPaginator(System.Windows.Documents.DocumentPaginator originalPaginator, System.Windows.Annotations.Storage.AnnotationStore annotationStore, System.Windows.FlowDirection flowDirection) { } + public override bool IsPageCountValid { get { throw null; } } + public override int PageCount { get { throw null; } } + public override System.Windows.Size PageSize { get { throw null; } set { } } + public override System.Windows.Documents.IDocumentPaginatorSource Source { get { throw null; } } + public override void CancelAsync(object userState) { } + public override void ComputePageCount() { } + public override void ComputePageCountAsync(object userState) { } + public override System.Windows.Documents.DocumentPage GetPage(int pageNumber) { throw null; } + public override void GetPageAsync(int pageNumber, object userState) { } + } + public static partial class AnnotationHelper + { + public static void ClearHighlightsForSelection(System.Windows.Annotations.AnnotationService service) { } + public static System.Windows.Annotations.Annotation CreateHighlightForSelection(System.Windows.Annotations.AnnotationService service, string author, System.Windows.Media.Brush highlightBrush) { throw null; } + public static System.Windows.Annotations.Annotation CreateInkStickyNoteForSelection(System.Windows.Annotations.AnnotationService service, string author) { throw null; } + public static System.Windows.Annotations.Annotation CreateTextStickyNoteForSelection(System.Windows.Annotations.AnnotationService service, string author) { throw null; } + public static void DeleteInkStickyNotesForSelection(System.Windows.Annotations.AnnotationService service) { } + public static void DeleteTextStickyNotesForSelection(System.Windows.Annotations.AnnotationService service) { } + public static System.Windows.Annotations.IAnchorInfo GetAnchorInfo(System.Windows.Annotations.AnnotationService service, System.Windows.Annotations.Annotation annotation) { throw null; } + } + public sealed partial class AnnotationResource : System.ComponentModel.INotifyPropertyChanged, System.Xml.Serialization.IXmlSerializable + { + public AnnotationResource() { } + public AnnotationResource(System.Guid id) { } + public AnnotationResource(string name) { } + public System.Collections.ObjectModel.Collection ContentLocators { get { throw null; } } + public System.Collections.ObjectModel.Collection Contents { get { throw null; } } + public System.Guid Id { get { throw null; } } + public string Name { get { throw null; } set { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public System.Xml.Schema.XmlSchema GetSchema() { throw null; } + public void ReadXml(System.Xml.XmlReader reader) { } + public void WriteXml(System.Xml.XmlWriter writer) { } + } + public sealed partial class AnnotationResourceChangedEventArgs : System.EventArgs + { + public AnnotationResourceChangedEventArgs(System.Windows.Annotations.Annotation annotation, System.Windows.Annotations.AnnotationAction action, System.Windows.Annotations.AnnotationResource resource) { } + public System.Windows.Annotations.AnnotationAction Action { get { throw null; } } + public System.Windows.Annotations.Annotation Annotation { get { throw null; } } + public System.Windows.Annotations.AnnotationResource Resource { get { throw null; } } + } + public delegate void AnnotationResourceChangedEventHandler(object sender, System.Windows.Annotations.AnnotationResourceChangedEventArgs e); + public sealed partial class AnnotationService : System.Windows.Threading.DispatcherObject + { + public static readonly System.Windows.Input.RoutedUICommand ClearHighlightsCommand; + public static readonly System.Windows.Input.RoutedUICommand CreateHighlightCommand; + public static readonly System.Windows.Input.RoutedUICommand CreateInkStickyNoteCommand; + public static readonly System.Windows.Input.RoutedUICommand CreateTextStickyNoteCommand; + public static readonly System.Windows.Input.RoutedUICommand DeleteAnnotationsCommand; + public static readonly System.Windows.Input.RoutedUICommand DeleteStickyNotesCommand; + public AnnotationService(System.Windows.Controls.FlowDocumentReader viewer) { } + public AnnotationService(System.Windows.Controls.FlowDocumentScrollViewer viewer) { } + public AnnotationService(System.Windows.Controls.Primitives.DocumentViewerBase viewer) { } + public bool IsEnabled { get { throw null; } } + public System.Windows.Annotations.Storage.AnnotationStore Store { get { throw null; } } + public void Disable() { } + public void Enable(System.Windows.Annotations.Storage.AnnotationStore annotationStore) { } + public static System.Windows.Annotations.AnnotationService GetService(System.Windows.Controls.FlowDocumentReader reader) { throw null; } + public static System.Windows.Annotations.AnnotationService GetService(System.Windows.Controls.FlowDocumentScrollViewer viewer) { throw null; } + public static System.Windows.Annotations.AnnotationService GetService(System.Windows.Controls.Primitives.DocumentViewerBase viewer) { throw null; } + } + public sealed partial class ContentLocator : System.Windows.Annotations.ContentLocatorBase, System.Xml.Serialization.IXmlSerializable + { + public ContentLocator() { } + public System.Collections.ObjectModel.Collection Parts { get { throw null; } } + public override object Clone() { throw null; } + public System.Xml.Schema.XmlSchema GetSchema() { throw null; } + public void ReadXml(System.Xml.XmlReader reader) { } + public bool StartsWith(System.Windows.Annotations.ContentLocator locator) { throw null; } + public void WriteXml(System.Xml.XmlWriter writer) { } + } + public abstract partial class ContentLocatorBase : System.ComponentModel.INotifyPropertyChanged + { + internal ContentLocatorBase() { } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public abstract object Clone(); + } + public sealed partial class ContentLocatorGroup : System.Windows.Annotations.ContentLocatorBase, System.Xml.Serialization.IXmlSerializable + { + public ContentLocatorGroup() { } + public System.Collections.ObjectModel.Collection Locators { get { throw null; } } + public override object Clone() { throw null; } + public System.Xml.Schema.XmlSchema GetSchema() { throw null; } + public void ReadXml(System.Xml.XmlReader reader) { } + public void WriteXml(System.Xml.XmlWriter writer) { } + } + public sealed partial class ContentLocatorPart : System.ComponentModel.INotifyPropertyChanged + { + public ContentLocatorPart(System.Xml.XmlQualifiedName partType) { } + public System.Collections.Generic.IDictionary NameValuePairs { get { throw null; } } + public System.Xml.XmlQualifiedName PartType { get { throw null; } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + public object Clone() { throw null; } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } + public partial interface IAnchorInfo + { + System.Windows.Annotations.AnnotationResource Anchor { get; } + System.Windows.Annotations.Annotation Annotation { get; } + object ResolvedAnchor { get; } + } + public sealed partial class TextAnchor + { + internal TextAnchor() { } + public System.Windows.Documents.ContentPosition BoundingEnd { get { throw null; } } + public System.Windows.Documents.ContentPosition BoundingStart { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } +} +namespace System.Windows.Annotations.Storage +{ + public abstract partial class AnnotationStore : System.IDisposable + { + protected AnnotationStore() { } + public abstract bool AutoFlush { get; set; } + protected bool IsDisposed { get { throw null; } } + protected object SyncRoot { get { throw null; } } + public event System.Windows.Annotations.AnnotationResourceChangedEventHandler AnchorChanged { add { } remove { } } + public event System.Windows.Annotations.AnnotationAuthorChangedEventHandler AuthorChanged { add { } remove { } } + public event System.Windows.Annotations.AnnotationResourceChangedEventHandler CargoChanged { add { } remove { } } + public event System.Windows.Annotations.Storage.StoreContentChangedEventHandler StoreContentChanged { add { } remove { } } + public abstract void AddAnnotation(System.Windows.Annotations.Annotation newAnnotation); + public abstract System.Windows.Annotations.Annotation DeleteAnnotation(System.Guid annotationId); + public void Dispose() { } + protected virtual void Dispose(bool disposing) { } + ~AnnotationStore() { } + public abstract void Flush(); + public abstract System.Windows.Annotations.Annotation GetAnnotation(System.Guid annotationId); + public abstract System.Collections.Generic.IList GetAnnotations(); + public abstract System.Collections.Generic.IList GetAnnotations(System.Windows.Annotations.ContentLocator anchorLocator); + protected virtual void OnAnchorChanged(System.Windows.Annotations.AnnotationResourceChangedEventArgs args) { } + protected virtual void OnAuthorChanged(System.Windows.Annotations.AnnotationAuthorChangedEventArgs args) { } + protected virtual void OnCargoChanged(System.Windows.Annotations.AnnotationResourceChangedEventArgs args) { } + protected virtual void OnStoreContentChanged(System.Windows.Annotations.Storage.StoreContentChangedEventArgs e) { } + } + public enum StoreContentAction + { + Added = 0, + Deleted = 1, + } + public partial class StoreContentChangedEventArgs : System.EventArgs + { + public StoreContentChangedEventArgs(System.Windows.Annotations.Storage.StoreContentAction action, System.Windows.Annotations.Annotation annotation) { } + public System.Windows.Annotations.Storage.StoreContentAction Action { get { throw null; } } + public System.Windows.Annotations.Annotation Annotation { get { throw null; } } + } + public delegate void StoreContentChangedEventHandler(object sender, System.Windows.Annotations.Storage.StoreContentChangedEventArgs e); + public sealed partial class XmlStreamStore : System.Windows.Annotations.Storage.AnnotationStore + { + public XmlStreamStore(System.IO.Stream stream) { } + public XmlStreamStore(System.IO.Stream stream, System.Collections.Generic.IDictionary> knownNamespaces) { } + public override bool AutoFlush { get { throw null; } set { } } + public System.Collections.Generic.IList IgnoredNamespaces { get { throw null; } } + public static System.Collections.Generic.IList WellKnownNamespaces { get { throw null; } } + public override void AddAnnotation(System.Windows.Annotations.Annotation newAnnotation) { } + public override System.Windows.Annotations.Annotation DeleteAnnotation(System.Guid annotationId) { throw null; } + protected override void Dispose(bool disposing) { } + public override void Flush() { } + public override System.Windows.Annotations.Annotation GetAnnotation(System.Guid annotationId) { throw null; } + public override System.Collections.Generic.IList GetAnnotations() { throw null; } + public override System.Collections.Generic.IList GetAnnotations(System.Windows.Annotations.ContentLocator anchorLocator) { throw null; } + public static System.Collections.Generic.IList GetWellKnownCompatibleNamespaces(System.Uri name) { throw null; } + protected override void OnStoreContentChanged(System.Windows.Annotations.Storage.StoreContentChangedEventArgs e) { } + } +} +namespace System.Windows.Automation.Peers +{ + public partial class ButtonAutomationPeer : System.Windows.Automation.Peers.ButtonBaseAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider + { + public ButtonAutomationPeer(System.Windows.Controls.Button owner) : base (default(System.Windows.Controls.Primitives.ButtonBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + } + public abstract partial class ButtonBaseAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + protected ButtonBaseAutomationPeer(System.Windows.Controls.Primitives.ButtonBase owner) : base (default(System.Windows.FrameworkElement)) { } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override string GetNameCore() { throw null; } + } + public sealed partial class CalendarAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IGridProvider, System.Windows.Automation.Provider.IItemContainerProvider, System.Windows.Automation.Provider.IMultipleViewProvider, System.Windows.Automation.Provider.ISelectionProvider, System.Windows.Automation.Provider.ITableProvider + { + public CalendarAutomationPeer(System.Windows.Controls.Calendar owner) : base (default(System.Windows.FrameworkElement)) { } + int System.Windows.Automation.Provider.IGridProvider.ColumnCount { get { throw null; } } + int System.Windows.Automation.Provider.IGridProvider.RowCount { get { throw null; } } + int System.Windows.Automation.Provider.IMultipleViewProvider.CurrentView { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.CanSelectMultiple { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + System.Windows.Automation.RowOrColumnMajor System.Windows.Automation.Provider.ITableProvider.RowOrColumnMajor { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override void SetFocusCore() { } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridProvider.GetItem(int row, int column) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IItemContainerProvider.FindItemByProperty(System.Windows.Automation.Provider.IRawElementProviderSimple startAfterProvider, int propertyId, object value) { throw null; } + int[] System.Windows.Automation.Provider.IMultipleViewProvider.GetSupportedViews() { throw null; } + string System.Windows.Automation.Provider.IMultipleViewProvider.GetViewName(int viewId) { throw null; } + void System.Windows.Automation.Provider.IMultipleViewProvider.SetCurrentView(int viewId) { } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ISelectionProvider.GetSelection() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetColumnHeaders() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetRowHeaders() { throw null; } + } + public sealed partial class CalendarButtonAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public CalendarButtonAutomationPeer(System.Windows.Controls.Button owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetLocalizedControlTypeCore() { throw null; } + } + public partial class CheckBoxAutomationPeer : System.Windows.Automation.Peers.ToggleButtonAutomationPeer + { + public CheckBoxAutomationPeer(System.Windows.Controls.CheckBox owner) : base (default(System.Windows.Controls.Primitives.ToggleButton)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class ComboBoxAutomationPeer : System.Windows.Automation.Peers.SelectorAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider, System.Windows.Automation.Provider.IValueProvider + { + public ComboBoxAutomationPeer(System.Windows.Controls.ComboBox owner) : base (default(System.Windows.Controls.Primitives.Selector)) { } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + bool System.Windows.Automation.Provider.IValueProvider.IsReadOnly { get { throw null; } } + string System.Windows.Automation.Provider.IValueProvider.Value { get { throw null; } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface pattern) { throw null; } + protected override void SetFocusCore() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + void System.Windows.Automation.Provider.IValueProvider.SetValue(string val) { } + } + public abstract partial class ContentTextAutomationPeer : System.Windows.Automation.Peers.FrameworkContentElementAutomationPeer + { + protected ContentTextAutomationPeer(System.Windows.FrameworkContentElement owner) : base (default(System.Windows.FrameworkContentElement)) { } + } + public partial class ContextMenuAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ContextMenuAutomationPeer(System.Windows.Controls.ContextMenu owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public sealed partial class DataGridAutomationPeer : System.Windows.Automation.Peers.ItemsControlAutomationPeer, System.Windows.Automation.Provider.IGridProvider, System.Windows.Automation.Provider.ISelectionProvider, System.Windows.Automation.Provider.ITableProvider + { + public DataGridAutomationPeer(System.Windows.Controls.DataGrid owner) : base (default(System.Windows.Controls.ItemsControl)) { } + int System.Windows.Automation.Provider.IGridProvider.ColumnCount { get { throw null; } } + int System.Windows.Automation.Provider.IGridProvider.RowCount { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.CanSelectMultiple { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + System.Windows.Automation.RowOrColumnMajor System.Windows.Automation.Provider.ITableProvider.RowOrColumnMajor { get { throw null; } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridProvider.GetItem(int row, int column) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ISelectionProvider.GetSelection() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetColumnHeaders() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetRowHeaders() { throw null; } + } + public sealed partial class DataGridCellAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public DataGridCellAutomationPeer(System.Windows.Controls.DataGridCell owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public sealed partial class DataGridCellItemAutomationPeer : System.Windows.Automation.Peers.AutomationPeer, System.Windows.Automation.Provider.IGridItemProvider, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.IScrollItemProvider, System.Windows.Automation.Provider.ISelectionItemProvider, System.Windows.Automation.Provider.ITableItemProvider, System.Windows.Automation.Provider.IValueProvider, System.Windows.Automation.Provider.IVirtualizedItemProvider + { + public DataGridCellItemAutomationPeer(object item, System.Windows.Controls.DataGridColumn dataGridColumn) { } + int System.Windows.Automation.Provider.IGridItemProvider.Column { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.ColumnSpan { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridItemProvider.ContainingGrid { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.Row { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.RowSpan { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + bool System.Windows.Automation.Provider.IValueProvider.IsReadOnly { get { throw null; } } + string System.Windows.Automation.Provider.IValueProvider.Value { get { throw null; } } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetLocalizedControlTypeCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetColumnHeaderItems() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetRowHeaderItems() { throw null; } + void System.Windows.Automation.Provider.IValueProvider.SetValue(string value) { } + void System.Windows.Automation.Provider.IVirtualizedItemProvider.Realize() { } + } + public sealed partial class DataGridColumnHeaderAutomationPeer : System.Windows.Automation.Peers.ButtonBaseAutomationPeer + { + public DataGridColumnHeaderAutomationPeer(System.Windows.Controls.Primitives.DataGridColumnHeader owner) : base (default(System.Windows.Controls.Primitives.ButtonBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class DataGridColumnHeaderItemAutomationPeer : System.Windows.Automation.Peers.ItemAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.IScrollItemProvider, System.Windows.Automation.Provider.ITransformProvider, System.Windows.Automation.Provider.IVirtualizedItemProvider + { + public DataGridColumnHeaderItemAutomationPeer(object item, System.Windows.Controls.DataGridColumn column, System.Windows.Automation.Peers.DataGridColumnHeadersPresenterAutomationPeer peer) : base (default(object), default(System.Windows.Automation.Peers.ItemsControlAutomationPeer)) { } + bool System.Windows.Automation.Provider.ITransformProvider.CanMove { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanResize { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanRotate { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsContentElementCore() { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + void System.Windows.Automation.Provider.ITransformProvider.Move(double x, double y) { } + void System.Windows.Automation.Provider.ITransformProvider.Resize(double width, double height) { } + void System.Windows.Automation.Provider.ITransformProvider.Rotate(double degrees) { } + void System.Windows.Automation.Provider.IVirtualizedItemProvider.Realize() { } + } + public sealed partial class DataGridColumnHeadersPresenterAutomationPeer : System.Windows.Automation.Peers.ItemsControlAutomationPeer, System.Windows.Automation.Provider.IItemContainerProvider + { + public DataGridColumnHeadersPresenterAutomationPeer(System.Windows.Controls.Primitives.DataGridColumnHeadersPresenter owner) : base (default(System.Windows.Controls.ItemsControl)) { } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object column) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IItemContainerProvider.FindItemByProperty(System.Windows.Automation.Provider.IRawElementProviderSimple startAfter, int propertyId, object value) { throw null; } + } + public sealed partial class DataGridDetailsPresenterAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public DataGridDetailsPresenterAutomationPeer(System.Windows.Controls.Primitives.DataGridDetailsPresenter owner) : base (default(System.Windows.FrameworkElement)) { } + protected override string GetClassNameCore() { throw null; } + } + public sealed partial class DataGridItemAutomationPeer : System.Windows.Automation.Peers.ItemAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.IItemContainerProvider, System.Windows.Automation.Provider.IScrollItemProvider, System.Windows.Automation.Provider.ISelectionItemProvider, System.Windows.Automation.Provider.ISelectionProvider + { + public DataGridItemAutomationPeer(object item, System.Windows.Automation.Peers.DataGridAutomationPeer dataGridPeer) : base (default(object), default(System.Windows.Automation.Peers.ItemsControlAutomationPeer)) { } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.CanSelectMultiple { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetPeerFromPointCore(System.Windows.Point point) { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IItemContainerProvider.FindItemByProperty(System.Windows.Automation.Provider.IRawElementProviderSimple startAfter, int propertyId, object value) { throw null; } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ISelectionProvider.GetSelection() { throw null; } + } + public sealed partial class DataGridRowAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public DataGridRowAutomationPeer(System.Windows.Controls.DataGridRow owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public sealed partial class DataGridRowHeaderAutomationPeer : System.Windows.Automation.Peers.ButtonBaseAutomationPeer + { + public DataGridRowHeaderAutomationPeer(System.Windows.Controls.Primitives.DataGridRowHeader owner) : base (default(System.Windows.Controls.Primitives.ButtonBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public sealed partial class DatePickerAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider, System.Windows.Automation.Provider.IValueProvider + { + public DatePickerAutomationPeer(System.Windows.Controls.DatePicker owner) : base (default(System.Windows.FrameworkElement)) { } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + bool System.Windows.Automation.Provider.IValueProvider.IsReadOnly { get { throw null; } } + string System.Windows.Automation.Provider.IValueProvider.Value { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetLocalizedControlTypeCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override void SetFocusCore() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + void System.Windows.Automation.Provider.IValueProvider.SetValue(string value) { } + } + public sealed partial class DateTimeAutomationPeer : System.Windows.Automation.Peers.AutomationPeer, System.Windows.Automation.Provider.IGridItemProvider, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.ISelectionItemProvider, System.Windows.Automation.Provider.ITableItemProvider, System.Windows.Automation.Provider.IVirtualizedItemProvider + { + internal DateTimeAutomationPeer() { } + int System.Windows.Automation.Provider.IGridItemProvider.Column { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.ColumnSpan { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridItemProvider.ContainingGrid { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.Row { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.RowSpan { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetLocalizedControlTypeCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetColumnHeaderItems() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetRowHeaderItems() { throw null; } + void System.Windows.Automation.Provider.IVirtualizedItemProvider.Realize() { } + } + public partial class DocumentAutomationPeer : System.Windows.Automation.Peers.ContentTextAutomationPeer + { + public DocumentAutomationPeer(System.Windows.FrameworkContentElement owner) : base (default(System.Windows.FrameworkContentElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + } + public partial class DocumentPageViewAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public DocumentPageViewAutomationPeer(System.Windows.Controls.Primitives.DocumentPageView owner) : base (default(System.Windows.FrameworkElement)) { } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + } + public partial class DocumentViewerAutomationPeer : System.Windows.Automation.Peers.DocumentViewerBaseAutomationPeer + { + public DocumentViewerAutomationPeer(System.Windows.Controls.DocumentViewer owner) : base (default(System.Windows.Controls.Primitives.DocumentViewerBase)) { } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + } + public partial class DocumentViewerBaseAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public DocumentViewerBaseAutomationPeer(System.Windows.Controls.Primitives.DocumentViewerBase owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + } + public partial class ExpanderAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider + { + public ExpanderAutomationPeer(System.Windows.Controls.Expander owner) : base (default(System.Windows.FrameworkElement)) { } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface pattern) { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + } + public partial class FixedPageAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public FixedPageAutomationPeer(System.Windows.Documents.FixedPage owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class FlowDocumentPageViewerAutomationPeer : System.Windows.Automation.Peers.DocumentViewerBaseAutomationPeer + { + public FlowDocumentPageViewerAutomationPeer(System.Windows.Controls.FlowDocumentPageViewer owner) : base (default(System.Windows.Controls.Primitives.DocumentViewerBase)) { } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class FlowDocumentReaderAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IMultipleViewProvider + { + public FlowDocumentReaderAutomationPeer(System.Windows.Controls.FlowDocumentReader owner) : base (default(System.Windows.FrameworkElement)) { } + int System.Windows.Automation.Provider.IMultipleViewProvider.CurrentView { get { throw null; } } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + int[] System.Windows.Automation.Provider.IMultipleViewProvider.GetSupportedViews() { throw null; } + string System.Windows.Automation.Provider.IMultipleViewProvider.GetViewName(int viewId) { throw null; } + void System.Windows.Automation.Provider.IMultipleViewProvider.SetCurrentView(int viewId) { } + } + public partial class FlowDocumentScrollViewerAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public FlowDocumentScrollViewerAutomationPeer(System.Windows.Controls.FlowDocumentScrollViewer owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + } + public partial class FrameAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public FrameAutomationPeer(System.Windows.Controls.Frame owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class FrameworkContentElementAutomationPeer : System.Windows.Automation.Peers.ContentElementAutomationPeer + { + public FrameworkContentElementAutomationPeer(System.Windows.FrameworkContentElement owner) : base (default(System.Windows.ContentElement)) { } + protected override string GetAutomationIdCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + } + public partial class FrameworkElementAutomationPeer : System.Windows.Automation.Peers.UIElementAutomationPeer + { + public FrameworkElementAutomationPeer(System.Windows.FrameworkElement owner) : base (default(System.Windows.UIElement)) { } + protected override string GetAutomationIdCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetNameCore() { throw null; } + } + public partial class GridSplitterAutomationPeer : System.Windows.Automation.Peers.ThumbAutomationPeer, System.Windows.Automation.Provider.ITransformProvider + { + public GridSplitterAutomationPeer(System.Windows.Controls.GridSplitter owner) : base (default(System.Windows.Controls.Primitives.Thumb)) { } + bool System.Windows.Automation.Provider.ITransformProvider.CanMove { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanResize { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanRotate { get { throw null; } } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.ITransformProvider.Move(double x, double y) { } + void System.Windows.Automation.Provider.ITransformProvider.Resize(double width, double height) { } + void System.Windows.Automation.Provider.ITransformProvider.Rotate(double degrees) { } + } + public partial class GridViewAutomationPeer : System.Windows.Automation.Peers.IViewAutomationPeer, System.Windows.Automation.Provider.IGridProvider, System.Windows.Automation.Provider.ITableProvider + { + public GridViewAutomationPeer(System.Windows.Controls.GridView owner, System.Windows.Controls.ListView listview) { } + int System.Windows.Automation.Provider.IGridProvider.ColumnCount { get { throw null; } } + int System.Windows.Automation.Provider.IGridProvider.RowCount { get { throw null; } } + System.Windows.Automation.RowOrColumnMajor System.Windows.Automation.Provider.ITableProvider.RowOrColumnMajor { get { throw null; } } + System.Windows.Automation.Peers.ItemAutomationPeer System.Windows.Automation.Peers.IViewAutomationPeer.CreateItemAutomationPeer(object item) { throw null; } + System.Windows.Automation.Peers.AutomationControlType System.Windows.Automation.Peers.IViewAutomationPeer.GetAutomationControlType() { throw null; } + System.Collections.Generic.List System.Windows.Automation.Peers.IViewAutomationPeer.GetChildren(System.Collections.Generic.List children) { throw null; } + object System.Windows.Automation.Peers.IViewAutomationPeer.GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Peers.IViewAutomationPeer.ItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + void System.Windows.Automation.Peers.IViewAutomationPeer.ViewDetached() { } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridProvider.GetItem(int row, int column) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetColumnHeaders() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableProvider.GetRowHeaders() { throw null; } + } + public partial class GridViewCellAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IGridItemProvider, System.Windows.Automation.Provider.ITableItemProvider + { + internal GridViewCellAutomationPeer() : base (default(System.Windows.FrameworkElement)) { } + int System.Windows.Automation.Provider.IGridItemProvider.Column { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.ColumnSpan { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridItemProvider.ContainingGrid { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.Row { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.RowSpan { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetColumnHeaderItems() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ITableItemProvider.GetRowHeaderItems() { throw null; } + } + public partial class GridViewColumnHeaderAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.ITransformProvider + { + public GridViewColumnHeaderAutomationPeer(System.Windows.Controls.GridViewColumnHeader owner) : base (default(System.Windows.FrameworkElement)) { } + bool System.Windows.Automation.Provider.ITransformProvider.CanMove { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanResize { get { throw null; } } + bool System.Windows.Automation.Provider.ITransformProvider.CanRotate { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsContentElementCore() { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + void System.Windows.Automation.Provider.ITransformProvider.Move(double x, double y) { } + void System.Windows.Automation.Provider.ITransformProvider.Resize(double width, double height) { } + void System.Windows.Automation.Provider.ITransformProvider.Rotate(double degrees) { } + } + public partial class GridViewHeaderRowPresenterAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public GridViewHeaderRowPresenterAutomationPeer(System.Windows.Controls.GridViewHeaderRowPresenter owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class GridViewItemAutomationPeer : System.Windows.Automation.Peers.ListBoxItemAutomationPeer + { + public GridViewItemAutomationPeer(object owner, System.Windows.Automation.Peers.ListViewAutomationPeer listviewAP) : base (default(object), default(System.Windows.Automation.Peers.SelectorAutomationPeer)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class GroupBoxAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public GroupBoxAutomationPeer(System.Windows.Controls.GroupBox owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + } + public partial class GroupItemAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public GroupItemAutomationPeer(System.Windows.Controls.GroupItem owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override void SetFocusCore() { } + } + public partial class HyperlinkAutomationPeer : System.Windows.Automation.Peers.TextElementAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider + { + public HyperlinkAutomationPeer(System.Windows.Documents.Hyperlink owner) : base (default(System.Windows.Documents.TextElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + } + public partial class ImageAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ImageAutomationPeer(System.Windows.Controls.Image owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class InkCanvasAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public InkCanvasAutomationPeer(System.Windows.Controls.InkCanvas owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class InkPresenterAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public InkPresenterAutomationPeer(System.Windows.Controls.InkPresenter owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public abstract partial class ItemAutomationPeer : System.Windows.Automation.Peers.AutomationPeer, System.Windows.Automation.Provider.IVirtualizedItemProvider + { + protected ItemAutomationPeer(object item, System.Windows.Automation.Peers.ItemsControlAutomationPeer itemsControlAutomationPeer) { } + public object Item { get { throw null; } } + public System.Windows.Automation.Peers.ItemsControlAutomationPeer ItemsControlAutomationPeer { get { throw null; } } + protected override string GetAcceleratorKeyCore() { throw null; } + protected override string GetAccessKeyCore() { throw null; } + protected override string GetAutomationIdCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override string GetHelpTextCore() { throw null; } + protected override string GetItemStatusCore() { throw null; } + protected override string GetItemTypeCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer GetLabeledByCore() { throw null; } + protected override System.Windows.Automation.AutomationLiveSetting GetLiveSettingCore() { throw null; } + protected override string GetNameCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + protected override bool HasKeyboardFocusCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + protected override bool IsEnabledCore() { throw null; } + protected override bool IsKeyboardFocusableCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + protected override bool IsPasswordCore() { throw null; } + protected override bool IsRequiredForFormCore() { throw null; } + protected override void SetFocusCore() { } + void System.Windows.Automation.Provider.IVirtualizedItemProvider.Realize() { } + } + public abstract partial class ItemsControlAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IItemContainerProvider + { + protected ItemsControlAutomationPeer(System.Windows.Controls.ItemsControl owner) : base (default(System.Windows.FrameworkElement)) { } + protected virtual bool IsVirtualized { get { throw null; } } + protected abstract System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item); + protected internal virtual System.Windows.Automation.Peers.ItemAutomationPeer FindOrCreateItemAutomationPeer(object item) { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IItemContainerProvider.FindItemByProperty(System.Windows.Automation.Provider.IRawElementProviderSimple startAfter, int propertyId, object value) { throw null; } + } + public partial interface IViewAutomationPeer + { + System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item); + System.Windows.Automation.Peers.AutomationControlType GetAutomationControlType(); + System.Collections.Generic.List GetChildren(System.Collections.Generic.List children); + object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface); + void ItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e); + void ViewDetached(); + } + public partial class LabelAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public LabelAutomationPeer(System.Windows.Controls.Label owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + } + public partial class ListBoxAutomationPeer : System.Windows.Automation.Peers.SelectorAutomationPeer + { + public ListBoxAutomationPeer(System.Windows.Controls.ListBox owner) : base (default(System.Windows.Controls.Primitives.Selector)) { } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class ListBoxItemAutomationPeer : System.Windows.Automation.Peers.SelectorItemAutomationPeer, System.Windows.Automation.Provider.IScrollItemProvider + { + public ListBoxItemAutomationPeer(object owner, System.Windows.Automation.Peers.SelectorAutomationPeer selectorAutomationPeer) : base (default(object), default(System.Windows.Automation.Peers.SelectorAutomationPeer)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + } + public partial class ListBoxItemWrapperAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ListBoxItemWrapperAutomationPeer(System.Windows.Controls.ListBoxItem owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class ListViewAutomationPeer : System.Windows.Automation.Peers.ListBoxAutomationPeer + { + public ListViewAutomationPeer(System.Windows.Controls.ListView owner) : base (default(System.Windows.Controls.ListBox)) { } + protected internal System.Windows.Automation.Peers.IViewAutomationPeer ViewAutomationPeer { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + } + public partial class MediaElementAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public MediaElementAutomationPeer(System.Windows.Controls.MediaElement owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class MenuAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public MenuAutomationPeer(System.Windows.Controls.Menu owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class MenuItemAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider, System.Windows.Automation.Provider.IInvokeProvider, System.Windows.Automation.Provider.IToggleProvider + { + public MenuItemAutomationPeer(System.Windows.Controls.MenuItem owner) : base (default(System.Windows.FrameworkElement)) { } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + System.Windows.Automation.ToggleState System.Windows.Automation.Provider.IToggleProvider.ToggleState { get { throw null; } } + protected override string GetAccessKeyCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override int GetPositionInSetCore() { throw null; } + protected override int GetSizeOfSetCore() { throw null; } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + void System.Windows.Automation.Provider.IToggleProvider.Toggle() { } + } + public partial class NavigationWindowAutomationPeer : System.Windows.Automation.Peers.WindowAutomationPeer + { + public NavigationWindowAutomationPeer(System.Windows.Navigation.NavigationWindow owner) : base (default(System.Windows.Window)) { } + protected override string GetClassNameCore() { throw null; } + } + public partial class PasswordBoxAutomationPeer : System.Windows.Automation.Peers.TextAutomationPeer, System.Windows.Automation.Provider.IValueProvider + { + public PasswordBoxAutomationPeer(System.Windows.Controls.PasswordBox owner) : base (default(System.Windows.FrameworkElement)) { } + bool System.Windows.Automation.Provider.IValueProvider.IsReadOnly { get { throw null; } } + string System.Windows.Automation.Provider.IValueProvider.Value { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsPasswordCore() { throw null; } + void System.Windows.Automation.Provider.IValueProvider.SetValue(string value) { } + } + public partial class ProgressBarAutomationPeer : System.Windows.Automation.Peers.RangeBaseAutomationPeer, System.Windows.Automation.Provider.IRangeValueProvider + { + public ProgressBarAutomationPeer(System.Windows.Controls.ProgressBar owner) : base (default(System.Windows.Controls.Primitives.RangeBase)) { } + bool System.Windows.Automation.Provider.IRangeValueProvider.IsReadOnly { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.LargeChange { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.SmallChange { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IRangeValueProvider.SetValue(double val) { } + } + public partial class RadioButtonAutomationPeer : System.Windows.Automation.Peers.ToggleButtonAutomationPeer, System.Windows.Automation.Provider.ISelectionItemProvider + { + public RadioButtonAutomationPeer(System.Windows.Controls.RadioButton owner) : base (default(System.Windows.Controls.Primitives.ToggleButton)) { } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + } + public partial class RangeBaseAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IRangeValueProvider + { + public RangeBaseAutomationPeer(System.Windows.Controls.Primitives.RangeBase owner) : base (default(System.Windows.FrameworkElement)) { } + bool System.Windows.Automation.Provider.IRangeValueProvider.IsReadOnly { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.LargeChange { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.Maximum { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.Minimum { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.SmallChange { get { throw null; } } + double System.Windows.Automation.Provider.IRangeValueProvider.Value { get { throw null; } } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IRangeValueProvider.SetValue(double val) { } + } + public partial class RepeatButtonAutomationPeer : System.Windows.Automation.Peers.ButtonBaseAutomationPeer, System.Windows.Automation.Provider.IInvokeProvider + { + public RepeatButtonAutomationPeer(System.Windows.Controls.Primitives.RepeatButton owner) : base (default(System.Windows.Controls.Primitives.ButtonBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IInvokeProvider.Invoke() { } + } + public partial class RichTextBoxAutomationPeer : System.Windows.Automation.Peers.TextAutomationPeer + { + public RichTextBoxAutomationPeer(System.Windows.Controls.RichTextBox owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + } + public partial class ScrollBarAutomationPeer : System.Windows.Automation.Peers.RangeBaseAutomationPeer + { + public ScrollBarAutomationPeer(System.Windows.Controls.Primitives.ScrollBar owner) : base (default(System.Windows.Controls.Primitives.RangeBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override System.Windows.Automation.Peers.AutomationOrientation GetOrientationCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class ScrollViewerAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer, System.Windows.Automation.Provider.IScrollProvider + { + public ScrollViewerAutomationPeer(System.Windows.Controls.ScrollViewer owner) : base (default(System.Windows.FrameworkElement)) { } + bool System.Windows.Automation.Provider.IScrollProvider.HorizontallyScrollable { get { throw null; } } + double System.Windows.Automation.Provider.IScrollProvider.HorizontalScrollPercent { get { throw null; } } + double System.Windows.Automation.Provider.IScrollProvider.HorizontalViewSize { get { throw null; } } + bool System.Windows.Automation.Provider.IScrollProvider.VerticallyScrollable { get { throw null; } } + double System.Windows.Automation.Provider.IScrollProvider.VerticalScrollPercent { get { throw null; } } + double System.Windows.Automation.Provider.IScrollProvider.VerticalViewSize { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + void System.Windows.Automation.Provider.IScrollProvider.Scroll(System.Windows.Automation.ScrollAmount horizontalAmount, System.Windows.Automation.ScrollAmount verticalAmount) { } + void System.Windows.Automation.Provider.IScrollProvider.SetScrollPercent(double horizontalPercent, double verticalPercent) { } + } + public abstract partial class SelectorAutomationPeer : System.Windows.Automation.Peers.ItemsControlAutomationPeer, System.Windows.Automation.Provider.ISelectionProvider + { + protected SelectorAutomationPeer(System.Windows.Controls.Primitives.Selector owner) : base (default(System.Windows.Controls.ItemsControl)) { } + bool System.Windows.Automation.Provider.ISelectionProvider.CanSelectMultiple { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ISelectionProvider.GetSelection() { throw null; } + } + public abstract partial class SelectorItemAutomationPeer : System.Windows.Automation.Peers.ItemAutomationPeer, System.Windows.Automation.Provider.ISelectionItemProvider + { + protected SelectorItemAutomationPeer(object owner, System.Windows.Automation.Peers.SelectorAutomationPeer selectorAutomationPeer) : base (default(object), default(System.Windows.Automation.Peers.ItemsControlAutomationPeer)) { } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + } + public partial class SeparatorAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public SeparatorAutomationPeer(System.Windows.Controls.Separator owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class SliderAutomationPeer : System.Windows.Automation.Peers.RangeBaseAutomationPeer + { + public SliderAutomationPeer(System.Windows.Controls.Slider owner) : base (default(System.Windows.Controls.Primitives.RangeBase)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + } + public partial class StatusBarAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public StatusBarAutomationPeer(System.Windows.Controls.Primitives.StatusBar owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class StatusBarItemAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public StatusBarItemAutomationPeer(System.Windows.Controls.Primitives.StatusBarItem owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class TabControlAutomationPeer : System.Windows.Automation.Peers.SelectorAutomationPeer, System.Windows.Automation.Provider.ISelectionProvider + { + public TabControlAutomationPeer(System.Windows.Controls.TabControl owner) : base (default(System.Windows.Controls.Primitives.Selector)) { } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + } + public partial class TabItemAutomationPeer : System.Windows.Automation.Peers.SelectorItemAutomationPeer, System.Windows.Automation.Provider.ISelectionItemProvider + { + public TabItemAutomationPeer(object owner, System.Windows.Automation.Peers.TabControlAutomationPeer tabControlAutomationPeer) : base (default(object), default(System.Windows.Automation.Peers.SelectorAutomationPeer)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + } + public partial class TabItemWrapperAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public TabItemWrapperAutomationPeer(System.Windows.Controls.TabItem owner) : base (default(System.Windows.FrameworkElement)) { } + } + public partial class TableAutomationPeer : System.Windows.Automation.Peers.TextElementAutomationPeer, System.Windows.Automation.Provider.IGridProvider + { + public TableAutomationPeer(System.Windows.Documents.Table owner) : base (default(System.Windows.Documents.TextElement)) { } + int System.Windows.Automation.Provider.IGridProvider.ColumnCount { get { throw null; } } + int System.Windows.Automation.Provider.IGridProvider.RowCount { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridProvider.GetItem(int row, int column) { throw null; } + } + public partial class TableCellAutomationPeer : System.Windows.Automation.Peers.TextElementAutomationPeer, System.Windows.Automation.Provider.IGridItemProvider + { + public TableCellAutomationPeer(System.Windows.Documents.TableCell owner) : base (default(System.Windows.Documents.TextElement)) { } + int System.Windows.Automation.Provider.IGridItemProvider.Column { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.ColumnSpan { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.IGridItemProvider.ContainingGrid { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.Row { get { throw null; } } + int System.Windows.Automation.Provider.IGridItemProvider.RowSpan { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetLocalizedControlTypeCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + protected override bool IsControlElementCore() { throw null; } + } + public abstract partial class TextAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + protected TextAutomationPeer(System.Windows.FrameworkElement owner) : base (default(System.Windows.FrameworkElement)) { } + protected override string GetNameCore() { throw null; } + } + public partial class TextBlockAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public TextBlockAutomationPeer(System.Windows.Controls.TextBlock owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsControlElementCore() { throw null; } + } + public partial class TextBoxAutomationPeer : System.Windows.Automation.Peers.TextAutomationPeer, System.Windows.Automation.Provider.IValueProvider + { + public TextBoxAutomationPeer(System.Windows.Controls.TextBox owner) : base (default(System.Windows.FrameworkElement)) { } + bool System.Windows.Automation.Provider.IValueProvider.IsReadOnly { get { throw null; } } + string System.Windows.Automation.Provider.IValueProvider.Value { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IValueProvider.SetValue(string value) { } + } + public partial class TextElementAutomationPeer : System.Windows.Automation.Peers.ContentTextAutomationPeer + { + public TextElementAutomationPeer(System.Windows.Documents.TextElement owner) : base (default(System.Windows.FrameworkContentElement)) { } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override System.Windows.Point GetClickablePointCore() { throw null; } + protected override bool IsOffscreenCore() { throw null; } + } + public partial class ThumbAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ThumbAutomationPeer(System.Windows.Controls.Primitives.Thumb owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override bool IsContentElementCore() { throw null; } + } + public partial class ToggleButtonAutomationPeer : System.Windows.Automation.Peers.ButtonBaseAutomationPeer, System.Windows.Automation.Provider.IToggleProvider + { + public ToggleButtonAutomationPeer(System.Windows.Controls.Primitives.ToggleButton owner) : base (default(System.Windows.Controls.Primitives.ButtonBase)) { } + System.Windows.Automation.ToggleState System.Windows.Automation.Provider.IToggleProvider.ToggleState { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IToggleProvider.Toggle() { } + } + public partial class ToolBarAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ToolBarAutomationPeer(System.Windows.Controls.ToolBar owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class ToolTipAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public ToolTipAutomationPeer(System.Windows.Controls.ToolTip owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class TreeViewAutomationPeer : System.Windows.Automation.Peers.ItemsControlAutomationPeer, System.Windows.Automation.Provider.ISelectionProvider + { + public TreeViewAutomationPeer(System.Windows.Controls.TreeView owner) : base (default(System.Windows.Controls.ItemsControl)) { } + bool System.Windows.Automation.Provider.ISelectionProvider.CanSelectMultiple { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionProvider.IsSelectionRequired { get { throw null; } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] System.Windows.Automation.Provider.ISelectionProvider.GetSelection() { throw null; } + } + public partial class TreeViewDataItemAutomationPeer : System.Windows.Automation.Peers.ItemAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider, System.Windows.Automation.Provider.IScrollItemProvider, System.Windows.Automation.Provider.ISelectionItemProvider + { + public TreeViewDataItemAutomationPeer(object item, System.Windows.Automation.Peers.ItemsControlAutomationPeer itemsControlAutomationPeer, System.Windows.Automation.Peers.TreeViewDataItemAutomationPeer parentDataItemAutomationPeer) : base (default(object), default(System.Windows.Automation.Peers.ItemsControlAutomationPeer)) { } + public System.Windows.Automation.Peers.TreeViewDataItemAutomationPeer ParentDataItemAutomationPeer { get { throw null; } } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + } + public partial class TreeViewItemAutomationPeer : System.Windows.Automation.Peers.ItemsControlAutomationPeer, System.Windows.Automation.Provider.IExpandCollapseProvider, System.Windows.Automation.Provider.IScrollItemProvider, System.Windows.Automation.Provider.ISelectionItemProvider + { + public TreeViewItemAutomationPeer(System.Windows.Controls.TreeViewItem owner) : base (default(System.Windows.Controls.ItemsControl)) { } + System.Windows.Automation.ExpandCollapseState System.Windows.Automation.Provider.IExpandCollapseProvider.ExpandCollapseState { get { throw null; } } + bool System.Windows.Automation.Provider.ISelectionItemProvider.IsSelected { get { throw null; } } + System.Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.Provider.ISelectionItemProvider.SelectionContainer { get { throw null; } } + protected override System.Windows.Automation.Peers.ItemAutomationPeer CreateItemAutomationPeer(object item) { throw null; } + protected internal override System.Windows.Automation.Peers.ItemAutomationPeer FindOrCreateItemAutomationPeer(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Collections.Generic.List GetChildrenCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + public override object GetPattern(System.Windows.Automation.Peers.PatternInterface patternInterface) { throw null; } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Collapse() { } + void System.Windows.Automation.Provider.IExpandCollapseProvider.Expand() { } + void System.Windows.Automation.Provider.IScrollItemProvider.ScrollIntoView() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.AddToSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.RemoveFromSelection() { } + void System.Windows.Automation.Provider.ISelectionItemProvider.Select() { } + } + public partial class UserControlAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public UserControlAutomationPeer(System.Windows.Controls.UserControl owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class Viewport3DAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public Viewport3DAutomationPeer(System.Windows.Controls.Viewport3D owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + } + public partial class WindowAutomationPeer : System.Windows.Automation.Peers.FrameworkElementAutomationPeer + { + public WindowAutomationPeer(System.Windows.Window owner) : base (default(System.Windows.FrameworkElement)) { } + protected override System.Windows.Automation.Peers.AutomationControlType GetAutomationControlTypeCore() { throw null; } + protected override System.Windows.Rect GetBoundingRectangleCore() { throw null; } + protected override string GetClassNameCore() { throw null; } + protected override string GetNameCore() { throw null; } + } +} +namespace System.Windows.Baml2006 +{ + public partial class Baml2006Reader : System.Xaml.XamlReader, System.Xaml.IXamlLineInfo + { + public Baml2006Reader(System.IO.Stream stream) { } + public Baml2006Reader(System.IO.Stream stream, System.Xaml.XamlReaderSettings xamlReaderSettings) { } + public Baml2006Reader(string fileName) { } + public override bool IsEof { get { throw null; } } + public override System.Xaml.XamlMember Member { get { throw null; } } + public override System.Xaml.NamespaceDeclaration Namespace { get { throw null; } } + public override System.Xaml.XamlNodeType NodeType { get { throw null; } } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + bool System.Xaml.IXamlLineInfo.HasLineInfo { get { throw null; } } + int System.Xaml.IXamlLineInfo.LineNumber { get { throw null; } } + int System.Xaml.IXamlLineInfo.LinePosition { get { throw null; } } + public override System.Xaml.XamlType Type { get { throw null; } } + public override object Value { get { throw null; } } + protected override void Dispose(bool disposing) { } + public override bool Read() { throw null; } + } +} +namespace System.Windows.Controls +{ + [System.Windows.Markup.ContentPropertyAttribute("Text")] + public partial class AccessText : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BaselineOffsetProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStretchProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public static readonly System.Windows.DependencyProperty TextDecorationsProperty; + public static readonly System.Windows.DependencyProperty TextEffectsProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + public static readonly System.Windows.DependencyProperty TextTrimmingProperty; + public static readonly System.Windows.DependencyProperty TextWrappingProperty; + public AccessText() { } + public char AccessKey { get { throw null; } } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public double BaselineOffset { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + public System.Windows.FontStretch FontStretch { get { throw null; } set { } } + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute("")] + public string Text { get { throw null; } set { } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public System.Windows.TextDecorationCollection TextDecorations { get { throw null; } set { } } + public System.Windows.Media.TextEffectCollection TextEffects { get { throw null; } set { } } + public System.Windows.TextTrimming TextTrimming { get { throw null; } set { } } + public System.Windows.TextWrapping TextWrapping { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected sealed override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected sealed override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class AddingNewItemEventArgs : System.EventArgs + { + public AddingNewItemEventArgs() { } + public object NewItem { get { throw null; } set { } } + } + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public partial class AdornedElementPlaceholder : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public AdornedElementPlaceholder() { } + public System.Windows.UIElement AdornedElement { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public virtual System.Windows.UIElement Child { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnInitialized(System.EventArgs e) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Values")] + public partial class AlternationConverter : System.Windows.Data.IValueConverter + { + public AlternationConverter() { } + public System.Collections.IList Values { get { throw null; } } + public object Convert(object o, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object ConvertBack(object o, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public sealed partial class BooleanToVisibilityConverter : System.Windows.Data.IValueConverter + { + public BooleanToVisibilityConverter() { } + public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } + public partial class Border : System.Windows.Controls.Decorator + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty CornerRadiusProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public Border() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + public System.Windows.CornerRadius CornerRadius { get { throw null; } set { } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + } + public partial class BorderGapMaskConverter : System.Windows.Data.IMultiValueConverter + { + public BorderGapMaskConverter() { } + public object Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object[] ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } + public partial class Button : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.DependencyProperty IsCancelProperty; + public static readonly System.Windows.DependencyProperty IsDefaultedProperty; + public static readonly System.Windows.DependencyProperty IsDefaultProperty; + public Button() { } + public bool IsCancel { get { throw null; } set { } } + public bool IsDefault { get { throw null; } set { } } + public bool IsDefaulted { get { throw null; } } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.Windows.TemplatePartAttribute(Name="PART_CalendarItem", Type=typeof(System.Windows.Controls.Primitives.CalendarItem))] + [System.Windows.TemplatePartAttribute(Name="PART_Root", Type=typeof(System.Windows.Controls.Panel))] + public partial class Calendar : System.Windows.Controls.Control + { + public static readonly System.Windows.DependencyProperty CalendarButtonStyleProperty; + public static readonly System.Windows.DependencyProperty CalendarDayButtonStyleProperty; + public static readonly System.Windows.DependencyProperty CalendarItemStyleProperty; + public static readonly System.Windows.DependencyProperty DisplayDateEndProperty; + public static readonly System.Windows.DependencyProperty DisplayDateProperty; + public static readonly System.Windows.DependencyProperty DisplayDateStartProperty; + public static readonly System.Windows.DependencyProperty DisplayModeProperty; + public static readonly System.Windows.DependencyProperty FirstDayOfWeekProperty; + public static readonly System.Windows.DependencyProperty IsTodayHighlightedProperty; + public static readonly System.Windows.DependencyProperty SelectedDateProperty; + public static readonly System.Windows.RoutedEvent SelectedDatesChangedEvent; + public static readonly System.Windows.DependencyProperty SelectionModeProperty; + public Calendar() { } + public System.Windows.Controls.CalendarBlackoutDatesCollection BlackoutDates { get { throw null; } } + public System.Windows.Style CalendarButtonStyle { get { throw null; } set { } } + public System.Windows.Style CalendarDayButtonStyle { get { throw null; } set { } } + public System.Windows.Style CalendarItemStyle { get { throw null; } set { } } + public System.DateTime DisplayDate { get { throw null; } set { } } + public System.DateTime? DisplayDateEnd { get { throw null; } set { } } + public System.DateTime? DisplayDateStart { get { throw null; } set { } } + public System.Windows.Controls.CalendarMode DisplayMode { get { throw null; } set { } } + public System.DayOfWeek FirstDayOfWeek { get { throw null; } set { } } + public bool IsTodayHighlighted { get { throw null; } set { } } + public System.DateTime? SelectedDate { get { throw null; } set { } } + public System.Windows.Controls.SelectedDatesCollection SelectedDates { get { throw null; } } + public System.Windows.Controls.CalendarSelectionMode SelectionMode { get { throw null; } set { } } + public event System.EventHandler DisplayDateChanged { add { } remove { } } + public event System.EventHandler DisplayModeChanged { add { } remove { } } + public event System.EventHandler SelectedDatesChanged { add { } remove { } } + public event System.EventHandler SelectionModeChanged { add { } remove { } } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDisplayDateChanged(System.Windows.Controls.CalendarDateChangedEventArgs e) { } + protected virtual void OnDisplayModeChanged(System.Windows.Controls.CalendarModeChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnSelectedDatesChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + protected virtual void OnSelectionModeChanged(System.EventArgs e) { } + public override string ToString() { throw null; } + } + public sealed partial class CalendarBlackoutDatesCollection : System.Collections.ObjectModel.ObservableCollection + { + public CalendarBlackoutDatesCollection(System.Windows.Controls.Calendar owner) { } + public void AddDatesInPast() { } + protected override void ClearItems() { } + public bool Contains(System.DateTime date) { throw null; } + public bool Contains(System.DateTime start, System.DateTime end) { throw null; } + public bool ContainsAny(System.Windows.Controls.CalendarDateRange range) { throw null; } + protected override void InsertItem(int index, System.Windows.Controls.CalendarDateRange item) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.Controls.CalendarDateRange item) { } + } + public partial class CalendarDateChangedEventArgs : System.Windows.RoutedEventArgs + { + internal CalendarDateChangedEventArgs() { } + public System.DateTime? AddedDate { get { throw null; } } + public System.DateTime? RemovedDate { get { throw null; } } + } + public sealed partial class CalendarDateRange : System.ComponentModel.INotifyPropertyChanged + { + public CalendarDateRange() { } + public CalendarDateRange(System.DateTime day) { } + public CalendarDateRange(System.DateTime start, System.DateTime end) { } + public System.DateTime End { get { throw null; } set { } } + public System.DateTime Start { get { throw null; } set { } } + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } } + } + public enum CalendarMode + { + Month = 0, + Year = 1, + Decade = 2, + } + public partial class CalendarModeChangedEventArgs : System.Windows.RoutedEventArgs + { + public CalendarModeChangedEventArgs(System.Windows.Controls.CalendarMode oldMode, System.Windows.Controls.CalendarMode newMode) { } + public System.Windows.Controls.CalendarMode NewMode { get { throw null; } } + public System.Windows.Controls.CalendarMode OldMode { get { throw null; } } + } + public enum CalendarSelectionMode + { + SingleDate = 0, + SingleRange = 1, + MultipleRange = 2, + None = 3, + } + public partial class Canvas : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty BottomProperty; + public static readonly System.Windows.DependencyProperty LeftProperty; + public static readonly System.Windows.DependencyProperty RightProperty; + public static readonly System.Windows.DependencyProperty TopProperty; + public Canvas() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetBottom(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetLeft(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetRight(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetTop(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public static void SetBottom(System.Windows.UIElement element, double length) { } + public static void SetLeft(System.Windows.UIElement element, double length) { } + public static void SetRight(System.Windows.UIElement element, double length) { } + public static void SetTop(System.Windows.UIElement element, double length) { } + } + public enum CharacterCasing + { + Normal = 0, + Lower = 1, + Upper = 2, + } + [System.ComponentModel.DefaultEventAttribute("CheckStateChanged")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.CheckBox)] + public partial class CheckBox : System.Windows.Controls.Primitives.ToggleButton + { + public CheckBox() { } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + } + public partial class CleanUpVirtualizedItemEventArgs : System.Windows.RoutedEventArgs + { + public CleanUpVirtualizedItemEventArgs(object value, System.Windows.UIElement element) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.UIElement UIElement { get { throw null; } } + public object Value { get { throw null; } } + } + public delegate void CleanUpVirtualizedItemEventHandler(object sender, System.Windows.Controls.CleanUpVirtualizedItemEventArgs e); + public enum ClickMode + { + Release = 0, + Press = 1, + Hover = 2, + } + public partial class ColumnDefinition : System.Windows.Controls.DefinitionBase + { + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public static readonly System.Windows.DependencyProperty MaxWidthProperty; + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public static readonly System.Windows.DependencyProperty MinWidthProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public ColumnDefinition() { } + public double ActualWidth { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MaxWidth { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MinWidth { get { throw null; } set { } } + public double Offset { get { throw null; } } + public System.Windows.GridLength Width { get { throw null; } set { } } + } + public sealed partial class ColumnDefinitionCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal ColumnDefinitionCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Controls.ColumnDefinition this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Controls.ColumnDefinition value) { } + public void Clear() { } + public bool Contains(System.Windows.Controls.ColumnDefinition value) { throw null; } + public void CopyTo(System.Windows.Controls.ColumnDefinition[] array, int index) { } + public int IndexOf(System.Windows.Controls.ColumnDefinition value) { throw null; } + public void Insert(int index, System.Windows.Controls.ColumnDefinition value) { } + public bool Remove(System.Windows.Controls.ColumnDefinition value) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.ComboBox)] + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.ComboBoxItem))] + [System.Windows.TemplatePartAttribute(Name="PART_EditableTextBox", Type=typeof(System.Windows.Controls.TextBox))] + [System.Windows.TemplatePartAttribute(Name="PART_Popup", Type=typeof(System.Windows.Controls.Primitives.Popup))] + public partial class ComboBox : System.Windows.Controls.Primitives.Selector + { + public static readonly System.Windows.DependencyProperty IsDropDownOpenProperty; + public static readonly System.Windows.DependencyProperty IsEditableProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyProperty; + public static readonly System.Windows.DependencyProperty MaxDropDownHeightProperty; + public static readonly System.Windows.DependencyProperty SelectionBoxItemProperty; + public static readonly System.Windows.DependencyProperty SelectionBoxItemStringFormatProperty; + public static readonly System.Windows.DependencyProperty SelectionBoxItemTemplateProperty; + public static readonly System.Windows.DependencyProperty ShouldPreserveUserEnteredPrefixProperty; + public static readonly System.Windows.DependencyProperty StaysOpenOnEditProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + public ComboBox() { } + protected internal override bool HandlesScrolling { get { throw null; } } + protected internal override bool HasEffectiveKeyboardFocus { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsDropDownOpen { get { throw null; } set { } } + public bool IsEditable { get { throw null; } set { } } + public bool IsReadOnly { get { throw null; } set { } } + public bool IsSelectionBoxHighlighted { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MaxDropDownHeight { get { throw null; } set { } } + public object SelectionBoxItem { get { throw null; } } + public string SelectionBoxItemStringFormat { get { throw null; } } + public System.Windows.DataTemplate SelectionBoxItemTemplate { get { throw null; } } + public bool ShouldPreserveUserEnteredPrefix { get { throw null; } set { } } + public bool StaysOpenOnEdit { get { throw null; } set { } } + public string Text { get { throw null; } set { } } + public event System.EventHandler DropDownClosed { add { } remove { } } + public event System.EventHandler DropDownOpened { add { } remove { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDropDownClosed(System.EventArgs e) { } + protected virtual void OnDropDownOpened(System.EventArgs e) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.ComboBox)] + public partial class ComboBoxItem : System.Windows.Controls.ListBoxItem + { + public static readonly System.Windows.DependencyProperty IsHighlightedProperty; + public ComboBoxItem() { } + public bool IsHighlighted { get { throw null; } protected set { } } + protected override void OnContentChanged(object oldContent, object newContent) { } + protected override void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + } + [System.ComponentModel.DefaultPropertyAttribute("Content")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Content")] + public partial class ContentControl : System.Windows.Controls.Control, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty ContentProperty; + public static readonly System.Windows.DependencyProperty ContentStringFormatProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty HasContentProperty; + public ContentControl() { } + [System.ComponentModel.BindableAttribute(true)] + public object Content { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string ContentStringFormat { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.DataTemplate ContentTemplate { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector ContentTemplateSelector { get { throw null; } set { } } + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool HasContent { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected virtual void AddChild(object value) { } + protected virtual void AddText(string text) { } + protected virtual void OnContentChanged(object oldContent, object newContent) { } + protected virtual void OnContentStringFormatChanged(string oldContentStringFormat, string newContentStringFormat) { } + protected virtual void OnContentTemplateChanged(System.Windows.DataTemplate oldContentTemplate, System.Windows.DataTemplate newContentTemplate) { } + protected virtual void OnContentTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldContentTemplateSelector, System.Windows.Controls.DataTemplateSelector newContentTemplateSelector) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public virtual bool ShouldSerializeContent() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class ContentPresenter : System.Windows.FrameworkElement + { + public static readonly System.Windows.DependencyProperty ContentProperty; + public static readonly System.Windows.DependencyProperty ContentSourceProperty; + public static readonly System.Windows.DependencyProperty ContentStringFormatProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty RecognizesAccessKeyProperty; + public ContentPresenter() { } + public object Content { get { throw null; } set { } } + public string ContentSource { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string ContentStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate ContentTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector ContentTemplateSelector { get { throw null; } set { } } + public bool RecognizesAccessKey { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected virtual System.Windows.DataTemplate ChooseTemplate() { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected virtual void OnContentStringFormatChanged(string oldContentStringFormat, string newContentStringFormat) { } + protected virtual void OnContentTemplateChanged(System.Windows.DataTemplate oldContentTemplate, System.Windows.DataTemplate newContentTemplate) { } + protected virtual void OnContentTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldContentTemplateSelector, System.Windows.Controls.DataTemplateSelector newContentTemplateSelector) { } + protected virtual void OnTemplateChanged(System.Windows.DataTemplate oldTemplate, System.Windows.DataTemplate newTemplate) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeContentTemplateSelector() { throw null; } + } + [System.ComponentModel.DefaultEventAttribute("Opened")] + public partial class ContextMenu : System.Windows.Controls.Primitives.MenuBase + { + public static readonly System.Windows.RoutedEvent ClosedEvent; + public static readonly System.Windows.DependencyProperty CustomPopupPlacementCallbackProperty; + public static readonly System.Windows.DependencyProperty HasDropShadowProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty IsOpenProperty; + public static readonly System.Windows.RoutedEvent OpenedEvent; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty PlacementRectangleProperty; + public static readonly System.Windows.DependencyProperty PlacementTargetProperty; + public static readonly System.Windows.DependencyProperty StaysOpenProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public ContextMenu() { } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.CustomPopupPlacementCallback CustomPopupPlacementCallback { get { throw null; } set { } } + protected internal override bool HandlesScrolling { get { throw null; } } + public bool HasDropShadow { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double HorizontalOffset { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsOpen { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.PlacementMode Placement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Rect PlacementRectangle { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.UIElement PlacementTarget { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool StaysOpen { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double VerticalOffset { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Closed { add { } remove { } } + public event System.Windows.RoutedEventHandler Opened { add { } remove { } } + protected virtual void OnClosed(System.Windows.RoutedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnOpened(System.Windows.RoutedEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + public sealed partial class ContextMenuEventArgs : System.Windows.RoutedEventArgs + { + internal ContextMenuEventArgs() { } + public double CursorLeft { get { throw null; } } + public double CursorTop { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void ContextMenuEventHandler(object sender, System.Windows.Controls.ContextMenuEventArgs e); + public static partial class ContextMenuService + { + public static readonly System.Windows.RoutedEvent ContextMenuClosingEvent; + public static readonly System.Windows.RoutedEvent ContextMenuOpeningEvent; + public static readonly System.Windows.DependencyProperty ContextMenuProperty; + public static readonly System.Windows.DependencyProperty HasDropShadowProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty PlacementRectangleProperty; + public static readonly System.Windows.DependencyProperty PlacementTargetProperty; + public static readonly System.Windows.DependencyProperty ShowOnDisabledProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public static void AddContextMenuClosingHandler(System.Windows.DependencyObject element, System.Windows.Controls.ContextMenuEventHandler handler) { } + public static void AddContextMenuOpeningHandler(System.Windows.DependencyObject element, System.Windows.Controls.ContextMenuEventHandler handler) { } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Controls.ContextMenu GetContextMenu(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetHasDropShadow(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static double GetHorizontalOffset(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsEnabled(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Controls.Primitives.PlacementMode GetPlacement(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Rect GetPlacementRectangle(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.UIElement GetPlacementTarget(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetShowOnDisabled(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static double GetVerticalOffset(System.Windows.DependencyObject element) { throw null; } + public static void RemoveContextMenuClosingHandler(System.Windows.DependencyObject element, System.Windows.Controls.ContextMenuEventHandler handler) { } + public static void RemoveContextMenuOpeningHandler(System.Windows.DependencyObject element, System.Windows.Controls.ContextMenuEventHandler handler) { } + public static void SetContextMenu(System.Windows.DependencyObject element, System.Windows.Controls.ContextMenu value) { } + public static void SetHasDropShadow(System.Windows.DependencyObject element, bool value) { } + public static void SetHorizontalOffset(System.Windows.DependencyObject element, double value) { } + public static void SetIsEnabled(System.Windows.DependencyObject element, bool value) { } + public static void SetPlacement(System.Windows.DependencyObject element, System.Windows.Controls.Primitives.PlacementMode value) { } + public static void SetPlacementRectangle(System.Windows.DependencyObject element, System.Windows.Rect value) { } + public static void SetPlacementTarget(System.Windows.DependencyObject element, System.Windows.UIElement value) { } + public static void SetShowOnDisabled(System.Windows.DependencyObject element, bool value) { } + public static void SetVerticalOffset(System.Windows.DependencyObject element, double value) { } + } + public partial class Control : System.Windows.FrameworkElement + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStretchProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty HorizontalContentAlignmentProperty; + public static readonly System.Windows.DependencyProperty IsTabStopProperty; + public static readonly System.Windows.RoutedEvent MouseDoubleClickEvent; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.RoutedEvent PreviewMouseDoubleClickEvent; + public static readonly System.Windows.DependencyProperty TabIndexProperty; + public static readonly System.Windows.DependencyProperty TemplateProperty; + public static readonly System.Windows.DependencyProperty VerticalContentAlignmentProperty; + public Control() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush Background { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.FontStretch FontStretch { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + protected internal virtual bool HandlesScrolling { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.HorizontalAlignment HorizontalContentAlignment { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsTabStop { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Thickness Padding { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public int TabIndex { get { throw null; } set { } } + public System.Windows.Controls.ControlTemplate Template { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.VerticalAlignment VerticalContentAlignment { get { throw null; } set { } } + public event System.Windows.Input.MouseButtonEventHandler MouseDoubleClick { add { } remove { } } + public event System.Windows.Input.MouseButtonEventHandler PreviewMouseDoubleClick { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected virtual void OnMouseDoubleClick(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnPreviewMouseDoubleClick(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + public override string ToString() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.DictionaryKeyPropertyAttribute("TargetType")] + public partial class ControlTemplate : System.Windows.FrameworkTemplate + { + public ControlTemplate() { } + public ControlTemplate(System.Type targetType) { } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.AmbientAttribute] + public System.Type TargetType { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + [System.Windows.Markup.DependsOnAttribute("Template")] + [System.Windows.Markup.DependsOnAttribute("VisualTree")] + public System.Windows.TriggerCollection Triggers { get { throw null; } } + protected override void ValidateTemplatedParent(System.Windows.FrameworkElement templatedParent) { } + } + public sealed partial class DataErrorValidationRule : System.Windows.Controls.ValidationRule + { + public DataErrorValidationRule() { } + public override System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo) { throw null; } + } + public partial class DataGrid : System.Windows.Controls.Primitives.MultiSelector + { + public static readonly System.Windows.DependencyProperty AlternatingRowBackgroundProperty; + public static readonly System.Windows.DependencyProperty AreRowDetailsFrozenProperty; + public static readonly System.Windows.DependencyProperty AutoGenerateColumnsProperty; + public static readonly System.Windows.Input.RoutedCommand BeginEditCommand; + public static readonly System.Windows.Input.RoutedCommand CancelEditCommand; + public static readonly System.Windows.DependencyProperty CanUserAddRowsProperty; + public static readonly System.Windows.DependencyProperty CanUserDeleteRowsProperty; + public static readonly System.Windows.DependencyProperty CanUserReorderColumnsProperty; + public static readonly System.Windows.DependencyProperty CanUserResizeColumnsProperty; + public static readonly System.Windows.DependencyProperty CanUserResizeRowsProperty; + public static readonly System.Windows.DependencyProperty CanUserSortColumnsProperty; + public static readonly System.Windows.DependencyProperty CellsPanelHorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty CellStyleProperty; + public static readonly System.Windows.DependencyProperty ClipboardCopyModeProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderHeightProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderStyleProperty; + public static readonly System.Windows.DependencyProperty ColumnWidthProperty; + public static readonly System.Windows.Input.RoutedCommand CommitEditCommand; + public static readonly System.Windows.DependencyProperty CurrentCellProperty; + public static readonly System.Windows.DependencyProperty CurrentColumnProperty; + public static readonly System.Windows.DependencyProperty CurrentItemProperty; + public static readonly System.Windows.DependencyProperty DragIndicatorStyleProperty; + public static readonly System.Windows.DependencyProperty DropLocationIndicatorStyleProperty; + public static readonly System.Windows.DependencyProperty EnableColumnVirtualizationProperty; + public static readonly System.Windows.DependencyProperty EnableRowVirtualizationProperty; + public static readonly System.Windows.DependencyProperty FrozenColumnCountProperty; + public static readonly System.Windows.DependencyProperty GridLinesVisibilityProperty; + public static readonly System.Windows.DependencyProperty HeadersVisibilityProperty; + public static readonly System.Windows.DependencyProperty HorizontalGridLinesBrushProperty; + public static readonly System.Windows.DependencyProperty HorizontalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyProperty; + public static readonly System.Windows.DependencyProperty MaxColumnWidthProperty; + public static readonly System.Windows.DependencyProperty MinColumnWidthProperty; + public static readonly System.Windows.DependencyProperty MinRowHeightProperty; + public static readonly System.Windows.DependencyProperty NewItemMarginProperty; + public static readonly System.Windows.DependencyProperty NonFrozenColumnsViewportHorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty RowBackgroundProperty; + public static readonly System.Windows.DependencyProperty RowDetailsTemplateProperty; + public static readonly System.Windows.DependencyProperty RowDetailsTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty RowDetailsVisibilityModeProperty; + public static readonly System.Windows.DependencyProperty RowHeaderActualWidthProperty; + public static readonly System.Windows.DependencyProperty RowHeaderStyleProperty; + public static readonly System.Windows.DependencyProperty RowHeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty RowHeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty RowHeaderWidthProperty; + public static readonly System.Windows.DependencyProperty RowHeightProperty; + public static readonly System.Windows.DependencyProperty RowStyleProperty; + public static readonly System.Windows.DependencyProperty RowStyleSelectorProperty; + public static readonly System.Windows.DependencyProperty RowValidationErrorTemplateProperty; + public static readonly System.Windows.DependencyProperty SelectionModeProperty; + public static readonly System.Windows.DependencyProperty SelectionUnitProperty; + public static readonly System.Windows.DependencyProperty VerticalGridLinesBrushProperty; + public static readonly System.Windows.DependencyProperty VerticalScrollBarVisibilityProperty; + public DataGrid() { } + public System.Windows.Media.Brush AlternatingRowBackground { get { throw null; } set { } } + public bool AreRowDetailsFrozen { get { throw null; } set { } } + public bool AutoGenerateColumns { get { throw null; } set { } } + public bool CanUserAddRows { get { throw null; } set { } } + public bool CanUserDeleteRows { get { throw null; } set { } } + public bool CanUserReorderColumns { get { throw null; } set { } } + public bool CanUserResizeColumns { get { throw null; } set { } } + public bool CanUserResizeRows { get { throw null; } set { } } + public bool CanUserSortColumns { get { throw null; } set { } } + public double CellsPanelHorizontalOffset { get { throw null; } } + public System.Windows.Style CellStyle { get { throw null; } set { } } + public System.Windows.Controls.DataGridClipboardCopyMode ClipboardCopyMode { get { throw null; } set { } } + public double ColumnHeaderHeight { get { throw null; } set { } } + public System.Windows.Style ColumnHeaderStyle { get { throw null; } set { } } + public System.Collections.ObjectModel.ObservableCollection Columns { get { throw null; } } + public System.Windows.Controls.DataGridLength ColumnWidth { get { throw null; } set { } } + public System.Windows.Controls.DataGridCellInfo CurrentCell { get { throw null; } set { } } + public System.Windows.Controls.DataGridColumn CurrentColumn { get { throw null; } set { } } + public object CurrentItem { get { throw null; } set { } } + public static System.Windows.Input.RoutedUICommand DeleteCommand { get { throw null; } } + public System.Windows.Style DragIndicatorStyle { get { throw null; } set { } } + public System.Windows.Style DropLocationIndicatorStyle { get { throw null; } set { } } + public bool EnableColumnVirtualization { get { throw null; } set { } } + public bool EnableRowVirtualization { get { throw null; } set { } } + public static System.Windows.ComponentResourceKey FocusBorderBrushKey { get { throw null; } } + public int FrozenColumnCount { get { throw null; } set { } } + public System.Windows.Controls.DataGridGridLinesVisibility GridLinesVisibility { get { throw null; } set { } } + protected internal override bool HandlesScrolling { get { throw null; } } + public System.Windows.Controls.DataGridHeadersVisibility HeadersVisibility { get { throw null; } set { } } + public static System.Windows.Data.IValueConverter HeadersVisibilityConverter { get { throw null; } } + public System.Windows.Media.Brush HorizontalGridLinesBrush { get { throw null; } set { } } + public System.Windows.Controls.ScrollBarVisibility HorizontalScrollBarVisibility { get { throw null; } set { } } + public bool IsReadOnly { get { throw null; } set { } } + public double MaxColumnWidth { get { throw null; } set { } } + public double MinColumnWidth { get { throw null; } set { } } + public double MinRowHeight { get { throw null; } set { } } + public System.Windows.Thickness NewItemMargin { get { throw null; } } + public double NonFrozenColumnsViewportHorizontalOffset { get { throw null; } } + public System.Windows.Media.Brush RowBackground { get { throw null; } set { } } + public static System.Windows.Data.IValueConverter RowDetailsScrollingConverter { get { throw null; } } + public System.Windows.DataTemplate RowDetailsTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector RowDetailsTemplateSelector { get { throw null; } set { } } + public System.Windows.Controls.DataGridRowDetailsVisibilityMode RowDetailsVisibilityMode { get { throw null; } set { } } + public double RowHeaderActualWidth { get { throw null; } } + public System.Windows.Style RowHeaderStyle { get { throw null; } set { } } + public System.Windows.DataTemplate RowHeaderTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector RowHeaderTemplateSelector { get { throw null; } set { } } + public double RowHeaderWidth { get { throw null; } set { } } + public double RowHeight { get { throw null; } set { } } + public System.Windows.Style RowStyle { get { throw null; } set { } } + public System.Windows.Controls.StyleSelector RowStyleSelector { get { throw null; } set { } } + public System.Windows.Controls.ControlTemplate RowValidationErrorTemplate { get { throw null; } set { } } + public System.Collections.ObjectModel.ObservableCollection RowValidationRules { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectAllCommand { get { throw null; } } + public System.Collections.Generic.IList SelectedCells { get { throw null; } } + public System.Windows.Controls.DataGridSelectionMode SelectionMode { get { throw null; } set { } } + public System.Windows.Controls.DataGridSelectionUnit SelectionUnit { get { throw null; } set { } } + public System.Windows.Media.Brush VerticalGridLinesBrush { get { throw null; } set { } } + public System.Windows.Controls.ScrollBarVisibility VerticalScrollBarVisibility { get { throw null; } set { } } + public event System.EventHandler AddingNewItem { add { } remove { } } + public event System.EventHandler AutoGeneratedColumns { add { } remove { } } + public event System.EventHandler AutoGeneratingColumn { add { } remove { } } + public event System.EventHandler BeginningEdit { add { } remove { } } + public event System.EventHandler CellEditEnding { add { } remove { } } + public event System.EventHandler ColumnDisplayIndexChanged { add { } remove { } } + public event System.EventHandler ColumnHeaderDragCompleted { add { } remove { } } + public event System.EventHandler ColumnHeaderDragDelta { add { } remove { } } + public event System.EventHandler ColumnHeaderDragStarted { add { } remove { } } + public event System.EventHandler ColumnReordered { add { } remove { } } + public event System.EventHandler ColumnReordering { add { } remove { } } + public event System.EventHandler CopyingRowClipboardContent { add { } remove { } } + public event System.EventHandler CurrentCellChanged { add { } remove { } } + public event System.Windows.Controls.InitializingNewItemEventHandler InitializingNewItem { add { } remove { } } + public event System.EventHandler LoadingRow { add { } remove { } } + public event System.EventHandler LoadingRowDetails { add { } remove { } } + public event System.EventHandler PreparingCellForEdit { add { } remove { } } + public event System.EventHandler RowDetailsVisibilityChanged { add { } remove { } } + public event System.EventHandler RowEditEnding { add { } remove { } } + public event System.Windows.Controls.SelectedCellsChangedEventHandler SelectedCellsChanged { add { } remove { } } + public event System.Windows.Controls.DataGridSortingEventHandler Sorting { add { } remove { } } + public event System.EventHandler UnloadingRow { add { } remove { } } + public event System.EventHandler UnloadingRowDetails { add { } remove { } } + public bool BeginEdit() { throw null; } + public bool BeginEdit(System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + public bool CancelEdit() { throw null; } + public bool CancelEdit(System.Windows.Controls.DataGridEditingUnit editingUnit) { throw null; } + protected override void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public void ClearDetailsVisibilityForItem(object item) { } + public System.Windows.Controls.DataGridColumn ColumnFromDisplayIndex(int displayIndex) { throw null; } + public bool CommitEdit() { throw null; } + public bool CommitEdit(System.Windows.Controls.DataGridEditingUnit editingUnit, bool exitEditingMode) { throw null; } + public static System.Collections.ObjectModel.Collection GenerateColumns(System.ComponentModel.IItemProperties itemProperties) { throw null; } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + public System.Windows.Visibility GetDetailsVisibilityForItem(object item) { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected virtual void OnAddingNewItem(System.Windows.Controls.AddingNewItemEventArgs e) { } + public override void OnApplyTemplate() { } + protected virtual void OnAutoGeneratedColumns(System.EventArgs e) { } + protected virtual void OnAutoGeneratingColumn(System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs e) { } + protected virtual void OnBeginningEdit(System.Windows.Controls.DataGridBeginningEditEventArgs e) { } + protected virtual void OnCanExecuteBeginEdit(System.Windows.Input.CanExecuteRoutedEventArgs e) { } + protected virtual void OnCanExecuteCancelEdit(System.Windows.Input.CanExecuteRoutedEventArgs e) { } + protected virtual void OnCanExecuteCommitEdit(System.Windows.Input.CanExecuteRoutedEventArgs e) { } + protected virtual void OnCanExecuteCopy(System.Windows.Input.CanExecuteRoutedEventArgs args) { } + protected virtual void OnCanExecuteDelete(System.Windows.Input.CanExecuteRoutedEventArgs e) { } + protected virtual void OnCellEditEnding(System.Windows.Controls.DataGridCellEditEndingEventArgs e) { } + protected internal virtual void OnColumnDisplayIndexChanged(System.Windows.Controls.DataGridColumnEventArgs e) { } + protected internal virtual void OnColumnHeaderDragCompleted(System.Windows.Controls.Primitives.DragCompletedEventArgs e) { } + protected internal virtual void OnColumnHeaderDragDelta(System.Windows.Controls.Primitives.DragDeltaEventArgs e) { } + protected internal virtual void OnColumnHeaderDragStarted(System.Windows.Controls.Primitives.DragStartedEventArgs e) { } + protected internal virtual void OnColumnReordered(System.Windows.Controls.DataGridColumnEventArgs e) { } + protected internal virtual void OnColumnReordering(System.Windows.Controls.DataGridColumnReorderingEventArgs e) { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected virtual void OnCopyingRowClipboardContent(System.Windows.Controls.DataGridRowClipboardEventArgs args) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnCurrentCellChanged(System.EventArgs e) { } + protected virtual void OnExecutedBeginEdit(System.Windows.Input.ExecutedRoutedEventArgs e) { } + protected virtual void OnExecutedCancelEdit(System.Windows.Input.ExecutedRoutedEventArgs e) { } + protected virtual void OnExecutedCommitEdit(System.Windows.Input.ExecutedRoutedEventArgs e) { } + protected virtual void OnExecutedCopy(System.Windows.Input.ExecutedRoutedEventArgs args) { } + protected virtual void OnExecutedDelete(System.Windows.Input.ExecutedRoutedEventArgs e) { } + protected virtual void OnInitializingNewItem(System.Windows.Controls.InitializingNewItemEventArgs e) { } + protected override void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnItemsSourceChanged(System.Collections.IEnumerable oldValue, System.Collections.IEnumerable newValue) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnLoadingRow(System.Windows.Controls.DataGridRowEventArgs e) { } + protected virtual void OnLoadingRowDetails(System.Windows.Controls.DataGridRowDetailsEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal virtual void OnPreparingCellForEdit(System.Windows.Controls.DataGridPreparingCellForEditEventArgs e) { } + protected internal virtual void OnRowDetailsVisibilityChanged(System.Windows.Controls.DataGridRowDetailsEventArgs e) { } + protected virtual void OnRowEditEnding(System.Windows.Controls.DataGridRowEditEndingEventArgs e) { } + protected virtual void OnSelectedCellsChanged(System.Windows.Controls.SelectedCellsChangedEventArgs e) { } + protected override void OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + protected virtual void OnSorting(System.Windows.Controls.DataGridSortingEventArgs eventArgs) { } + protected override void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected virtual void OnUnloadingRow(System.Windows.Controls.DataGridRowEventArgs e) { } + protected virtual void OnUnloadingRowDetails(System.Windows.Controls.DataGridRowDetailsEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public void ScrollIntoView(object item) { } + public void ScrollIntoView(object item, System.Windows.Controls.DataGridColumn column) { } + public void SelectAllCells() { } + public void SetDetailsVisibilityForItem(object item, System.Windows.Visibility detailsVisibility) { } + public void UnselectAllCells() { } + } + public partial class DataGridAutoGeneratingColumnEventArgs : System.EventArgs + { + public DataGridAutoGeneratingColumnEventArgs(string propertyName, System.Type propertyType, System.Windows.Controls.DataGridColumn column) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } set { } } + public object PropertyDescriptor { get { throw null; } } + public string PropertyName { get { throw null; } } + public System.Type PropertyType { get { throw null; } } + } + public partial class DataGridBeginningEditEventArgs : System.EventArgs + { + public DataGridBeginningEditEventArgs(System.Windows.Controls.DataGridColumn column, System.Windows.Controls.DataGridRow row, System.Windows.RoutedEventArgs editingEventArgs) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public System.Windows.RoutedEventArgs EditingEventArgs { get { throw null; } } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public abstract partial class DataGridBoundColumn : System.Windows.Controls.DataGridColumn + { + public static readonly System.Windows.DependencyProperty EditingElementStyleProperty; + public static readonly System.Windows.DependencyProperty ElementStyleProperty; + protected DataGridBoundColumn() { } + public virtual System.Windows.Data.BindingBase Binding { get { throw null; } set { } } + public override System.Windows.Data.BindingBase ClipboardContentBinding { get { throw null; } set { } } + public System.Windows.Style EditingElementStyle { get { throw null; } set { } } + public System.Windows.Style ElementStyle { get { throw null; } set { } } + protected virtual void OnBindingChanged(System.Windows.Data.BindingBase oldBinding, System.Windows.Data.BindingBase newBinding) { } + protected override bool OnCoerceIsReadOnly(bool baseValue) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public partial class DataGridCell : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty ColumnProperty; + public static readonly System.Windows.DependencyProperty IsEditingProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyProperty; + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.RoutedEvent SelectedEvent; + public static readonly System.Windows.RoutedEvent UnselectedEvent; + public DataGridCell() { } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public bool IsEditing { get { throw null; } set { } } + public bool IsReadOnly { get { throw null; } } + public bool IsSelected { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Selected { add { } remove { } } + public event System.Windows.RoutedEventHandler Unselected { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected virtual void OnColumnChanged(System.Windows.Controls.DataGridColumn oldColumn, System.Windows.Controls.DataGridColumn newColumn) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnIsEditingChanged(bool isEditing) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + protected virtual void OnSelected(System.Windows.RoutedEventArgs e) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected virtual void OnUnselected(System.Windows.RoutedEventArgs e) { } + } + public partial class DataGridCellClipboardEventArgs : System.EventArgs + { + public DataGridCellClipboardEventArgs(object item, System.Windows.Controls.DataGridColumn column, object content) { } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public object Content { get { throw null; } set { } } + public object Item { get { throw null; } } + } + public partial class DataGridCellEditEndingEventArgs : System.EventArgs + { + public DataGridCellEditEndingEventArgs(System.Windows.Controls.DataGridColumn column, System.Windows.Controls.DataGridRow row, System.Windows.FrameworkElement editingElement, System.Windows.Controls.DataGridEditAction editAction) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public System.Windows.Controls.DataGridEditAction EditAction { get { throw null; } } + public System.Windows.FrameworkElement EditingElement { get { throw null; } } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public partial struct DataGridCellInfo + { + public DataGridCellInfo(object item, System.Windows.Controls.DataGridColumn column) { throw null; } + public DataGridCellInfo(System.Windows.Controls.DataGridCell cell) { throw null; } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public bool IsValid { get { throw null; } } + public object Item { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.DataGridCellInfo cell1, System.Windows.Controls.DataGridCellInfo cell2) { throw null; } + public static bool operator !=(System.Windows.Controls.DataGridCellInfo cell1, System.Windows.Controls.DataGridCellInfo cell2) { throw null; } + } + public partial class DataGridCellsPanel : System.Windows.Controls.VirtualizingPanel + { + public DataGridCellsPanel() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected internal override void BringIndexIntoView(int index) { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnClearChildren() { } + protected override void OnIsItemsHostChanged(bool oldIsItemsHost, bool newIsItemsHost) { } + protected override void OnItemsChanged(object sender, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { } + } + public partial class DataGridCheckBoxColumn : System.Windows.Controls.DataGridBoundColumn + { + public static readonly System.Windows.DependencyProperty IsThreeStateProperty; + public DataGridCheckBoxColumn() { } + public static System.Windows.Style DefaultEditingElementStyle { get { throw null; } } + public static System.Windows.Style DefaultElementStyle { get { throw null; } } + public bool IsThreeState { get { throw null; } set { } } + protected override System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override object PrepareCellForEdit(System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public partial struct DataGridClipboardCellContent + { + public DataGridClipboardCellContent(object item, System.Windows.Controls.DataGridColumn column, object content) { throw null; } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public object Content { get { throw null; } } + public object Item { get { throw null; } } + public override bool Equals(object data) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.DataGridClipboardCellContent clipboardCellContent1, System.Windows.Controls.DataGridClipboardCellContent clipboardCellContent2) { throw null; } + public static bool operator !=(System.Windows.Controls.DataGridClipboardCellContent clipboardCellContent1, System.Windows.Controls.DataGridClipboardCellContent clipboardCellContent2) { throw null; } + } + public enum DataGridClipboardCopyMode + { + None = 0, + ExcludeHeader = 1, + IncludeHeader = 2, + } + public abstract partial class DataGridColumn : System.Windows.DependencyObject + { + public static readonly System.Windows.DependencyProperty ActualWidthProperty; + public static readonly System.Windows.DependencyProperty CanUserReorderProperty; + public static readonly System.Windows.DependencyProperty CanUserResizeProperty; + public static readonly System.Windows.DependencyProperty CanUserSortProperty; + public static readonly System.Windows.DependencyProperty CellStyleProperty; + public static readonly System.Windows.DependencyProperty DisplayIndexProperty; + public static readonly System.Windows.DependencyProperty DragIndicatorStyleProperty; + public static readonly System.Windows.DependencyProperty HeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty HeaderStyleProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty IsAutoGeneratedProperty; + public static readonly System.Windows.DependencyProperty IsFrozenProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyProperty; + public static readonly System.Windows.DependencyProperty MaxWidthProperty; + public static readonly System.Windows.DependencyProperty MinWidthProperty; + public static readonly System.Windows.DependencyProperty SortDirectionProperty; + public static readonly System.Windows.DependencyProperty SortMemberPathProperty; + public static readonly System.Windows.DependencyProperty VisibilityProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + protected DataGridColumn() { } + public double ActualWidth { get { throw null; } } + public bool CanUserReorder { get { throw null; } set { } } + public bool CanUserResize { get { throw null; } set { } } + public bool CanUserSort { get { throw null; } set { } } + public System.Windows.Style CellStyle { get { throw null; } set { } } + public virtual System.Windows.Data.BindingBase ClipboardContentBinding { get { throw null; } set { } } + protected internal System.Windows.Controls.DataGrid DataGridOwner { get { throw null; } } + public int DisplayIndex { get { throw null; } set { } } + public System.Windows.Style DragIndicatorStyle { get { throw null; } set { } } + public object Header { get { throw null; } set { } } + public string HeaderStringFormat { get { throw null; } set { } } + public System.Windows.Style HeaderStyle { get { throw null; } set { } } + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + public bool IsAutoGenerated { get { throw null; } } + public bool IsFrozen { get { throw null; } } + public bool IsReadOnly { get { throw null; } set { } } + public double MaxWidth { get { throw null; } set { } } + public double MinWidth { get { throw null; } set { } } + public System.ComponentModel.ListSortDirection? SortDirection { get { throw null; } set { } } + public string SortMemberPath { get { throw null; } set { } } + public System.Windows.Visibility Visibility { get { throw null; } set { } } + public System.Windows.Controls.DataGridLength Width { get { throw null; } set { } } + public event System.EventHandler CopyingCellClipboardContent { add { } remove { } } + public event System.EventHandler PastingCellClipboardContent { add { } remove { } } + protected virtual void CancelCellEdit(System.Windows.FrameworkElement editingElement, object uneditedValue) { } + protected virtual bool CommitCellEdit(System.Windows.FrameworkElement editingElement) { throw null; } + protected abstract System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem); + protected abstract System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem); + public System.Windows.FrameworkElement GetCellContent(object dataItem) { throw null; } + public System.Windows.FrameworkElement GetCellContent(System.Windows.Controls.DataGridRow dataGridRow) { throw null; } + protected void NotifyPropertyChanged(string propertyName) { } + protected virtual bool OnCoerceIsReadOnly(bool baseValue) { throw null; } + public virtual object OnCopyingCellClipboardContent(object item) { throw null; } + public virtual void OnPastingCellClipboardContent(object item, object cellContent) { } + protected virtual object PrepareCellForEdit(System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + protected internal virtual void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public partial class DataGridColumnEventArgs : System.EventArgs + { + public DataGridColumnEventArgs(System.Windows.Controls.DataGridColumn column) { } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + } + public partial class DataGridColumnReorderingEventArgs : System.Windows.Controls.DataGridColumnEventArgs + { + public DataGridColumnReorderingEventArgs(System.Windows.Controls.DataGridColumn dataGridColumn) : base (default(System.Windows.Controls.DataGridColumn)) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Controls.Control DragIndicator { get { throw null; } set { } } + public System.Windows.Controls.Control DropLocationIndicator { get { throw null; } set { } } + } + public partial class DataGridComboBoxColumn : System.Windows.Controls.DataGridColumn + { + public static readonly System.Windows.DependencyProperty DisplayMemberPathProperty; + public static readonly System.Windows.DependencyProperty EditingElementStyleProperty; + public static readonly System.Windows.DependencyProperty ElementStyleProperty; + public static readonly System.Windows.DependencyProperty ItemsSourceProperty; + public static readonly System.Windows.DependencyProperty SelectedValuePathProperty; + public DataGridComboBoxColumn() { } + public override System.Windows.Data.BindingBase ClipboardContentBinding { get { throw null; } set { } } + public static System.Windows.Style DefaultEditingElementStyle { get { throw null; } } + public static System.Windows.Style DefaultElementStyle { get { throw null; } } + public string DisplayMemberPath { get { throw null; } set { } } + public System.Windows.Style EditingElementStyle { get { throw null; } set { } } + public System.Windows.Style ElementStyle { get { throw null; } set { } } + public System.Collections.IEnumerable ItemsSource { get { throw null; } set { } } + public virtual System.Windows.Data.BindingBase SelectedItemBinding { get { throw null; } set { } } + public virtual System.Windows.Data.BindingBase SelectedValueBinding { get { throw null; } set { } } + public string SelectedValuePath { get { throw null; } set { } } + public virtual System.Windows.Data.BindingBase TextBinding { get { throw null; } set { } } + public static System.Windows.ComponentResourceKey TextBlockComboBoxStyleKey { get { throw null; } } + protected override void CancelCellEdit(System.Windows.FrameworkElement editingElement, object uneditedValue) { } + protected override bool CommitCellEdit(System.Windows.FrameworkElement editingElement) { throw null; } + protected override System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override bool OnCoerceIsReadOnly(bool baseValue) { throw null; } + protected virtual void OnSelectedItemBindingChanged(System.Windows.Data.BindingBase oldBinding, System.Windows.Data.BindingBase newBinding) { } + protected virtual void OnSelectedValueBindingChanged(System.Windows.Data.BindingBase oldBinding, System.Windows.Data.BindingBase newBinding) { } + protected virtual void OnTextBindingChanged(System.Windows.Data.BindingBase oldBinding, System.Windows.Data.BindingBase newBinding) { } + protected override object PrepareCellForEdit(System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public enum DataGridEditAction + { + Cancel = 0, + Commit = 1, + } + public enum DataGridEditingUnit + { + Cell = 0, + Row = 1, + } + public enum DataGridGridLinesVisibility + { + All = 0, + Horizontal = 1, + None = 2, + Vertical = 3, + } + [System.FlagsAttribute] + public enum DataGridHeadersVisibility + { + None = 0, + Column = 1, + Row = 2, + All = 3, + } + public partial class DataGridHyperlinkColumn : System.Windows.Controls.DataGridBoundColumn + { + public static readonly System.Windows.DependencyProperty TargetNameProperty; + public DataGridHyperlinkColumn() { } + public System.Windows.Data.BindingBase ContentBinding { get { throw null; } set { } } + public static System.Windows.Style DefaultEditingElementStyle { get { throw null; } } + public static System.Windows.Style DefaultElementStyle { get { throw null; } } + public string TargetName { get { throw null; } set { } } + protected override void CancelCellEdit(System.Windows.FrameworkElement editingElement, object uneditedValue) { } + protected override bool CommitCellEdit(System.Windows.FrameworkElement editingElement) { throw null; } + protected override System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected virtual void OnContentBindingChanged(System.Windows.Data.BindingBase oldBinding, System.Windows.Data.BindingBase newBinding) { } + protected override object PrepareCellForEdit(System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Controls.DataGridLengthConverter))] + public partial struct DataGridLength : System.IEquatable + { + public DataGridLength(double pixels) { throw null; } + public DataGridLength(double value, System.Windows.Controls.DataGridLengthUnitType type) { throw null; } + public DataGridLength(double value, System.Windows.Controls.DataGridLengthUnitType type, double desiredValue, double displayValue) { throw null; } + public static System.Windows.Controls.DataGridLength Auto { get { throw null; } } + public double DesiredValue { get { throw null; } } + public double DisplayValue { get { throw null; } } + public bool IsAbsolute { get { throw null; } } + public bool IsAuto { get { throw null; } } + public bool IsSizeToCells { get { throw null; } } + public bool IsSizeToHeader { get { throw null; } } + public bool IsStar { get { throw null; } } + public static System.Windows.Controls.DataGridLength SizeToCells { get { throw null; } } + public static System.Windows.Controls.DataGridLength SizeToHeader { get { throw null; } } + public System.Windows.Controls.DataGridLengthUnitType UnitType { get { throw null; } } + public double Value { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Controls.DataGridLength other) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.DataGridLength gl1, System.Windows.Controls.DataGridLength gl2) { throw null; } + public static implicit operator System.Windows.Controls.DataGridLength (double value) { throw null; } + public static bool operator !=(System.Windows.Controls.DataGridLength gl1, System.Windows.Controls.DataGridLength gl2) { throw null; } + public override string ToString() { throw null; } + } + public partial class DataGridLengthConverter : System.ComponentModel.TypeConverter + { + public DataGridLengthConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public enum DataGridLengthUnitType + { + Auto = 0, + Pixel = 1, + SizeToCells = 2, + SizeToHeader = 3, + Star = 4, + } + public partial class DataGridPreparingCellForEditEventArgs : System.EventArgs + { + public DataGridPreparingCellForEditEventArgs(System.Windows.Controls.DataGridColumn column, System.Windows.Controls.DataGridRow row, System.Windows.RoutedEventArgs editingEventArgs, System.Windows.FrameworkElement editingElement) { } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public System.Windows.FrameworkElement EditingElement { get { throw null; } } + public System.Windows.RoutedEventArgs EditingEventArgs { get { throw null; } } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public partial class DataGridRow : System.Windows.Controls.Control + { + public static readonly System.Windows.DependencyProperty AlternationIndexProperty; + public static readonly System.Windows.DependencyProperty DetailsTemplateProperty; + public static readonly System.Windows.DependencyProperty DetailsTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty DetailsVisibilityProperty; + public static readonly System.Windows.DependencyProperty HeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderStyleProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty IsEditingProperty; + public static readonly System.Windows.DependencyProperty IsNewItemProperty; + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.DependencyProperty ItemProperty; + public static readonly System.Windows.DependencyProperty ItemsPanelProperty; + public static readonly System.Windows.RoutedEvent SelectedEvent; + public static readonly System.Windows.RoutedEvent UnselectedEvent; + public static readonly System.Windows.DependencyProperty ValidationErrorTemplateProperty; + public DataGridRow() { } + public int AlternationIndex { get { throw null; } } + public System.Windows.DataTemplate DetailsTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector DetailsTemplateSelector { get { throw null; } set { } } + public System.Windows.Visibility DetailsVisibility { get { throw null; } set { } } + public object Header { get { throw null; } set { } } + public System.Windows.Style HeaderStyle { get { throw null; } set { } } + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + public bool IsEditing { get { throw null; } } + public bool IsNewItem { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsSelected { get { throw null; } set { } } + public object Item { get { throw null; } set { } } + public System.Windows.Controls.ItemsPanelTemplate ItemsPanel { get { throw null; } set { } } + public System.Windows.Controls.ControlTemplate ValidationErrorTemplate { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Selected { add { } remove { } } + public event System.Windows.RoutedEventHandler Unselected { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + public int GetIndex() { throw null; } + public static System.Windows.Controls.DataGridRow GetRowContainingElement(System.Windows.FrameworkElement element) { throw null; } + protected internal virtual void OnColumnsChanged(System.Collections.ObjectModel.ObservableCollection columns, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnHeaderChanged(object oldHeader, object newHeader) { } + protected virtual void OnItemChanged(object oldItem, object newItem) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnSelected(System.Windows.RoutedEventArgs e) { } + protected override void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + protected virtual void OnUnselected(System.Windows.RoutedEventArgs e) { } + } + public partial class DataGridRowClipboardEventArgs : System.EventArgs + { + public DataGridRowClipboardEventArgs(object item, int startColumnDisplayIndex, int endColumnDisplayIndex, bool isColumnHeadersRow) { } + public System.Collections.Generic.List ClipboardRowContent { get { throw null; } } + public int EndColumnDisplayIndex { get { throw null; } } + public bool IsColumnHeadersRow { get { throw null; } } + public object Item { get { throw null; } } + public int StartColumnDisplayIndex { get { throw null; } } + public string FormatClipboardCellValues(string format) { throw null; } + } + public partial class DataGridRowDetailsEventArgs : System.EventArgs + { + public DataGridRowDetailsEventArgs(System.Windows.Controls.DataGridRow row, System.Windows.FrameworkElement detailsElement) { } + public System.Windows.FrameworkElement DetailsElement { get { throw null; } } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public enum DataGridRowDetailsVisibilityMode + { + Collapsed = 0, + Visible = 1, + VisibleWhenSelected = 2, + } + public partial class DataGridRowEditEndingEventArgs : System.EventArgs + { + public DataGridRowEditEndingEventArgs(System.Windows.Controls.DataGridRow row, System.Windows.Controls.DataGridEditAction editAction) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Controls.DataGridEditAction EditAction { get { throw null; } } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public partial class DataGridRowEventArgs : System.EventArgs + { + public DataGridRowEventArgs(System.Windows.Controls.DataGridRow row) { } + public System.Windows.Controls.DataGridRow Row { get { throw null; } } + } + public enum DataGridSelectionMode + { + Single = 0, + Extended = 1, + } + public enum DataGridSelectionUnit + { + Cell = 0, + FullRow = 1, + CellOrRowHeader = 2, + } + public partial class DataGridSortingEventArgs : System.Windows.Controls.DataGridColumnEventArgs + { + public DataGridSortingEventArgs(System.Windows.Controls.DataGridColumn column) : base (default(System.Windows.Controls.DataGridColumn)) { } + public bool Handled { get { throw null; } set { } } + } + public delegate void DataGridSortingEventHandler(object sender, System.Windows.Controls.DataGridSortingEventArgs e); + public partial class DataGridTemplateColumn : System.Windows.Controls.DataGridColumn + { + public static readonly System.Windows.DependencyProperty CellEditingTemplateProperty; + public static readonly System.Windows.DependencyProperty CellEditingTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty CellTemplateProperty; + public static readonly System.Windows.DependencyProperty CellTemplateSelectorProperty; + public DataGridTemplateColumn() { } + public System.Windows.DataTemplate CellEditingTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector CellEditingTemplateSelector { get { throw null; } set { } } + public System.Windows.DataTemplate CellTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector CellTemplateSelector { get { throw null; } set { } } + protected override System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public partial class DataGridTextColumn : System.Windows.Controls.DataGridBoundColumn + { + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public DataGridTextColumn() { } + public static System.Windows.Style DefaultEditingElementStyle { get { throw null; } } + public static System.Windows.Style DefaultElementStyle { get { throw null; } } + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + protected override void CancelCellEdit(System.Windows.FrameworkElement editingElement, object uneditedValue) { } + protected override bool CommitCellEdit(System.Windows.FrameworkElement editingElement) { throw null; } + protected override System.Windows.FrameworkElement GenerateEditingElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override System.Windows.FrameworkElement GenerateElement(System.Windows.Controls.DataGridCell cell, object dataItem) { throw null; } + protected override object PrepareCellForEdit(System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs) { throw null; } + protected internal override void RefreshCellContent(System.Windows.FrameworkElement element, string propertyName) { } + } + public partial class DataTemplateSelector + { + public DataTemplateSelector() { } + public virtual System.Windows.DataTemplate SelectTemplate(object item, System.Windows.DependencyObject container) { throw null; } + } + [System.Windows.TemplatePartAttribute(Name="PART_Button", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_Popup", Type=typeof(System.Windows.Controls.Primitives.Popup))] + [System.Windows.TemplatePartAttribute(Name="PART_Root", Type=typeof(System.Windows.Controls.Grid))] + [System.Windows.TemplatePartAttribute(Name="PART_TextBox", Type=typeof(System.Windows.Controls.Primitives.DatePickerTextBox))] + public partial class DatePicker : System.Windows.Controls.Control + { + public static readonly System.Windows.DependencyProperty CalendarStyleProperty; + public static readonly System.Windows.DependencyProperty DisplayDateEndProperty; + public static readonly System.Windows.DependencyProperty DisplayDateProperty; + public static readonly System.Windows.DependencyProperty DisplayDateStartProperty; + public static readonly System.Windows.DependencyProperty FirstDayOfWeekProperty; + public static readonly System.Windows.DependencyProperty IsDropDownOpenProperty; + public static readonly System.Windows.DependencyProperty IsTodayHighlightedProperty; + public static readonly System.Windows.RoutedEvent SelectedDateChangedEvent; + public static readonly System.Windows.DependencyProperty SelectedDateFormatProperty; + public static readonly System.Windows.DependencyProperty SelectedDateProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + public DatePicker() { } + public System.Windows.Controls.CalendarBlackoutDatesCollection BlackoutDates { get { throw null; } } + public System.Windows.Style CalendarStyle { get { throw null; } set { } } + public System.DateTime DisplayDate { get { throw null; } set { } } + public System.DateTime? DisplayDateEnd { get { throw null; } set { } } + public System.DateTime? DisplayDateStart { get { throw null; } set { } } + public System.DayOfWeek FirstDayOfWeek { get { throw null; } set { } } + protected internal override bool HasEffectiveKeyboardFocus { get { throw null; } } + public bool IsDropDownOpen { get { throw null; } set { } } + public bool IsTodayHighlighted { get { throw null; } set { } } + public System.DateTime? SelectedDate { get { throw null; } set { } } + public System.Windows.Controls.DatePickerFormat SelectedDateFormat { get { throw null; } set { } } + public string Text { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler CalendarClosed { add { } remove { } } + public event System.Windows.RoutedEventHandler CalendarOpened { add { } remove { } } + public event System.EventHandler DateValidationError { add { } remove { } } + public event System.EventHandler SelectedDateChanged { add { } remove { } } + public override void OnApplyTemplate() { } + protected virtual void OnCalendarClosed(System.Windows.RoutedEventArgs e) { } + protected virtual void OnCalendarOpened(System.Windows.RoutedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDateValidationError(System.Windows.Controls.DatePickerDateValidationErrorEventArgs e) { } + protected virtual void OnSelectedDateChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + public override string ToString() { throw null; } + } + public partial class DatePickerDateValidationErrorEventArgs : System.EventArgs + { + public DatePickerDateValidationErrorEventArgs(System.Exception exception, string text) { } + public System.Exception Exception { get { throw null; } } + public string Text { get { throw null; } } + public bool ThrowException { get { throw null; } set { } } + } + public enum DatePickerFormat + { + Long = 0, + Short = 1, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public partial class Decorator : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public Decorator() { } + [System.ComponentModel.DefaultValueAttribute(null)] + public virtual System.Windows.UIElement Child { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + public abstract partial class DefinitionBase : System.Windows.FrameworkContentElement + { + internal DefinitionBase() { } + public static readonly System.Windows.DependencyProperty SharedSizeGroupProperty; + public string SharedSizeGroup { get { throw null; } set { } } + } + public enum Dock + { + Left = 0, + Top = 1, + Right = 2, + Bottom = 3, + } + public partial class DockPanel : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty DockProperty; + public static readonly System.Windows.DependencyProperty LastChildFillProperty; + public DockPanel() { } + public bool LastChildFill { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static System.Windows.Controls.Dock GetDock(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public static void SetDock(System.Windows.UIElement element, System.Windows.Controls.Dock dock) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_ContentHost", Type=typeof(System.Windows.Controls.ScrollViewer))] + [System.Windows.TemplatePartAttribute(Name="PART_FindToolBarHost", Type=typeof(System.Windows.Controls.ContentControl))] + public partial class DocumentViewer : System.Windows.Controls.Primitives.DocumentViewerBase + { + public static readonly System.Windows.DependencyProperty CanDecreaseZoomProperty; + public static readonly System.Windows.DependencyProperty CanIncreaseZoomProperty; + public static readonly System.Windows.DependencyProperty CanMoveDownProperty; + public static readonly System.Windows.DependencyProperty CanMoveLeftProperty; + public static readonly System.Windows.DependencyProperty CanMoveRightProperty; + public static readonly System.Windows.DependencyProperty CanMoveUpProperty; + public static readonly System.Windows.DependencyProperty ExtentHeightProperty; + public static readonly System.Windows.DependencyProperty ExtentWidthProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty HorizontalPageSpacingProperty; + public static readonly System.Windows.DependencyProperty MaxPagesAcrossProperty; + public static readonly System.Windows.DependencyProperty ShowPageBordersProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public static readonly System.Windows.DependencyProperty VerticalPageSpacingProperty; + public static readonly System.Windows.DependencyProperty ViewportHeightProperty; + public static readonly System.Windows.DependencyProperty ViewportWidthProperty; + public static readonly System.Windows.DependencyProperty ZoomProperty; + public DocumentViewer() { } + public bool CanDecreaseZoom { get { throw null; } } + public bool CanIncreaseZoom { get { throw null; } } + public bool CanMoveDown { get { throw null; } } + public bool CanMoveLeft { get { throw null; } } + public bool CanMoveRight { get { throw null; } } + public bool CanMoveUp { get { throw null; } } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + public static System.Windows.Input.RoutedUICommand FitToHeightCommand { get { throw null; } } + public static System.Windows.Input.RoutedUICommand FitToMaxPagesAcrossCommand { get { throw null; } } + public static System.Windows.Input.RoutedUICommand FitToWidthCommand { get { throw null; } } + public double HorizontalOffset { get { throw null; } set { } } + public double HorizontalPageSpacing { get { throw null; } set { } } + public int MaxPagesAcross { get { throw null; } set { } } + public bool ShowPageBorders { get { throw null; } set { } } + public double VerticalOffset { get { throw null; } set { } } + public double VerticalPageSpacing { get { throw null; } set { } } + public double ViewportHeight { get { throw null; } } + public double ViewportWidth { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ViewThumbnailsCommand { get { throw null; } } + public double Zoom { get { throw null; } set { } } + public void DecreaseZoom() { } + public void Find() { } + public void FitToHeight() { } + public void FitToMaxPagesAcross() { } + public void FitToMaxPagesAcross(int pagesAcross) { } + public void FitToWidth() { } + protected override System.Collections.ObjectModel.ReadOnlyCollection GetPageViewsCollection(out bool changed) { throw null; } + public void IncreaseZoom() { } + public void MoveDown() { } + public void MoveLeft() { } + public void MoveRight() { } + public void MoveUp() { } + public override void OnApplyTemplate() { } + protected override void OnBringIntoView(System.Windows.DependencyObject element, System.Windows.Rect rect, int pageNumber) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDecreaseZoomCommand() { } + protected override void OnDocumentChanged() { } + protected virtual void OnFindCommand() { } + protected override void OnFirstPageCommand() { } + protected virtual void OnFitToHeightCommand() { } + protected virtual void OnFitToMaxPagesAcrossCommand() { } + protected virtual void OnFitToMaxPagesAcrossCommand(int pagesAcross) { } + protected virtual void OnFitToWidthCommand() { } + protected override void OnGoToPageCommand(int pageNumber) { } + protected virtual void OnIncreaseZoomCommand() { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLastPageCommand() { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnMoveDownCommand() { } + protected virtual void OnMoveLeftCommand() { } + protected virtual void OnMoveRightCommand() { } + protected virtual void OnMoveUpCommand() { } + protected override void OnNextPageCommand() { } + protected override void OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected override void OnPreviousPageCommand() { } + protected virtual void OnScrollPageDownCommand() { } + protected virtual void OnScrollPageLeftCommand() { } + protected virtual void OnScrollPageRightCommand() { } + protected virtual void OnScrollPageUpCommand() { } + protected virtual void OnViewThumbnailsCommand() { } + public void ScrollPageDown() { } + public void ScrollPageLeft() { } + public void ScrollPageRight() { } + public void ScrollPageUp() { } + public void ViewThumbnails() { } + } + public sealed partial class ExceptionValidationRule : System.Windows.Controls.ValidationRule + { + public ExceptionValidationRule() { } + public override System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo) { throw null; } + } + public enum ExpandDirection + { + Down = 0, + Up = 1, + Left = 2, + Right = 3, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class Expander : System.Windows.Controls.HeaderedContentControl + { + public static readonly System.Windows.RoutedEvent CollapsedEvent; + public static readonly System.Windows.DependencyProperty ExpandDirectionProperty; + public static readonly System.Windows.RoutedEvent ExpandedEvent; + public static readonly System.Windows.DependencyProperty IsExpandedProperty; + public Expander() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.ExpandDirection ExpandDirection { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsExpanded { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Collapsed { add { } remove { } } + public event System.Windows.RoutedEventHandler Expanded { add { } remove { } } + public override void OnApplyTemplate() { } + protected virtual void OnCollapsed() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnExpanded() { } + } + [System.Windows.TemplatePartAttribute(Name="PART_FindToolBarHost", Type=typeof(System.Windows.Controls.Decorator))] + public partial class FlowDocumentPageViewer : System.Windows.Controls.Primitives.DocumentViewerBase + { + public static readonly System.Windows.DependencyProperty CanDecreaseZoomProperty; + protected static readonly System.Windows.DependencyPropertyKey CanDecreaseZoomPropertyKey; + public static readonly System.Windows.DependencyProperty CanIncreaseZoomProperty; + protected static readonly System.Windows.DependencyPropertyKey CanIncreaseZoomPropertyKey; + public static readonly System.Windows.DependencyProperty IsInactiveSelectionHighlightEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty MaxZoomProperty; + public static readonly System.Windows.DependencyProperty MinZoomProperty; + public static readonly System.Windows.DependencyProperty SelectionBrushProperty; + public static readonly System.Windows.DependencyProperty SelectionOpacityProperty; + public static readonly System.Windows.DependencyProperty ZoomIncrementProperty; + public static readonly System.Windows.DependencyProperty ZoomProperty; + public FlowDocumentPageViewer() { } + public virtual bool CanDecreaseZoom { get { throw null; } } + public virtual bool CanIncreaseZoom { get { throw null; } } + public bool IsInactiveSelectionHighlightEnabled { get { throw null; } set { } } + public bool IsSelectionActive { get { throw null; } } + public double MaxZoom { get { throw null; } set { } } + public double MinZoom { get { throw null; } set { } } + public System.Windows.Documents.TextSelection Selection { get { throw null; } } + public System.Windows.Media.Brush SelectionBrush { get { throw null; } set { } } + public double SelectionOpacity { get { throw null; } set { } } + public double Zoom { get { throw null; } set { } } + public double ZoomIncrement { get { throw null; } set { } } + public void DecreaseZoom() { } + public void Find() { } + public void IncreaseZoom() { } + public override void OnApplyTemplate() { } + protected override void OnCancelPrintCommand() { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDecreaseZoomCommand() { } + protected override void OnDocumentChanged() { } + protected virtual void OnFindCommand() { } + protected override void OnFirstPageCommand() { } + protected override void OnGoToPageCommand(int pageNumber) { } + protected virtual void OnIncreaseZoomCommand() { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLastPageCommand() { } + protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected override void OnNextPageCommand() { } + protected override void OnPageViewsChanged() { } + protected override void OnPreviousPageCommand() { } + protected override void OnPrintCommand() { } + protected virtual void OnPrintCompleted() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Document")] + [System.Windows.TemplatePartAttribute(Name="PART_ContentHost", Type=typeof(System.Windows.Controls.Decorator))] + [System.Windows.TemplatePartAttribute(Name="PART_FindToolBarHost", Type=typeof(System.Windows.Controls.Decorator))] + public partial class FlowDocumentReader : System.Windows.Controls.Control, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CanDecreaseZoomProperty; + public static readonly System.Windows.DependencyProperty CanGoToNextPageProperty; + public static readonly System.Windows.DependencyProperty CanGoToPreviousPageProperty; + public static readonly System.Windows.DependencyProperty CanIncreaseZoomProperty; + public static readonly System.Windows.DependencyProperty DocumentProperty; + public static readonly System.Windows.DependencyProperty IsFindEnabledProperty; + public static readonly System.Windows.DependencyProperty IsInactiveSelectionHighlightEnabledProperty; + public static readonly System.Windows.DependencyProperty IsPageViewEnabledProperty; + public static readonly System.Windows.DependencyProperty IsPrintEnabledProperty; + public static readonly System.Windows.DependencyProperty IsScrollViewEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty IsTwoPageViewEnabledProperty; + public static readonly System.Windows.DependencyProperty MaxZoomProperty; + public static readonly System.Windows.DependencyProperty MinZoomProperty; + public static readonly System.Windows.DependencyProperty PageCountProperty; + public static readonly System.Windows.DependencyProperty PageNumberProperty; + public static readonly System.Windows.DependencyProperty SelectionBrushProperty; + public static readonly System.Windows.DependencyProperty SelectionOpacityProperty; + public static readonly System.Windows.Input.RoutedUICommand SwitchViewingModeCommand; + public static readonly System.Windows.DependencyProperty ViewingModeProperty; + public static readonly System.Windows.DependencyProperty ZoomIncrementProperty; + public static readonly System.Windows.DependencyProperty ZoomProperty; + public FlowDocumentReader() { } + public bool CanDecreaseZoom { get { throw null; } } + public bool CanGoToNextPage { get { throw null; } } + public bool CanGoToPreviousPage { get { throw null; } } + public bool CanIncreaseZoom { get { throw null; } } + public System.Windows.Documents.FlowDocument Document { get { throw null; } set { } } + public bool IsFindEnabled { get { throw null; } set { } } + public bool IsInactiveSelectionHighlightEnabled { get { throw null; } set { } } + public bool IsPageViewEnabled { get { throw null; } set { } } + public bool IsPrintEnabled { get { throw null; } set { } } + public bool IsScrollViewEnabled { get { throw null; } set { } } + public bool IsSelectionActive { get { throw null; } } + public bool IsTwoPageViewEnabled { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public double MaxZoom { get { throw null; } set { } } + public double MinZoom { get { throw null; } set { } } + public int PageCount { get { throw null; } } + public int PageNumber { get { throw null; } } + public System.Windows.Documents.TextSelection Selection { get { throw null; } } + public System.Windows.Media.Brush SelectionBrush { get { throw null; } set { } } + public double SelectionOpacity { get { throw null; } set { } } + public System.Windows.Controls.FlowDocumentReaderViewingMode ViewingMode { get { throw null; } set { } } + public double Zoom { get { throw null; } set { } } + public double ZoomIncrement { get { throw null; } set { } } + public void CancelPrint() { } + public bool CanGoToPage(int pageNumber) { throw null; } + public void DecreaseZoom() { } + public void Find() { } + public void IncreaseZoom() { } + public override void OnApplyTemplate() { } + protected virtual void OnCancelPrintCommand() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDecreaseZoomCommand() { } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpiScaleInfo, System.Windows.DpiScale newDpiScaleInfo) { } + protected virtual void OnFindCommand() { } + protected virtual void OnIncreaseZoomCommand() { } + protected override void OnInitialized(System.EventArgs e) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnPrintCommand() { } + protected virtual void OnPrintCompleted() { } + protected virtual void OnSwitchViewingModeCommand(System.Windows.Controls.FlowDocumentReaderViewingMode viewingMode) { } + public void Print() { } + public void SwitchViewingMode(System.Windows.Controls.FlowDocumentReaderViewingMode viewingMode) { } + protected virtual void SwitchViewingModeCore(System.Windows.Controls.FlowDocumentReaderViewingMode viewingMode) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public enum FlowDocumentReaderViewingMode + { + Page = 0, + TwoPage = 1, + Scroll = 2, + } + [System.Windows.Markup.ContentPropertyAttribute("Document")] + [System.Windows.TemplatePartAttribute(Name="PART_ContentHost", Type=typeof(System.Windows.Controls.ScrollViewer))] + [System.Windows.TemplatePartAttribute(Name="PART_FindToolBarHost", Type=typeof(System.Windows.Controls.Decorator))] + [System.Windows.TemplatePartAttribute(Name="PART_ToolBarHost", Type=typeof(System.Windows.Controls.Decorator))] + public partial class FlowDocumentScrollViewer : System.Windows.Controls.Control, System.IServiceProvider, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CanDecreaseZoomProperty; + public static readonly System.Windows.DependencyProperty CanIncreaseZoomProperty; + public static readonly System.Windows.DependencyProperty DocumentProperty; + public static readonly System.Windows.DependencyProperty HorizontalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty IsInactiveSelectionHighlightEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty IsSelectionEnabledProperty; + public static readonly System.Windows.DependencyProperty IsToolBarVisibleProperty; + public static readonly System.Windows.DependencyProperty MaxZoomProperty; + public static readonly System.Windows.DependencyProperty MinZoomProperty; + public static readonly System.Windows.DependencyProperty SelectionBrushProperty; + public static readonly System.Windows.DependencyProperty SelectionOpacityProperty; + public static readonly System.Windows.DependencyProperty VerticalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty ZoomIncrementProperty; + public static readonly System.Windows.DependencyProperty ZoomProperty; + public FlowDocumentScrollViewer() { } + public bool CanDecreaseZoom { get { throw null; } } + public bool CanIncreaseZoom { get { throw null; } } + public System.Windows.Documents.FlowDocument Document { get { throw null; } set { } } + public System.Windows.Controls.ScrollBarVisibility HorizontalScrollBarVisibility { get { throw null; } set { } } + public bool IsInactiveSelectionHighlightEnabled { get { throw null; } set { } } + public bool IsSelectionActive { get { throw null; } } + public bool IsSelectionEnabled { get { throw null; } set { } } + public bool IsToolBarVisible { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public double MaxZoom { get { throw null; } set { } } + public double MinZoom { get { throw null; } set { } } + public System.Windows.Documents.TextSelection Selection { get { throw null; } } + public System.Windows.Media.Brush SelectionBrush { get { throw null; } set { } } + public double SelectionOpacity { get { throw null; } set { } } + public System.Windows.Controls.ScrollBarVisibility VerticalScrollBarVisibility { get { throw null; } set { } } + public double Zoom { get { throw null; } set { } } + public double ZoomIncrement { get { throw null; } set { } } + public void CancelPrint() { } + public void DecreaseZoom() { } + public void Find() { } + public void IncreaseZoom() { } + public override void OnApplyTemplate() { } + protected virtual void OnCancelPrintCommand() { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDecreaseZoomCommand() { } + protected virtual void OnFindCommand() { } + protected virtual void OnIncreaseZoomCommand() { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected virtual void OnPrintCommand() { } + protected virtual void OnPrintCompleted() { } + public void Print() { } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.ComponentModel.DefaultEventAttribute("Navigated")] + [System.ComponentModel.DefaultPropertyAttribute("Source")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.Markup.ContentPropertyAttribute] + [System.Windows.TemplatePartAttribute(Name="PART_FrameCP", Type=typeof(System.Windows.Controls.ContentPresenter))] + public partial class Frame : System.Windows.Controls.ContentControl, System.Windows.Markup.IAddChild, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty BackStackProperty; + public static readonly System.Windows.DependencyProperty CanGoBackProperty; + public static readonly System.Windows.DependencyProperty CanGoForwardProperty; + public static readonly System.Windows.DependencyProperty ForwardStackProperty; + public static readonly System.Windows.DependencyProperty JournalOwnershipProperty; + public static readonly System.Windows.DependencyProperty NavigationUIVisibilityProperty; + public static readonly System.Windows.DependencyProperty SandboxExternalContentProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public Frame() { } + public System.Collections.IEnumerable BackStack { get { throw null; } } + protected virtual System.Uri BaseUri { get { throw null; } set { } } + public bool CanGoBack { get { throw null; } } + public bool CanGoForward { get { throw null; } } + public System.Uri CurrentSource { get { throw null; } } + public System.Collections.IEnumerable ForwardStack { get { throw null; } } + public System.Windows.Navigation.JournalOwnership JournalOwnership { get { throw null; } set { } } + public System.Windows.Navigation.NavigationService NavigationService { get { throw null; } } + public System.Windows.Navigation.NavigationUIVisibility NavigationUIVisibility { get { throw null; } set { } } + public bool SandboxExternalContent { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public event System.EventHandler ContentRendered { add { } remove { } } + public event System.Windows.Navigation.FragmentNavigationEventHandler FragmentNavigation { add { } remove { } } + public event System.Windows.Navigation.LoadCompletedEventHandler LoadCompleted { add { } remove { } } + public event System.Windows.Navigation.NavigatedEventHandler Navigated { add { } remove { } } + public event System.Windows.Navigation.NavigatingCancelEventHandler Navigating { add { } remove { } } + public event System.Windows.Navigation.NavigationFailedEventHandler NavigationFailed { add { } remove { } } + public event System.Windows.Navigation.NavigationProgressEventHandler NavigationProgress { add { } remove { } } + public event System.Windows.Navigation.NavigationStoppedEventHandler NavigationStopped { add { } remove { } } + public void AddBackEntry(System.Windows.Navigation.CustomContentState state) { } + protected override void AddChild(object value) { } + protected override void AddText(string text) { } + public void GoBack() { } + public void GoForward() { } + public bool Navigate(object content) { throw null; } + public bool Navigate(object content, object extraData) { throw null; } + public bool Navigate(System.Uri source) { throw null; } + public bool Navigate(System.Uri source, object extraData) { throw null; } + public override void OnApplyTemplate() { } + protected virtual void OnContentRendered(System.EventArgs args) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + public void Refresh() { } + public System.Windows.Navigation.JournalEntry RemoveBackEntry() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool ShouldSerializeContent() { throw null; } + public void StopLoading() { } + } + public partial class Grid : System.Windows.Controls.Panel, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty ColumnProperty; + public static readonly System.Windows.DependencyProperty ColumnSpanProperty; + public static readonly System.Windows.DependencyProperty IsSharedSizeScopeProperty; + public static readonly System.Windows.DependencyProperty RowProperty; + public static readonly System.Windows.DependencyProperty RowSpanProperty; + public static readonly System.Windows.DependencyProperty ShowGridLinesProperty; + public Grid() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.ColumnDefinitionCollection ColumnDefinitions { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.RowDefinitionCollection RowDefinitions { get { throw null; } } + public bool ShowGridLines { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static int GetColumn(System.Windows.UIElement element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static int GetColumnSpan(System.Windows.UIElement element) { throw null; } + public static bool GetIsSharedSizeScope(System.Windows.UIElement element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static int GetRow(System.Windows.UIElement element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static int GetRowSpan(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected internal override void OnVisualChildrenChanged(System.Windows.DependencyObject visualAdded, System.Windows.DependencyObject visualRemoved) { } + public static void SetColumn(System.Windows.UIElement element, int value) { } + public static void SetColumnSpan(System.Windows.UIElement element, int value) { } + public static void SetIsSharedSizeScope(System.Windows.UIElement element, bool value) { } + public static void SetRow(System.Windows.UIElement element, int value) { } + public static void SetRowSpan(System.Windows.UIElement element, int value) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeColumnDefinitions() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeRowDefinitions() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public enum GridResizeBehavior + { + BasedOnAlignment = 0, + CurrentAndNext = 1, + PreviousAndCurrent = 2, + PreviousAndNext = 3, + } + public enum GridResizeDirection + { + Auto = 0, + Columns = 1, + Rows = 2, + } + [System.Windows.StyleTypedPropertyAttribute(Property="PreviewStyle", StyleTargetType=typeof(System.Windows.Controls.Control))] + public partial class GridSplitter : System.Windows.Controls.Primitives.Thumb + { + public static readonly System.Windows.DependencyProperty DragIncrementProperty; + public static readonly System.Windows.DependencyProperty KeyboardIncrementProperty; + public static readonly System.Windows.DependencyProperty PreviewStyleProperty; + public static readonly System.Windows.DependencyProperty ResizeBehaviorProperty; + public static readonly System.Windows.DependencyProperty ResizeDirectionProperty; + public static readonly System.Windows.DependencyProperty ShowsPreviewProperty; + public GridSplitter() { } + public double DragIncrement { get { throw null; } set { } } + public double KeyboardIncrement { get { throw null; } set { } } + public System.Windows.Style PreviewStyle { get { throw null; } set { } } + public System.Windows.Controls.GridResizeBehavior ResizeBehavior { get { throw null; } set { } } + public System.Windows.Controls.GridResizeDirection ResizeDirection { get { throw null; } set { } } + public bool ShowsPreview { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected internal override void OnRenderSizeChanged(System.Windows.SizeChangedInfo sizeInfo) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Columns")] + [System.Windows.StyleTypedPropertyAttribute(Property="ColumnHeaderContainerStyle", StyleTargetType=typeof(System.Windows.Controls.GridViewColumnHeader))] + public partial class GridView : System.Windows.Controls.ViewBase, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty AllowsColumnReorderProperty; + public static readonly System.Windows.DependencyProperty ColumnCollectionProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderContainerStyleProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderContextMenuProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderToolTipProperty; + public GridView() { } + public bool AllowsColumnReorder { get { throw null; } set { } } + public System.Windows.Style ColumnHeaderContainerStyle { get { throw null; } set { } } + public System.Windows.Controls.ContextMenu ColumnHeaderContextMenu { get { throw null; } set { } } + public string ColumnHeaderStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate ColumnHeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector ColumnHeaderTemplateSelector { get { throw null; } set { } } + public object ColumnHeaderToolTip { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.GridViewColumnCollection Columns { get { throw null; } } + protected internal override object DefaultStyleKey { get { throw null; } } + public static System.Windows.ResourceKey GridViewItemContainerStyleKey { get { throw null; } } + public static System.Windows.ResourceKey GridViewScrollViewerStyleKey { get { throw null; } } + public static System.Windows.ResourceKey GridViewStyleKey { get { throw null; } } + protected internal override object ItemContainerDefaultStyleKey { get { throw null; } } + protected virtual void AddChild(object column) { } + protected virtual void AddText(string text) { } + protected internal override void ClearItem(System.Windows.Controls.ListViewItem item) { } + protected internal override System.Windows.Automation.Peers.IViewAutomationPeer GetAutomationPeer(System.Windows.Controls.ListView parent) { throw null; } + public static System.Windows.Controls.GridViewColumnCollection GetColumnCollection(System.Windows.DependencyObject element) { throw null; } + protected internal override void PrepareItem(System.Windows.Controls.ListViewItem item) { } + public static void SetColumnCollection(System.Windows.DependencyObject element, System.Windows.Controls.GridViewColumnCollection collection) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public static bool ShouldSerializeColumnCollection(System.Windows.DependencyObject obj) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object column) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + public override string ToString() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Header")] + [System.Windows.StyleTypedPropertyAttribute(Property="HeaderContainerStyle", StyleTargetType=typeof(System.Windows.Controls.GridViewColumnHeader))] + public partial class GridViewColumn : System.Windows.DependencyObject, System.ComponentModel.INotifyPropertyChanged + { + public static readonly System.Windows.DependencyProperty CellTemplateProperty; + public static readonly System.Windows.DependencyProperty CellTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty HeaderContainerStyleProperty; + public static readonly System.Windows.DependencyProperty HeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public GridViewColumn() { } + public double ActualWidth { get { throw null; } } + public System.Windows.DataTemplate CellTemplate { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector CellTemplateSelector { get { throw null; } set { } } + public System.Windows.Data.BindingBase DisplayMemberBinding { get { throw null; } set { } } + public object Header { get { throw null; } set { } } + public System.Windows.Style HeaderContainerStyle { get { throw null; } set { } } + public string HeaderStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double Width { get { throw null; } set { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + protected virtual void OnHeaderStringFormatChanged(string oldHeaderStringFormat, string newHeaderStringFormat) { } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + public override string ToString() { throw null; } + } + public partial class GridViewColumnCollection : System.Collections.ObjectModel.ObservableCollection + { + public GridViewColumnCollection() { } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.Windows.Controls.GridViewColumn column) { } + protected override void MoveItem(int oldIndex, int newIndex) { } + protected override void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.Windows.Controls.GridViewColumn column) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_FloatingHeaderCanvas", Type=typeof(System.Windows.Controls.Canvas))] + [System.Windows.TemplatePartAttribute(Name="PART_HeaderGripper", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + public partial class GridViewColumnHeader : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.DependencyProperty ColumnProperty; + public static readonly System.Windows.DependencyProperty RoleProperty; + public GridViewColumnHeader() { } + public System.Windows.Controls.GridViewColumn Column { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.GridViewColumnHeaderRole Role { get { throw null; } } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + public override void OnApplyTemplate() { } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal override void OnRenderSizeChanged(System.Windows.SizeChangedInfo sizeInfo) { } + protected internal override bool ShouldSerializeProperty(System.Windows.DependencyProperty dp) { throw null; } + } + public enum GridViewColumnHeaderRole + { + Normal = 0, + Floating = 1, + Padding = 2, + } + [System.Windows.StyleTypedPropertyAttribute(Property="ColumnHeaderContainerStyle", StyleTargetType=typeof(System.Windows.Controls.GridViewColumnHeader))] + public partial class GridViewHeaderRowPresenter : System.Windows.Controls.Primitives.GridViewRowPresenterBase + { + public static readonly System.Windows.DependencyProperty AllowsColumnReorderProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderContainerStyleProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderContextMenuProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty ColumnHeaderToolTipProperty; + public GridViewHeaderRowPresenter() { } + public bool AllowsColumnReorder { get { throw null; } set { } } + public System.Windows.Style ColumnHeaderContainerStyle { get { throw null; } set { } } + public System.Windows.Controls.ContextMenu ColumnHeaderContextMenu { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public string ColumnHeaderStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate ColumnHeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector ColumnHeaderTemplateSelector { get { throw null; } set { } } + public object ColumnHeaderToolTip { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + } + public partial class GridViewRowPresenter : System.Windows.Controls.Primitives.GridViewRowPresenterBase + { + public static readonly System.Windows.DependencyProperty ContentProperty; + public GridViewRowPresenter() { } + public object Content { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public override string ToString() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class GroupBox : System.Windows.Controls.HeaderedContentControl + { + public GroupBox() { } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public partial class GroupItem : System.Windows.Controls.ContentControl, System.Windows.Controls.Primitives.IContainItemStorage, System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo + { + public GroupItem() { } + System.Windows.Controls.HierarchicalVirtualizationConstraints System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.Constraints { get { throw null; } set { } } + System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.HeaderDesiredSizes { get { throw null; } } + bool System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.InBackgroundLayout { get { throw null; } set { } } + System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.ItemDesiredSizes { get { throw null; } set { } } + System.Windows.Controls.Panel System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.ItemsHost { get { throw null; } } + bool System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.MustDisableVirtualization { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + void System.Windows.Controls.Primitives.IContainItemStorage.Clear() { } + void System.Windows.Controls.Primitives.IContainItemStorage.ClearItemValue(object item, System.Windows.DependencyProperty dp) { } + void System.Windows.Controls.Primitives.IContainItemStorage.ClearValue(System.Windows.DependencyProperty dp) { } + object System.Windows.Controls.Primitives.IContainItemStorage.ReadItemValue(object item, System.Windows.DependencyProperty dp) { throw null; } + void System.Windows.Controls.Primitives.IContainItemStorage.StoreItemValue(object item, System.Windows.DependencyProperty dp, object value) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class GroupStyle : System.ComponentModel.INotifyPropertyChanged + { + public static readonly System.Windows.Controls.ItemsPanelTemplate DefaultGroupPanel; + public GroupStyle() { } + [System.ComponentModel.DefaultValueAttribute(0)] + public int AlternationCount { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Style ContainerStyle { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Controls.StyleSelector ContainerStyleSelector { get { throw null; } set { } } + public static System.Windows.Controls.GroupStyle Default { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string HeaderStringFormat { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool HidesIfEmpty { get { throw null; } set { } } + public System.Windows.Controls.ItemsPanelTemplate Panel { get { throw null; } set { } } + protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + } + public delegate System.Windows.Controls.GroupStyle GroupStyleSelector(System.Windows.Data.CollectionViewGroup group, int level); + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + public partial class HeaderedContentControl : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty HasHeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateSelectorProperty; + public HeaderedContentControl() { } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.BrowsableAttribute(false)] + public bool HasHeader { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Content")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Label)] + public object Header { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string HeaderStringFormat { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Content")] + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Content")] + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected virtual void OnHeaderChanged(object oldHeader, object newHeader) { } + protected virtual void OnHeaderStringFormatChanged(string oldHeaderStringFormat, string newHeaderStringFormat) { } + protected virtual void OnHeaderTemplateChanged(System.Windows.DataTemplate oldHeaderTemplate, System.Windows.DataTemplate newHeaderTemplate) { } + protected virtual void OnHeaderTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldHeaderTemplateSelector, System.Windows.Controls.DataTemplateSelector newHeaderTemplateSelector) { } + public override string ToString() { throw null; } + } + [System.ComponentModel.DefaultPropertyAttribute("Header")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Menu)] + public partial class HeaderedItemsControl : System.Windows.Controls.ItemsControl + { + public static readonly System.Windows.DependencyProperty HasHeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderProperty; + public static readonly System.Windows.DependencyProperty HeaderStringFormatProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateProperty; + public static readonly System.Windows.DependencyProperty HeaderTemplateSelectorProperty; + public HeaderedItemsControl() { } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.BrowsableAttribute(false)] + public bool HasHeader { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + public object Header { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string HeaderStringFormat { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.DataTemplate HeaderTemplate { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.Controls.DataTemplateSelector HeaderTemplateSelector { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected virtual void OnHeaderChanged(object oldHeader, object newHeader) { } + protected virtual void OnHeaderStringFormatChanged(string oldHeaderStringFormat, string newHeaderStringFormat) { } + protected virtual void OnHeaderTemplateChanged(System.Windows.DataTemplate oldHeaderTemplate, System.Windows.DataTemplate newHeaderTemplate) { } + protected virtual void OnHeaderTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldHeaderTemplateSelector, System.Windows.Controls.DataTemplateSelector newHeaderTemplateSelector) { } + public override string ToString() { throw null; } + } + public partial struct HierarchicalVirtualizationConstraints + { + public HierarchicalVirtualizationConstraints(System.Windows.Controls.VirtualizationCacheLength cacheLength, System.Windows.Controls.VirtualizationCacheLengthUnit cacheLengthUnit, System.Windows.Rect viewport) { throw null; } + public System.Windows.Controls.VirtualizationCacheLength CacheLength { get { throw null; } } + public System.Windows.Controls.VirtualizationCacheLengthUnit CacheLengthUnit { get { throw null; } } + public System.Windows.Rect Viewport { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.Controls.HierarchicalVirtualizationConstraints comparisonConstraints) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.HierarchicalVirtualizationConstraints constraints1, System.Windows.Controls.HierarchicalVirtualizationConstraints constraints2) { throw null; } + public static bool operator !=(System.Windows.Controls.HierarchicalVirtualizationConstraints constraints1, System.Windows.Controls.HierarchicalVirtualizationConstraints constraints2) { throw null; } + } + public partial struct HierarchicalVirtualizationHeaderDesiredSizes + { + public HierarchicalVirtualizationHeaderDesiredSizes(System.Windows.Size logicalSize, System.Windows.Size pixelSize) { throw null; } + public System.Windows.Size LogicalSize { get { throw null; } } + public System.Windows.Size PixelSize { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes comparisonHeaderSizes) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes headerDesiredSizes1, System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes headerDesiredSizes2) { throw null; } + public static bool operator !=(System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes headerDesiredSizes1, System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes headerDesiredSizes2) { throw null; } + } + public partial struct HierarchicalVirtualizationItemDesiredSizes + { + public HierarchicalVirtualizationItemDesiredSizes(System.Windows.Size logicalSize, System.Windows.Size logicalSizeInViewport, System.Windows.Size logicalSizeBeforeViewport, System.Windows.Size logicalSizeAfterViewport, System.Windows.Size pixelSize, System.Windows.Size pixelSizeInViewport, System.Windows.Size pixelSizeBeforeViewport, System.Windows.Size pixelSizeAfterViewport) { throw null; } + public System.Windows.Size LogicalSize { get { throw null; } } + public System.Windows.Size LogicalSizeAfterViewport { get { throw null; } } + public System.Windows.Size LogicalSizeBeforeViewport { get { throw null; } } + public System.Windows.Size LogicalSizeInViewport { get { throw null; } } + public System.Windows.Size PixelSize { get { throw null; } } + public System.Windows.Size PixelSizeAfterViewport { get { throw null; } } + public System.Windows.Size PixelSizeBeforeViewport { get { throw null; } } + public System.Windows.Size PixelSizeInViewport { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes comparisonItemSizes) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes itemDesiredSizes1, System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes itemDesiredSizes2) { throw null; } + public static bool operator !=(System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes itemDesiredSizes1, System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes itemDesiredSizes2) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class Image : System.Windows.FrameworkElement, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.RoutedEvent DpiChangedEvent; + public static readonly System.Windows.RoutedEvent ImageFailedEvent; + public static readonly System.Windows.DependencyProperty SourceProperty; + public static readonly System.Windows.DependencyProperty StretchDirectionProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public Image() { } + protected virtual System.Uri BaseUri { get { throw null; } set { } } + public System.Windows.Media.ImageSource Source { get { throw null; } set { } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Controls.StretchDirection StretchDirection { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public event System.Windows.DpiChangedEventHandler DpiChanged { add { } remove { } } + public event System.EventHandler ImageFailed { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpi, System.Windows.DpiScale newDpi) { } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + } + public partial class InitializingNewItemEventArgs : System.EventArgs + { + public InitializingNewItemEventArgs(object newItem) { } + public object NewItem { get { throw null; } } + } + public delegate void InitializingNewItemEventHandler(object sender, System.Windows.Controls.InitializingNewItemEventArgs e); + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public partial class InkCanvas : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.RoutedEvent ActiveEditingModeChangedEvent; + public static readonly System.Windows.DependencyProperty ActiveEditingModeProperty; + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BottomProperty; + public static readonly System.Windows.DependencyProperty DefaultDrawingAttributesProperty; + public static readonly System.Windows.RoutedEvent EditingModeChangedEvent; + public static readonly System.Windows.RoutedEvent EditingModeInvertedChangedEvent; + public static readonly System.Windows.DependencyProperty EditingModeInvertedProperty; + public static readonly System.Windows.DependencyProperty EditingModeProperty; + public static readonly System.Windows.RoutedEvent GestureEvent; + public static readonly System.Windows.DependencyProperty LeftProperty; + public static readonly System.Windows.DependencyProperty RightProperty; + public static readonly System.Windows.RoutedEvent StrokeCollectedEvent; + public static readonly System.Windows.RoutedEvent StrokeErasedEvent; + public static readonly System.Windows.DependencyProperty StrokesProperty; + public static readonly System.Windows.DependencyProperty TopProperty; + public InkCanvas() { } + public System.Windows.Controls.InkCanvasEditingMode ActiveEditingMode { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush Background { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.UIElementCollection Children { get { throw null; } } + public System.Windows.Ink.DrawingAttributes DefaultDrawingAttributes { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Input.StylusPointDescription DefaultStylusPointDescription { get { throw null; } set { } } + protected System.Windows.Input.StylusPlugIns.DynamicRenderer DynamicRenderer { get { throw null; } set { } } + public System.Windows.Controls.InkCanvasEditingMode EditingMode { get { throw null; } set { } } + public System.Windows.Controls.InkCanvasEditingMode EditingModeInverted { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Ink.StylusShape EraserShape { get { throw null; } set { } } + protected System.Windows.Controls.InkPresenter InkPresenter { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsGestureRecognizerAvailable { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public bool MoveEnabled { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Collections.Generic.IEnumerable PreferredPasteFormats { get { throw null; } set { } } + public bool ResizeEnabled { get { throw null; } set { } } + public System.Windows.Ink.StrokeCollection Strokes { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool UseCustomCursor { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler ActiveEditingModeChanged { add { } remove { } } + public event System.Windows.Ink.DrawingAttributesReplacedEventHandler DefaultDrawingAttributesReplaced { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler EditingModeChanged { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler EditingModeInvertedChanged { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.InkCanvasGestureEventHandler Gesture { add { } remove { } } + public event System.EventHandler SelectionChanged { add { } remove { } } + public event System.Windows.Controls.InkCanvasSelectionChangingEventHandler SelectionChanging { add { } remove { } } + public event System.EventHandler SelectionMoved { add { } remove { } } + public event System.Windows.Controls.InkCanvasSelectionEditingEventHandler SelectionMoving { add { } remove { } } + public event System.EventHandler SelectionResized { add { } remove { } } + public event System.Windows.Controls.InkCanvasSelectionEditingEventHandler SelectionResizing { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.InkCanvasStrokeCollectedEventHandler StrokeCollected { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler StrokeErased { add { } remove { } } + public event System.Windows.Controls.InkCanvasStrokeErasingEventHandler StrokeErasing { add { } remove { } } + public event System.Windows.Controls.InkCanvasStrokesReplacedEventHandler StrokesReplaced { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public bool CanPaste() { throw null; } + public void CopySelection() { } + public void CutSelection() { } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetBottom(System.Windows.UIElement element) { throw null; } + public System.Collections.ObjectModel.ReadOnlyCollection GetEnabledGestures() { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetLeft(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetRight(System.Windows.UIElement element) { throw null; } + public System.Collections.ObjectModel.ReadOnlyCollection GetSelectedElements() { throw null; } + public System.Windows.Ink.StrokeCollection GetSelectedStrokes() { throw null; } + public System.Windows.Rect GetSelectionBounds() { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetTop(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParams) { throw null; } + public System.Windows.Controls.InkCanvasSelectionHitResult HitTestSelection(System.Windows.Point point) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected virtual void OnActiveEditingModeChanged(System.Windows.RoutedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDefaultDrawingAttributesReplaced(System.Windows.Ink.DrawingAttributesReplacedEventArgs e) { } + protected virtual void OnEditingModeChanged(System.Windows.RoutedEventArgs e) { } + protected virtual void OnEditingModeInvertedChanged(System.Windows.RoutedEventArgs e) { } + protected virtual void OnGesture(System.Windows.Controls.InkCanvasGestureEventArgs e) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected virtual void OnSelectionChanged(System.EventArgs e) { } + protected virtual void OnSelectionChanging(System.Windows.Controls.InkCanvasSelectionChangingEventArgs e) { } + protected virtual void OnSelectionMoved(System.EventArgs e) { } + protected virtual void OnSelectionMoving(System.Windows.Controls.InkCanvasSelectionEditingEventArgs e) { } + protected virtual void OnSelectionResized(System.EventArgs e) { } + protected virtual void OnSelectionResizing(System.Windows.Controls.InkCanvasSelectionEditingEventArgs e) { } + protected virtual void OnStrokeCollected(System.Windows.Controls.InkCanvasStrokeCollectedEventArgs e) { } + protected virtual void OnStrokeErased(System.Windows.RoutedEventArgs e) { } + protected virtual void OnStrokeErasing(System.Windows.Controls.InkCanvasStrokeErasingEventArgs e) { } + protected virtual void OnStrokesReplaced(System.Windows.Controls.InkCanvasStrokesReplacedEventArgs e) { } + public void Paste() { } + public void Paste(System.Windows.Point point) { } + public void Select(System.Collections.Generic.IEnumerable selectedElements) { } + public void Select(System.Windows.Ink.StrokeCollection selectedStrokes) { } + public void Select(System.Windows.Ink.StrokeCollection selectedStrokes, System.Collections.Generic.IEnumerable selectedElements) { } + public static void SetBottom(System.Windows.UIElement element, double length) { } + public void SetEnabledGestures(System.Collections.Generic.IEnumerable applicationGestures) { } + public static void SetLeft(System.Windows.UIElement element, double length) { } + public static void SetRight(System.Windows.UIElement element, double length) { } + public static void SetTop(System.Windows.UIElement element, double length) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string textData) { } + } + public enum InkCanvasClipboardFormat + { + InkSerializedFormat = 0, + Text = 1, + Xaml = 2, + } + public enum InkCanvasEditingMode + { + None = 0, + Ink = 1, + GestureOnly = 2, + InkAndGesture = 3, + Select = 4, + EraseByPoint = 5, + EraseByStroke = 6, + } + public partial class InkCanvasGestureEventArgs : System.Windows.RoutedEventArgs + { + public InkCanvasGestureEventArgs(System.Windows.Ink.StrokeCollection strokes, System.Collections.Generic.IEnumerable gestureRecognitionResults) { } + public bool Cancel { get { throw null; } set { } } + public System.Windows.Ink.StrokeCollection Strokes { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection GetGestureRecognitionResults() { throw null; } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void InkCanvasGestureEventHandler(object sender, System.Windows.Controls.InkCanvasGestureEventArgs e); + public partial class InkCanvasSelectionChangingEventArgs : System.ComponentModel.CancelEventArgs + { + internal InkCanvasSelectionChangingEventArgs() { } + public System.Collections.ObjectModel.ReadOnlyCollection GetSelectedElements() { throw null; } + public System.Windows.Ink.StrokeCollection GetSelectedStrokes() { throw null; } + public void SetSelectedElements(System.Collections.Generic.IEnumerable selectedElements) { } + public void SetSelectedStrokes(System.Windows.Ink.StrokeCollection selectedStrokes) { } + } + public delegate void InkCanvasSelectionChangingEventHandler(object sender, System.Windows.Controls.InkCanvasSelectionChangingEventArgs e); + public partial class InkCanvasSelectionEditingEventArgs : System.ComponentModel.CancelEventArgs + { + internal InkCanvasSelectionEditingEventArgs() { } + public System.Windows.Rect NewRectangle { get { throw null; } set { } } + public System.Windows.Rect OldRectangle { get { throw null; } } + } + public delegate void InkCanvasSelectionEditingEventHandler(object sender, System.Windows.Controls.InkCanvasSelectionEditingEventArgs e); + public enum InkCanvasSelectionHitResult + { + None = 0, + TopLeft = 1, + Top = 2, + TopRight = 3, + Right = 4, + BottomRight = 5, + Bottom = 6, + BottomLeft = 7, + Left = 8, + Selection = 9, + } + public partial class InkCanvasStrokeCollectedEventArgs : System.Windows.RoutedEventArgs + { + public InkCanvasStrokeCollectedEventArgs(System.Windows.Ink.Stroke stroke) { } + public System.Windows.Ink.Stroke Stroke { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void InkCanvasStrokeCollectedEventHandler(object sender, System.Windows.Controls.InkCanvasStrokeCollectedEventArgs e); + public partial class InkCanvasStrokeErasingEventArgs : System.ComponentModel.CancelEventArgs + { + internal InkCanvasStrokeErasingEventArgs() { } + public System.Windows.Ink.Stroke Stroke { get { throw null; } } + } + public delegate void InkCanvasStrokeErasingEventHandler(object sender, System.Windows.Controls.InkCanvasStrokeErasingEventArgs e); + public partial class InkCanvasStrokesReplacedEventArgs : System.EventArgs + { + internal InkCanvasStrokesReplacedEventArgs() { } + public System.Windows.Ink.StrokeCollection NewStrokes { get { throw null; } } + public System.Windows.Ink.StrokeCollection PreviousStrokes { get { throw null; } } + } + public delegate void InkCanvasStrokesReplacedEventHandler(object sender, System.Windows.Controls.InkCanvasStrokesReplacedEventArgs e); + public partial class InkPresenter : System.Windows.Controls.Decorator + { + public static readonly System.Windows.DependencyProperty StrokesProperty; + public InkPresenter() { } + public System.Windows.Ink.StrokeCollection Strokes { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public void AttachVisuals(System.Windows.Media.Visual visual, System.Windows.Ink.DrawingAttributes drawingAttributes) { } + public void DetachVisuals(System.Windows.Media.Visual visual) { } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + public sealed partial class ItemCollection : System.Windows.Data.CollectionView, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.ComponentModel.ICollectionViewLiveShaping, System.ComponentModel.IEditableCollectionView, System.ComponentModel.IEditableCollectionViewAddNewItem, System.ComponentModel.IItemProperties, System.Windows.IWeakEventListener + { + internal ItemCollection() : base (default(System.Collections.IEnumerable)) { } + public bool CanChangeLiveFiltering { get { throw null; } } + public bool CanChangeLiveGrouping { get { throw null; } } + public bool CanChangeLiveSorting { get { throw null; } } + public override bool CanFilter { get { throw null; } } + public override bool CanGroup { get { throw null; } } + public override bool CanSort { get { throw null; } } + public override int Count { get { throw null; } } + public override object CurrentItem { get { throw null; } } + public override int CurrentPosition { get { throw null; } } + public override System.Predicate Filter { get { throw null; } set { } } + public override System.Collections.ObjectModel.ObservableCollection GroupDescriptions { get { throw null; } } + public override System.Collections.ObjectModel.ReadOnlyObservableCollection Groups { get { throw null; } } + public override bool IsCurrentAfterLast { get { throw null; } } + public override bool IsCurrentBeforeFirst { get { throw null; } } + public override bool IsEmpty { get { throw null; } } + public bool? IsLiveFiltering { get { throw null; } set { } } + public bool? IsLiveGrouping { get { throw null; } set { } } + public bool? IsLiveSorting { get { throw null; } set { } } + public object this[int index] { get { throw null; } set { } } + public System.Collections.ObjectModel.ObservableCollection LiveFilteringProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveGroupingProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveSortingProperties { get { throw null; } } + public override bool NeedsRefresh { get { throw null; } } + public override System.ComponentModel.SortDescriptionCollection SortDescriptions { get { throw null; } } + public override System.Collections.IEnumerable SourceCollection { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + bool System.ComponentModel.IEditableCollectionView.CanAddNew { get { throw null; } } + bool System.ComponentModel.IEditableCollectionView.CanCancelEdit { get { throw null; } } + bool System.ComponentModel.IEditableCollectionView.CanRemove { get { throw null; } } + object System.ComponentModel.IEditableCollectionView.CurrentAddItem { get { throw null; } } + object System.ComponentModel.IEditableCollectionView.CurrentEditItem { get { throw null; } } + bool System.ComponentModel.IEditableCollectionView.IsAddingNew { get { throw null; } } + bool System.ComponentModel.IEditableCollectionView.IsEditingItem { get { throw null; } } + System.ComponentModel.NewItemPlaceholderPosition System.ComponentModel.IEditableCollectionView.NewItemPlaceholderPosition { get { throw null; } set { } } + bool System.ComponentModel.IEditableCollectionViewAddNewItem.CanAddNewItem { get { throw null; } } + System.Collections.ObjectModel.ReadOnlyCollection System.ComponentModel.IItemProperties.ItemProperties { get { throw null; } } + public int Add(object newItem) { throw null; } + public void Clear() { } + public override bool Contains(object containItem) { throw null; } + public void CopyTo(System.Array array, int index) { } + public override System.IDisposable DeferRefresh() { throw null; } + protected override System.Collections.IEnumerator GetEnumerator() { throw null; } + public override object GetItemAt(int index) { throw null; } + public override int IndexOf(object item) { throw null; } + public void Insert(int insertIndex, object insertItem) { } + public override bool MoveCurrentTo(object item) { throw null; } + public override bool MoveCurrentToFirst() { throw null; } + public override bool MoveCurrentToLast() { throw null; } + public override bool MoveCurrentToNext() { throw null; } + public override bool MoveCurrentToPosition(int position) { throw null; } + public override bool MoveCurrentToPrevious() { throw null; } + public override bool PassesFilter(object item) { throw null; } + protected override void RefreshOverride() { } + public void Remove(object removeItem) { } + public void RemoveAt(int removeIndex) { } + object System.ComponentModel.IEditableCollectionView.AddNew() { throw null; } + void System.ComponentModel.IEditableCollectionView.CancelEdit() { } + void System.ComponentModel.IEditableCollectionView.CancelNew() { } + void System.ComponentModel.IEditableCollectionView.CommitEdit() { } + void System.ComponentModel.IEditableCollectionView.CommitNew() { } + void System.ComponentModel.IEditableCollectionView.EditItem(object item) { } + void System.ComponentModel.IEditableCollectionView.Remove(object item) { } + void System.ComponentModel.IEditableCollectionView.RemoveAt(int index) { } + object System.ComponentModel.IEditableCollectionViewAddNewItem.AddNewItem(object newItem) { throw null; } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + } + public sealed partial class ItemContainerGenerator : System.Windows.Controls.Primitives.IItemContainerGenerator, System.Windows.Controls.Primitives.IRecyclingItemContainerGenerator, System.Windows.IWeakEventListener + { + internal ItemContainerGenerator() { } + public System.Collections.ObjectModel.ReadOnlyCollection Items { get { throw null; } } + public System.Windows.Controls.Primitives.GeneratorStatus Status { get { throw null; } } + public event System.Windows.Controls.Primitives.ItemsChangedEventHandler ItemsChanged { add { } remove { } } + public event System.EventHandler StatusChanged { add { } remove { } } + public System.Windows.DependencyObject ContainerFromIndex(int index) { throw null; } + public System.Windows.DependencyObject ContainerFromItem(object item) { throw null; } + public System.IDisposable GenerateBatches() { throw null; } + public int IndexFromContainer(System.Windows.DependencyObject container) { throw null; } + public int IndexFromContainer(System.Windows.DependencyObject container, bool returnLocalIndex) { throw null; } + public object ItemFromContainer(System.Windows.DependencyObject container) { throw null; } + System.Windows.DependencyObject System.Windows.Controls.Primitives.IItemContainerGenerator.GenerateNext() { throw null; } + System.Windows.DependencyObject System.Windows.Controls.Primitives.IItemContainerGenerator.GenerateNext(out bool isNewlyRealized) { throw null; } + System.Windows.Controls.Primitives.GeneratorPosition System.Windows.Controls.Primitives.IItemContainerGenerator.GeneratorPositionFromIndex(int itemIndex) { throw null; } + System.Windows.Controls.ItemContainerGenerator System.Windows.Controls.Primitives.IItemContainerGenerator.GetItemContainerGeneratorForPanel(System.Windows.Controls.Panel panel) { throw null; } + int System.Windows.Controls.Primitives.IItemContainerGenerator.IndexFromGeneratorPosition(System.Windows.Controls.Primitives.GeneratorPosition position) { throw null; } + void System.Windows.Controls.Primitives.IItemContainerGenerator.PrepareItemContainer(System.Windows.DependencyObject container) { } + void System.Windows.Controls.Primitives.IItemContainerGenerator.Remove(System.Windows.Controls.Primitives.GeneratorPosition position, int count) { } + void System.Windows.Controls.Primitives.IItemContainerGenerator.RemoveAll() { } + System.IDisposable System.Windows.Controls.Primitives.IItemContainerGenerator.StartAt(System.Windows.Controls.Primitives.GeneratorPosition position, System.Windows.Controls.Primitives.GeneratorDirection direction) { throw null; } + System.IDisposable System.Windows.Controls.Primitives.IItemContainerGenerator.StartAt(System.Windows.Controls.Primitives.GeneratorPosition position, System.Windows.Controls.Primitives.GeneratorDirection direction, bool allowStartAtRealizedItem) { throw null; } + void System.Windows.Controls.Primitives.IRecyclingItemContainerGenerator.Recycle(System.Windows.Controls.Primitives.GeneratorPosition position, int count) { } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + } + [System.Windows.Markup.DictionaryKeyPropertyAttribute("ItemContainerTemplateKey")] + public partial class ItemContainerTemplate : System.Windows.DataTemplate + { + public ItemContainerTemplate() { } + public object ItemContainerTemplateKey { get { throw null; } } + } + public partial class ItemContainerTemplateKey : System.Windows.TemplateKey + { + public ItemContainerTemplateKey() : base (default(System.Windows.TemplateKey.TemplateType)) { } + public ItemContainerTemplateKey(object dataType) : base (default(System.Windows.TemplateKey.TemplateType)) { } + } + public abstract partial class ItemContainerTemplateSelector + { + protected ItemContainerTemplateSelector() { } + public virtual System.Windows.DataTemplate SelectTemplate(object item, System.Windows.Controls.ItemsControl parentItemsControl) { throw null; } + } + [System.ComponentModel.DefaultEventAttribute("OnItemsChanged")] + [System.ComponentModel.DefaultPropertyAttribute("Items")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Items")] + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.FrameworkElement))] + public partial class ItemsControl : System.Windows.Controls.Control, System.Windows.Controls.Primitives.IContainItemStorage, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty AlternationCountProperty; + public static readonly System.Windows.DependencyProperty AlternationIndexProperty; + public static readonly System.Windows.DependencyProperty DisplayMemberPathProperty; + public static readonly System.Windows.DependencyProperty GroupStyleSelectorProperty; + public static readonly System.Windows.DependencyProperty HasItemsProperty; + public static readonly System.Windows.DependencyProperty IsGroupingProperty; + public static readonly System.Windows.DependencyProperty IsTextSearchCaseSensitiveProperty; + public static readonly System.Windows.DependencyProperty IsTextSearchEnabledProperty; + public static readonly System.Windows.DependencyProperty ItemBindingGroupProperty; + public static readonly System.Windows.DependencyProperty ItemContainerStyleProperty; + public static readonly System.Windows.DependencyProperty ItemContainerStyleSelectorProperty; + public static readonly System.Windows.DependencyProperty ItemsPanelProperty; + public static readonly System.Windows.DependencyProperty ItemsSourceProperty; + public static readonly System.Windows.DependencyProperty ItemStringFormatProperty; + public static readonly System.Windows.DependencyProperty ItemTemplateProperty; + public static readonly System.Windows.DependencyProperty ItemTemplateSelectorProperty; + public ItemsControl() { } + [System.ComponentModel.BindableAttribute(true)] + public int AlternationCount { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string DisplayMemberPath { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.ObjectModel.ObservableCollection GroupStyle { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.GroupStyleSelector GroupStyleSelector { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.BrowsableAttribute(false)] + public bool HasItems { get { throw null; } } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsGrouping { get { throw null; } } + public bool IsTextSearchCaseSensitive { get { throw null; } set { } } + public bool IsTextSearchEnabled { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.Data.BindingGroup ItemBindingGroup { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public System.Windows.Controls.ItemContainerGenerator ItemContainerGenerator { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Content")] + public System.Windows.Style ItemContainerStyle { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Content")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.StyleSelector ItemContainerStyleSelector { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.ItemCollection Items { get { throw null; } } + [System.ComponentModel.BindableAttribute(false)] + public System.Windows.Controls.ItemsPanelTemplate ItemsPanel { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Collections.IEnumerable ItemsSource { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string ItemStringFormat { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.DataTemplate ItemTemplate { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector ItemTemplateSelector { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected virtual void AddChild(object value) { } + protected virtual void AddText(string text) { } + public override void BeginInit() { } + protected virtual void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public static System.Windows.DependencyObject ContainerFromElement(System.Windows.Controls.ItemsControl itemsControl, System.Windows.DependencyObject element) { throw null; } + public System.Windows.DependencyObject ContainerFromElement(System.Windows.DependencyObject element) { throw null; } + public override void EndInit() { } + public static int GetAlternationIndex(System.Windows.DependencyObject element) { throw null; } + protected virtual System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + public static System.Windows.Controls.ItemsControl GetItemsOwner(System.Windows.DependencyObject element) { throw null; } + public bool IsItemItsOwnContainer(object item) { throw null; } + protected virtual bool IsItemItsOwnContainerOverride(object item) { throw null; } + public static System.Windows.Controls.ItemsControl ItemsControlFromItemContainer(System.Windows.DependencyObject container) { throw null; } + protected virtual void OnAlternationCountChanged(int oldAlternationCount, int newAlternationCount) { } + protected virtual void OnDisplayMemberPathChanged(string oldDisplayMemberPath, string newDisplayMemberPath) { } + protected virtual void OnGroupStyleSelectorChanged(System.Windows.Controls.GroupStyleSelector oldGroupStyleSelector, System.Windows.Controls.GroupStyleSelector newGroupStyleSelector) { } + protected virtual void OnItemBindingGroupChanged(System.Windows.Data.BindingGroup oldItemBindingGroup, System.Windows.Data.BindingGroup newItemBindingGroup) { } + protected virtual void OnItemContainerStyleChanged(System.Windows.Style oldItemContainerStyle, System.Windows.Style newItemContainerStyle) { } + protected virtual void OnItemContainerStyleSelectorChanged(System.Windows.Controls.StyleSelector oldItemContainerStyleSelector, System.Windows.Controls.StyleSelector newItemContainerStyleSelector) { } + protected virtual void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected virtual void OnItemsPanelChanged(System.Windows.Controls.ItemsPanelTemplate oldItemsPanel, System.Windows.Controls.ItemsPanelTemplate newItemsPanel) { } + protected virtual void OnItemsSourceChanged(System.Collections.IEnumerable oldValue, System.Collections.IEnumerable newValue) { } + protected virtual void OnItemStringFormatChanged(string oldItemStringFormat, string newItemStringFormat) { } + protected virtual void OnItemTemplateChanged(System.Windows.DataTemplate oldItemTemplate, System.Windows.DataTemplate newItemTemplate) { } + protected virtual void OnItemTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldItemTemplateSelector, System.Windows.Controls.DataTemplateSelector newItemTemplateSelector) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected virtual void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected virtual bool ShouldApplyItemContainerStyle(System.Windows.DependencyObject container, object item) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeGroupStyle() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeItems() { throw null; } + void System.Windows.Controls.Primitives.IContainItemStorage.Clear() { } + void System.Windows.Controls.Primitives.IContainItemStorage.ClearItemValue(object item, System.Windows.DependencyProperty dp) { } + void System.Windows.Controls.Primitives.IContainItemStorage.ClearValue(System.Windows.DependencyProperty dp) { } + object System.Windows.Controls.Primitives.IContainItemStorage.ReadItemValue(object item, System.Windows.DependencyProperty dp) { throw null; } + void System.Windows.Controls.Primitives.IContainItemStorage.StoreItemValue(object item, System.Windows.DependencyProperty dp, object value) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + public override string ToString() { throw null; } + } + public partial class ItemsPanelTemplate : System.Windows.FrameworkTemplate + { + public ItemsPanelTemplate() { } + public ItemsPanelTemplate(System.Windows.FrameworkElementFactory root) { } + protected override void ValidateTemplatedParent(System.Windows.FrameworkElement templatedParent) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class ItemsPresenter : System.Windows.FrameworkElement + { + public ItemsPresenter() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public override void OnApplyTemplate() { } + protected virtual void OnTemplateChanged(System.Windows.Controls.ItemsPanelTemplate oldTemplate, System.Windows.Controls.ItemsPanelTemplate newTemplate) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Label)] + public partial class Label : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty TargetProperty; + public Label() { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Markup.NameReferenceConverter))] + public System.Windows.UIElement Target { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.ListBox)] + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.ListBoxItem))] + public partial class ListBox : System.Windows.Controls.Primitives.Selector + { + public static readonly System.Windows.DependencyProperty SelectedItemsProperty; + public static readonly System.Windows.DependencyProperty SelectionModeProperty; + public ListBox() { } + protected object AnchorItem { get { throw null; } set { } } + protected internal override bool HandlesScrolling { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Collections.IList SelectedItems { get { throw null; } } + public System.Windows.Controls.SelectionMode SelectionMode { get { throw null; } set { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnIsMouseCapturedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected override void OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public void ScrollIntoView(object item) { } + public void SelectAll() { } + protected bool SetSelectedItems(System.Collections.IEnumerable selectedItems) { throw null; } + public void UnselectAll() { } + } + [System.ComponentModel.DefaultEventAttribute("Selected")] + public partial class ListBoxItem : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.RoutedEvent SelectedEvent; + public static readonly System.Windows.RoutedEvent UnselectedEvent; + public ListBoxItem() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsSelected { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Selected { add { } remove { } } + public event System.Windows.RoutedEventHandler Unselected { add { } remove { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnSelected(System.Windows.RoutedEventArgs e) { } + protected virtual void OnUnselected(System.Windows.RoutedEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + } + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.ListViewItem))] + public partial class ListView : System.Windows.Controls.ListBox + { + public static readonly System.Windows.DependencyProperty ViewProperty; + public ListView() { } + public System.Windows.Controls.ViewBase View { get { throw null; } set { } } + protected override void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + public partial class ListViewItem : System.Windows.Controls.ListBoxItem + { + public ListViewItem() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class MediaElement : System.Windows.FrameworkElement, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty BalanceProperty; + public static readonly System.Windows.RoutedEvent BufferingEndedEvent; + public static readonly System.Windows.RoutedEvent BufferingStartedEvent; + public static readonly System.Windows.DependencyProperty IsMutedProperty; + public static readonly System.Windows.DependencyProperty LoadedBehaviorProperty; + public static readonly System.Windows.RoutedEvent MediaEndedEvent; + public static readonly System.Windows.RoutedEvent MediaFailedEvent; + public static readonly System.Windows.RoutedEvent MediaOpenedEvent; + public static readonly System.Windows.RoutedEvent ScriptCommandEvent; + public static readonly System.Windows.DependencyProperty ScrubbingEnabledProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public static readonly System.Windows.DependencyProperty StretchDirectionProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public static readonly System.Windows.DependencyProperty UnloadedBehaviorProperty; + public static readonly System.Windows.DependencyProperty VolumeProperty; + public MediaElement() { } + public double Balance { get { throw null; } set { } } + public double BufferingProgress { get { throw null; } } + public bool CanPause { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Media.MediaClock Clock { get { throw null; } set { } } + public double DownloadProgress { get { throw null; } } + public bool HasAudio { get { throw null; } } + public bool HasVideo { get { throw null; } } + public bool IsBuffering { get { throw null; } } + public bool IsMuted { get { throw null; } set { } } + public System.Windows.Controls.MediaState LoadedBehavior { get { throw null; } set { } } + public System.Windows.Duration NaturalDuration { get { throw null; } } + public int NaturalVideoHeight { get { throw null; } } + public int NaturalVideoWidth { get { throw null; } } + public System.TimeSpan Position { get { throw null; } set { } } + public bool ScrubbingEnabled { get { throw null; } set { } } + public System.Uri Source { get { throw null; } set { } } + public double SpeedRatio { get { throw null; } set { } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Controls.StretchDirection StretchDirection { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public System.Windows.Controls.MediaState UnloadedBehavior { get { throw null; } set { } } + public double Volume { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler BufferingEnded { add { } remove { } } + public event System.Windows.RoutedEventHandler BufferingStarted { add { } remove { } } + public event System.Windows.RoutedEventHandler MediaEnded { add { } remove { } } + public event System.EventHandler MediaFailed { add { } remove { } } + public event System.Windows.RoutedEventHandler MediaOpened { add { } remove { } } + public event System.EventHandler ScriptCommand { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + public void Close() { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + public void Pause() { } + public void Play() { } + public void Stop() { } + } + public enum MediaState + { + Manual = 0, + Play = 1, + Close = 2, + Pause = 3, + Stop = 4, + } + public partial class Menu : System.Windows.Controls.Primitives.MenuBase + { + public static readonly System.Windows.DependencyProperty IsMainMenuProperty; + public Menu() { } + public bool IsMainMenu { get { throw null; } set { } } + protected override void HandleMouseButton(System.Windows.Input.MouseButtonEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnInitialized(System.EventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + [System.ComponentModel.DefaultEventAttribute("Click")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Menu)] + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_Popup", Type=typeof(System.Windows.Controls.Primitives.Popup))] + public partial class MenuItem : System.Windows.Controls.HeaderedItemsControl, System.Windows.Input.ICommandSource + { + public static readonly System.Windows.RoutedEvent CheckedEvent; + public static readonly System.Windows.RoutedEvent ClickEvent; + public static readonly System.Windows.DependencyProperty CommandParameterProperty; + public static readonly System.Windows.DependencyProperty CommandProperty; + public static readonly System.Windows.DependencyProperty CommandTargetProperty; + public static readonly System.Windows.DependencyProperty IconProperty; + public static readonly System.Windows.DependencyProperty InputGestureTextProperty; + public static readonly System.Windows.DependencyProperty IsCheckableProperty; + public static readonly System.Windows.DependencyProperty IsCheckedProperty; + public static readonly System.Windows.DependencyProperty IsHighlightedProperty; + public static readonly System.Windows.DependencyProperty IsPressedProperty; + public static readonly System.Windows.DependencyProperty IsSubmenuOpenProperty; + public static readonly System.Windows.DependencyProperty IsSuspendingPopupAnimationProperty; + public static readonly System.Windows.DependencyProperty ItemContainerTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty RoleProperty; + public static readonly System.Windows.DependencyProperty StaysOpenOnClickProperty; + public static readonly System.Windows.RoutedEvent SubmenuClosedEvent; + public static readonly System.Windows.RoutedEvent SubmenuOpenedEvent; + public static readonly System.Windows.RoutedEvent UncheckedEvent; + public static readonly System.Windows.DependencyProperty UsesItemContainerTemplateProperty; + public MenuItem() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object CommandParameter { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + public System.Windows.IInputElement CommandTarget { get { throw null; } set { } } + protected internal override bool HandlesScrolling { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + public object Icon { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public string InputGestureText { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsCheckable { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsChecked { get { throw null; } set { } } + protected override bool IsEnabledCore { get { throw null; } } + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsHighlighted { get { throw null; } protected set { } } + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsPressed { get { throw null; } protected set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsSubmenuOpen { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsSuspendingPopupAnimation { get { throw null; } } + public System.Windows.Controls.ItemContainerTemplateSelector ItemContainerTemplateSelector { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.MenuItemRole Role { get { throw null; } } + public static System.Windows.ResourceKey SeparatorStyleKey { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool StaysOpenOnClick { get { throw null; } set { } } + public static System.Windows.ResourceKey SubmenuHeaderTemplateKey { get { throw null; } } + public static System.Windows.ResourceKey SubmenuItemTemplateKey { get { throw null; } } + public static System.Windows.ResourceKey TopLevelHeaderTemplateKey { get { throw null; } } + public static System.Windows.ResourceKey TopLevelItemTemplateKey { get { throw null; } } + public bool UsesItemContainerTemplate { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Checked { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Click { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler SubmenuClosed { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler SubmenuOpened { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Unchecked { add { } remove { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + public override void OnApplyTemplate() { } + protected virtual void OnChecked(System.Windows.RoutedEventArgs e) { } + protected virtual void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnInitialized(System.EventArgs e) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnSubmenuClosed(System.Windows.RoutedEventArgs e) { } + protected virtual void OnSubmenuOpened(System.Windows.RoutedEventArgs e) { } + protected virtual void OnUnchecked(System.Windows.RoutedEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected override bool ShouldApplyItemContainerStyle(System.Windows.DependencyObject container, object item) { throw null; } + } + public enum MenuItemRole + { + TopLevelItem = 0, + TopLevelHeader = 1, + SubmenuItem = 2, + SubmenuHeader = 3, + } + public sealed partial class MenuScrollingVisibilityConverter : System.Windows.Data.IMultiValueConverter + { + public MenuScrollingVisibilityConverter() { } + public object Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object[] ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } + public sealed partial class NotifyDataErrorValidationRule : System.Windows.Controls.ValidationRule + { + public NotifyDataErrorValidationRule() { } + public override System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum Orientation + { + Horizontal = 0, + Vertical = 1, + } + public enum OverflowMode + { + AsNeeded = 0, + Always = 1, + Never = 2, + } + [System.Windows.Markup.ContentPropertyAttribute("Content")] + public partial class Page : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty ContentProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty KeepAliveProperty; + public static readonly System.Windows.DependencyProperty TemplateProperty; + public static readonly System.Windows.DependencyProperty TitleProperty; + public Page() { } + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public object Content { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + public bool KeepAlive { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Navigation.NavigationService NavigationService { get { throw null; } } + public bool ShowsNavigationUI { get { throw null; } set { } } + public System.Windows.Controls.ControlTemplate Template { get { throw null; } set { } } + public string Title { get { throw null; } set { } } + public double WindowHeight { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Title)] + public string WindowTitle { get { throw null; } set { } } + public double WindowWidth { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected virtual void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + protected internal sealed override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeShowsNavigationUI() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeTitle() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeWindowHeight() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeWindowTitle() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeWindowWidth() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object obj) { } + void System.Windows.Markup.IAddChild.AddText(string str) { } + } + public partial struct PageRange + { + public PageRange(int page) { throw null; } + public PageRange(int pageFrom, int pageTo) { throw null; } + public int PageFrom { get { throw null; } set { } } + public int PageTo { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Windows.Controls.PageRange pageRange) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.PageRange pr1, System.Windows.Controls.PageRange pr2) { throw null; } + public static bool operator !=(System.Windows.Controls.PageRange pr1, System.Windows.Controls.PageRange pr2) { throw null; } + public override string ToString() { throw null; } + } + public enum PageRangeSelection + { + AllPages = 0, + UserPages = 1, + CurrentPage = 2, + SelectedPages = 3, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public abstract partial class Panel : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty IsItemsHostProperty; + public static readonly System.Windows.DependencyProperty ZIndexProperty; + protected Panel() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.UIElementCollection Children { get { throw null; } } + protected internal virtual bool HasLogicalOrientation { get { throw null; } } + public bool HasLogicalOrientationPublic { get { throw null; } } + protected internal System.Windows.Controls.UIElementCollection InternalChildren { get { throw null; } } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsItemsHost { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected internal virtual System.Windows.Controls.Orientation LogicalOrientation { get { throw null; } } + public System.Windows.Controls.Orientation LogicalOrientationPublic { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected virtual System.Windows.Controls.UIElementCollection CreateUIElementCollection(System.Windows.FrameworkElement logicalParent) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + public static int GetZIndex(System.Windows.UIElement element) { throw null; } + protected virtual void OnIsItemsHostChanged(bool oldIsItemsHost, bool newIsItemsHost) { } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + protected internal override void OnVisualChildrenChanged(System.Windows.DependencyObject visualAdded, System.Windows.DependencyObject visualRemoved) { } + public static void SetZIndex(System.Windows.UIElement element, int value) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeChildren() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public enum PanningMode + { + None = 0, + HorizontalOnly = 1, + VerticalOnly = 2, + Both = 3, + HorizontalFirst = 4, + VerticalFirst = 5, + } + [System.Windows.TemplatePartAttribute(Name="PART_ContentHost", Type=typeof(System.Windows.FrameworkElement))] + public sealed partial class PasswordBox : System.Windows.Controls.Control + { + public static readonly System.Windows.DependencyProperty CaretBrushProperty; + public static readonly System.Windows.DependencyProperty IsInactiveSelectionHighlightEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty MaxLengthProperty; + public static readonly System.Windows.RoutedEvent PasswordChangedEvent; + public static readonly System.Windows.DependencyProperty PasswordCharProperty; + public static readonly System.Windows.DependencyProperty SelectionBrushProperty; + public static readonly System.Windows.DependencyProperty SelectionOpacityProperty; + public static readonly System.Windows.DependencyProperty SelectionTextBrushProperty; + public PasswordBox() { } + public System.Windows.Media.Brush CaretBrush { get { throw null; } set { } } + public bool IsInactiveSelectionHighlightEnabled { get { throw null; } set { } } + public bool IsSelectionActive { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(0)] + public int MaxLength { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute("")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public string Password { get { throw null; } set { } } + public char PasswordChar { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Security.SecureString SecurePassword { get { throw null; } } + public System.Windows.Media.Brush SelectionBrush { get { throw null; } set { } } + public double SelectionOpacity { get { throw null; } set { } } + public System.Windows.Media.Brush SelectionTextBrush { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler PasswordChanged { add { } remove { } } + public void Clear() { } + public override void OnApplyTemplate() { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnDragEnter(System.Windows.DragEventArgs e) { } + protected override void OnDragLeave(System.Windows.DragEventArgs e) { } + protected override void OnDragOver(System.Windows.DragEventArgs e) { } + protected override void OnDrop(System.Windows.DragEventArgs e) { } + protected override void OnGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected override void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostFocus(System.Windows.RoutedEventArgs e) { } + protected override void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected override void OnQueryCursor(System.Windows.Input.QueryCursorEventArgs e) { } + protected override void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + public void Paste() { } + public void SelectAll() { } + } + public partial class PrintDialog + { + public PrintDialog() { } + public bool CurrentPageEnabled { get { throw null; } set { } } + public uint MaxPage { get { throw null; } set { } } + public uint MinPage { get { throw null; } set { } } + public System.Windows.Controls.PageRange PageRange { get { throw null; } set { } } + public System.Windows.Controls.PageRangeSelection PageRangeSelection { get { throw null; } set { } } + public double PrintableAreaHeight { get { throw null; } } + public double PrintableAreaWidth { get { throw null; } } + public System.Printing.PrintQueue PrintQueue { get { throw null; } set { } } + public System.Printing.PrintTicket PrintTicket { get { throw null; } set { } } + public bool SelectedPagesEnabled { get { throw null; } set { } } + public bool UserPageRangeEnabled { get { throw null; } set { } } + public void PrintDocument(System.Windows.Documents.DocumentPaginator documentPaginator, string description) { } + public void PrintVisual(System.Windows.Media.Visual visual, string description) { } + public bool? ShowDialog() { throw null; } + } + public partial class PrintDialogException : System.Exception + { + public PrintDialogException() { } + protected PrintDialogException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintDialogException(string message) { } + public PrintDialogException(string message, System.Exception innerException) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_GlowRect", Type=typeof(System.Windows.FrameworkElement))] + [System.Windows.TemplatePartAttribute(Name="PART_Indicator", Type=typeof(System.Windows.FrameworkElement))] + [System.Windows.TemplatePartAttribute(Name="PART_Track", Type=typeof(System.Windows.FrameworkElement))] + public partial class ProgressBar : System.Windows.Controls.Primitives.RangeBase + { + public static readonly System.Windows.DependencyProperty IsIndeterminateProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public ProgressBar() { } + public bool IsIndeterminate { get { throw null; } set { } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnMaximumChanged(double oldMaximum, double newMaximum) { } + protected override void OnMinimumChanged(double oldMinimum, double newMinimum) { } + protected override void OnValueChanged(double oldValue, double newValue) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.RadioButton)] + public partial class RadioButton : System.Windows.Controls.Primitives.ToggleButton + { + public static readonly System.Windows.DependencyProperty GroupNameProperty; + public RadioButton() { } + [System.ComponentModel.DefaultValueAttribute("")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public string GroupName { get { throw null; } set { } } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected override void OnChecked(System.Windows.RoutedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected internal override void OnToggle() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Inherit)] + [System.Windows.Markup.ContentPropertyAttribute("Document")] + public partial class RichTextBox : System.Windows.Controls.Primitives.TextBoxBase, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty IsDocumentEnabledProperty; + public RichTextBox() { } + public RichTextBox(System.Windows.Documents.FlowDocument document) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Documents.TextPointer CaretPosition { get { throw null; } set { } } + public System.Windows.Documents.FlowDocument Document { get { throw null; } set { } } + public bool IsDocumentEnabled { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Documents.TextSelection Selection { get { throw null; } } + public System.Windows.Documents.TextPointer GetNextSpellingErrorPosition(System.Windows.Documents.TextPointer position, System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer GetPositionFromPoint(System.Windows.Point point, bool snapToText) { throw null; } + public System.Windows.Controls.SpellingError GetSpellingError(System.Windows.Documents.TextPointer position) { throw null; } + public System.Windows.Documents.TextRange GetSpellingErrorRange(System.Windows.Documents.TextPointer position) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpiScaleInfo, System.Windows.DpiScale newDpiScaleInfo) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeDocument() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class RowDefinition : System.Windows.Controls.DefinitionBase + { + public static readonly System.Windows.DependencyProperty HeightProperty; + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public static readonly System.Windows.DependencyProperty MaxHeightProperty; + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public static readonly System.Windows.DependencyProperty MinHeightProperty; + public RowDefinition() { } + public double ActualHeight { get { throw null; } } + public System.Windows.GridLength Height { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MaxHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MinHeight { get { throw null; } set { } } + public double Offset { get { throw null; } } + } + public sealed partial class RowDefinitionCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal RowDefinitionCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Controls.RowDefinition this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Controls.RowDefinition value) { } + public void Clear() { } + public bool Contains(System.Windows.Controls.RowDefinition value) { throw null; } + public void CopyTo(System.Windows.Controls.RowDefinition[] array, int index) { } + public int IndexOf(System.Windows.Controls.RowDefinition value) { throw null; } + public void Insert(int index, System.Windows.Controls.RowDefinition value) { } + public bool Remove(System.Windows.Controls.RowDefinition value) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + } + public enum ScrollBarVisibility + { + Disabled = 0, + Auto = 1, + Hidden = 2, + Visible = 3, + } + public partial class ScrollChangedEventArgs : System.Windows.RoutedEventArgs + { + internal ScrollChangedEventArgs() { } + public double ExtentHeight { get { throw null; } } + public double ExtentHeightChange { get { throw null; } } + public double ExtentWidth { get { throw null; } } + public double ExtentWidthChange { get { throw null; } } + public double HorizontalChange { get { throw null; } } + public double HorizontalOffset { get { throw null; } } + public double VerticalChange { get { throw null; } } + public double VerticalOffset { get { throw null; } } + public double ViewportHeight { get { throw null; } } + public double ViewportHeightChange { get { throw null; } } + public double ViewportWidth { get { throw null; } } + public double ViewportWidthChange { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void ScrollChangedEventHandler(object sender, System.Windows.Controls.ScrollChangedEventArgs e); + public sealed partial class ScrollContentPresenter : System.Windows.Controls.ContentPresenter, System.Windows.Controls.Primitives.IScrollInfo + { + public static readonly System.Windows.DependencyProperty CanContentScrollProperty; + public ScrollContentPresenter() { } + public System.Windows.Documents.AdornerLayer AdornerLayer { get { throw null; } } + public bool CanContentScroll { get { throw null; } set { } } + public bool CanHorizontallyScroll { get { throw null; } set { } } + public bool CanVerticallyScroll { get { throw null; } set { } } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double HorizontalOffset { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.ScrollViewer ScrollOwner { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double VerticalOffset { get { throw null; } } + public double ViewportHeight { get { throw null; } } + public double ViewportWidth { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + public void LineDown() { } + public void LineLeft() { } + public void LineRight() { } + public void LineUp() { } + public System.Windows.Rect MakeVisible(System.Windows.Media.Visual visual, System.Windows.Rect rectangle) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public void MouseWheelDown() { } + public void MouseWheelLeft() { } + public void MouseWheelRight() { } + public void MouseWheelUp() { } + public override void OnApplyTemplate() { } + public void PageDown() { } + public void PageLeft() { } + public void PageRight() { } + public void PageUp() { } + public void SetHorizontalOffset(double offset) { } + public void SetVerticalOffset(double offset) { } + } + public enum ScrollUnit + { + Pixel = 0, + Item = 1, + } + [System.ComponentModel.DefaultEventAttribute("ScrollChangedEvent")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.TemplatePartAttribute(Name="PART_HorizontalScrollBar", Type=typeof(System.Windows.Controls.Primitives.ScrollBar))] + [System.Windows.TemplatePartAttribute(Name="PART_ScrollContentPresenter", Type=typeof(System.Windows.Controls.ScrollContentPresenter))] + [System.Windows.TemplatePartAttribute(Name="PART_VerticalScrollBar", Type=typeof(System.Windows.Controls.Primitives.ScrollBar))] + public partial class ScrollViewer : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.DependencyProperty CanContentScrollProperty; + public static readonly System.Windows.DependencyProperty ComputedHorizontalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty ComputedVerticalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty ContentHorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty ContentVerticalOffsetProperty; + public static readonly System.Windows.DependencyProperty ExtentHeightProperty; + public static readonly System.Windows.DependencyProperty ExtentWidthProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty HorizontalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty IsDeferredScrollingEnabledProperty; + public static readonly System.Windows.DependencyProperty PanningDecelerationProperty; + public static readonly System.Windows.DependencyProperty PanningModeProperty; + public static readonly System.Windows.DependencyProperty PanningRatioProperty; + public static readonly System.Windows.DependencyProperty ScrollableHeightProperty; + public static readonly System.Windows.DependencyProperty ScrollableWidthProperty; + public static readonly System.Windows.RoutedEvent ScrollChangedEvent; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public static readonly System.Windows.DependencyProperty VerticalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty ViewportHeightProperty; + public static readonly System.Windows.DependencyProperty ViewportWidthProperty; + public ScrollViewer() { } + public bool CanContentScroll { get { throw null; } set { } } + public System.Windows.Visibility ComputedHorizontalScrollBarVisibility { get { throw null; } } + public System.Windows.Visibility ComputedVerticalScrollBarVisibility { get { throw null; } } + public double ContentHorizontalOffset { get { throw null; } } + public double ContentVerticalOffset { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Layout")] + public double ExtentHeight { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Layout")] + public double ExtentWidth { get { throw null; } } + protected internal override bool HandlesScrolling { get { throw null; } } + public double HorizontalOffset { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Controls.ScrollBarVisibility HorizontalScrollBarVisibility { get { throw null; } set { } } + public bool IsDeferredScrollingEnabled { get { throw null; } set { } } + public double PanningDeceleration { get { throw null; } set { } } + public System.Windows.Controls.PanningMode PanningMode { get { throw null; } set { } } + public double PanningRatio { get { throw null; } set { } } + public double ScrollableHeight { get { throw null; } } + public double ScrollableWidth { get { throw null; } } + protected internal System.Windows.Controls.Primitives.IScrollInfo ScrollInfo { get { throw null; } set { } } + public double VerticalOffset { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Controls.ScrollBarVisibility VerticalScrollBarVisibility { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Layout")] + public double ViewportHeight { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Layout")] + public double ViewportWidth { get { throw null; } } + [System.ComponentModel.CategoryAttribute("Action")] + public event System.Windows.Controls.ScrollChangedEventHandler ScrollChanged { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public static bool GetCanContentScroll(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Controls.ScrollBarVisibility GetHorizontalScrollBarVisibility(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsDeferredScrollingEnabled(System.Windows.DependencyObject element) { throw null; } + public static double GetPanningDeceleration(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Controls.PanningMode GetPanningMode(System.Windows.DependencyObject element) { throw null; } + public static double GetPanningRatio(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Controls.ScrollBarVisibility GetVerticalScrollBarVisibility(System.Windows.DependencyObject element) { throw null; } + protected override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + public void InvalidateScrollInfo() { } + public void LineDown() { } + public void LineLeft() { } + public void LineRight() { } + public void LineUp() { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnManipulationCompleted(System.Windows.Input.ManipulationCompletedEventArgs e) { } + protected override void OnManipulationDelta(System.Windows.Input.ManipulationDeltaEventArgs e) { } + protected override void OnManipulationInertiaStarting(System.Windows.Input.ManipulationInertiaStartingEventArgs e) { } + protected override void OnManipulationStarting(System.Windows.Input.ManipulationStartingEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected virtual void OnScrollChanged(System.Windows.Controls.ScrollChangedEventArgs e) { } + protected override void OnStylusSystemGesture(System.Windows.Input.StylusSystemGestureEventArgs e) { } + public void PageDown() { } + public void PageLeft() { } + public void PageRight() { } + public void PageUp() { } + public void ScrollToBottom() { } + public void ScrollToEnd() { } + public void ScrollToHome() { } + public void ScrollToHorizontalOffset(double offset) { } + public void ScrollToLeftEnd() { } + public void ScrollToRightEnd() { } + public void ScrollToTop() { } + public void ScrollToVerticalOffset(double offset) { } + public static void SetCanContentScroll(System.Windows.DependencyObject element, bool canContentScroll) { } + public static void SetHorizontalScrollBarVisibility(System.Windows.DependencyObject element, System.Windows.Controls.ScrollBarVisibility horizontalScrollBarVisibility) { } + public static void SetIsDeferredScrollingEnabled(System.Windows.DependencyObject element, bool value) { } + public static void SetPanningDeceleration(System.Windows.DependencyObject element, double value) { } + public static void SetPanningMode(System.Windows.DependencyObject element, System.Windows.Controls.PanningMode panningMode) { } + public static void SetPanningRatio(System.Windows.DependencyObject element, double value) { } + public static void SetVerticalScrollBarVisibility(System.Windows.DependencyObject element, System.Windows.Controls.ScrollBarVisibility verticalScrollBarVisibility) { } + } + public partial class SelectedCellsChangedEventArgs : System.EventArgs + { + public SelectedCellsChangedEventArgs(System.Collections.Generic.List addedCells, System.Collections.Generic.List removedCells) { } + public SelectedCellsChangedEventArgs(System.Collections.ObjectModel.ReadOnlyCollection addedCells, System.Collections.ObjectModel.ReadOnlyCollection removedCells) { } + public System.Collections.Generic.IList AddedCells { get { throw null; } } + public System.Collections.Generic.IList RemovedCells { get { throw null; } } + } + public delegate void SelectedCellsChangedEventHandler(object sender, System.Windows.Controls.SelectedCellsChangedEventArgs e); + public sealed partial class SelectedDatesCollection : System.Collections.ObjectModel.ObservableCollection + { + public SelectedDatesCollection(System.Windows.Controls.Calendar owner) { } + public void AddRange(System.DateTime start, System.DateTime end) { } + protected override void ClearItems() { } + protected override void InsertItem(int index, System.DateTime item) { } + protected override void RemoveItem(int index) { } + protected override void SetItem(int index, System.DateTime item) { } + } + public partial class SelectionChangedEventArgs : System.Windows.RoutedEventArgs + { + public SelectionChangedEventArgs(System.Windows.RoutedEvent id, System.Collections.IList removedItems, System.Collections.IList addedItems) { } + public System.Collections.IList AddedItems { get { throw null; } } + public System.Collections.IList RemovedItems { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void SelectionChangedEventHandler(object sender, System.Windows.Controls.SelectionChangedEventArgs e); + public enum SelectionMode + { + Single = 0, + Multiple = 1, + Extended = 2, + } + public enum SelectiveScrollingOrientation + { + None = 0, + Horizontal = 1, + Vertical = 2, + Both = 3, + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class Separator : System.Windows.Controls.Control + { + public Separator() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.ComponentModel.DefaultEventAttribute("ValueChanged")] + [System.ComponentModel.DefaultPropertyAttribute("Value")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + [System.Windows.TemplatePartAttribute(Name="PART_SelectionRange", Type=typeof(System.Windows.FrameworkElement))] + [System.Windows.TemplatePartAttribute(Name="PART_Track", Type=typeof(System.Windows.Controls.Primitives.Track))] + public partial class Slider : System.Windows.Controls.Primitives.RangeBase + { + public static readonly System.Windows.DependencyProperty AutoToolTipPlacementProperty; + public static readonly System.Windows.DependencyProperty AutoToolTipPrecisionProperty; + public static readonly System.Windows.DependencyProperty DelayProperty; + public static readonly System.Windows.DependencyProperty IntervalProperty; + public static readonly System.Windows.DependencyProperty IsDirectionReversedProperty; + public static readonly System.Windows.DependencyProperty IsMoveToPointEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSelectionRangeEnabledProperty; + public static readonly System.Windows.DependencyProperty IsSnapToTickEnabledProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public static readonly System.Windows.DependencyProperty SelectionEndProperty; + public static readonly System.Windows.DependencyProperty SelectionStartProperty; + public static readonly System.Windows.DependencyProperty TickFrequencyProperty; + public static readonly System.Windows.DependencyProperty TickPlacementProperty; + public static readonly System.Windows.DependencyProperty TicksProperty; + public Slider() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.Primitives.AutoToolTipPlacement AutoToolTipPlacement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public int AutoToolTipPrecision { get { throw null; } set { } } + public static System.Windows.Input.RoutedCommand DecreaseLarge { get { throw null; } } + public static System.Windows.Input.RoutedCommand DecreaseSmall { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public int Delay { get { throw null; } set { } } + public static System.Windows.Input.RoutedCommand IncreaseLarge { get { throw null; } } + public static System.Windows.Input.RoutedCommand IncreaseSmall { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public int Interval { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsDirectionReversed { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsMoveToPointEnabled { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsSelectionRangeEnabled { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsSnapToTickEnabled { get { throw null; } set { } } + public static System.Windows.Input.RoutedCommand MaximizeValue { get { throw null; } } + public static System.Windows.Input.RoutedCommand MinimizeValue { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double SelectionEnd { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double SelectionStart { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double TickFrequency { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Controls.Primitives.TickPlacement TickPlacement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.DoubleCollection Ticks { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDecreaseLarge() { } + protected virtual void OnDecreaseSmall() { } + protected virtual void OnIncreaseLarge() { } + protected virtual void OnIncreaseSmall() { } + protected virtual void OnMaximizeValue() { } + protected override void OnMaximumChanged(double oldMaximum, double newMaximum) { } + protected virtual void OnMinimizeValue() { } + protected override void OnMinimumChanged(double oldMinimum, double newMinimum) { } + protected override void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnThumbDragCompleted(System.Windows.Controls.Primitives.DragCompletedEventArgs e) { } + protected virtual void OnThumbDragDelta(System.Windows.Controls.Primitives.DragDeltaEventArgs e) { } + protected virtual void OnThumbDragStarted(System.Windows.Controls.Primitives.DragStartedEventArgs e) { } + protected override void OnValueChanged(double oldValue, double newValue) { } + } + public partial class SoundPlayerAction : System.Windows.TriggerAction, System.IDisposable + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public SoundPlayerAction() { } + public System.Uri Source { get { throw null; } set { } } + public void Dispose() { } + } + public sealed partial class SpellCheck + { + internal SpellCheck() { } + public static readonly System.Windows.DependencyProperty CustomDictionariesProperty; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty SpellingReformProperty; + public System.Collections.IList CustomDictionaries { get { throw null; } } + public bool IsEnabled { get { throw null; } set { } } + public System.Windows.Controls.SpellingReform SpellingReform { get { throw null; } set { } } + public static System.Collections.IList GetCustomDictionaries(System.Windows.Controls.Primitives.TextBoxBase textBoxBase) { throw null; } + public static bool GetIsEnabled(System.Windows.Controls.Primitives.TextBoxBase textBoxBase) { throw null; } + public static void SetIsEnabled(System.Windows.Controls.Primitives.TextBoxBase textBoxBase, bool value) { } + public static void SetSpellingReform(System.Windows.Controls.Primitives.TextBoxBase textBoxBase, System.Windows.Controls.SpellingReform value) { } + } + public partial class SpellingError + { + internal SpellingError() { } + public System.Collections.Generic.IEnumerable Suggestions { get { throw null; } } + public void Correct(string correctedText) { } + public void IgnoreAll() { } + } + public enum SpellingReform + { + PreAndPostreform = 0, + Prereform = 1, + Postreform = 2, + } + public partial class StackPanel : System.Windows.Controls.Panel, System.Windows.Controls.Primitives.IScrollInfo + { + public static readonly System.Windows.DependencyProperty OrientationProperty; + public StackPanel() { } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool CanHorizontallyScroll { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool CanVerticallyScroll { get { throw null; } set { } } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + protected internal override bool HasLogicalOrientation { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double HorizontalOffset { get { throw null; } } + protected internal override System.Windows.Controls.Orientation LogicalOrientation { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.ScrollViewer ScrollOwner { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double VerticalOffset { get { throw null; } } + public double ViewportHeight { get { throw null; } } + public double ViewportWidth { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public void LineDown() { } + public void LineLeft() { } + public void LineRight() { } + public void LineUp() { } + public System.Windows.Rect MakeVisible(System.Windows.Media.Visual visual, System.Windows.Rect rectangle) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public void MouseWheelDown() { } + public void MouseWheelLeft() { } + public void MouseWheelRight() { } + public void MouseWheelUp() { } + public void PageDown() { } + public void PageLeft() { } + public void PageRight() { } + public void PageUp() { } + public void SetHorizontalOffset(double offset) { } + public void SetVerticalOffset(double offset) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_CloseButton", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_ContentControl", Type=typeof(System.Windows.Controls.ContentControl))] + [System.Windows.TemplatePartAttribute(Name="PART_CopyMenuItem", Type=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_EraseMenuItem", Type=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_IconButton", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_InkMenuItem", Type=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_PasteMenuItem", Type=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_ResizeBottomRightThumb", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + [System.Windows.TemplatePartAttribute(Name="PART_SelectMenuItem", Type=typeof(System.Windows.Controls.MenuItem))] + [System.Windows.TemplatePartAttribute(Name="PART_TitleThumb", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + public sealed partial class StickyNoteControl : System.Windows.Controls.Control + { + internal StickyNoteControl() { } + public static readonly System.Windows.DependencyProperty AuthorProperty; + public static readonly System.Windows.DependencyProperty CaptionFontFamilyProperty; + public static readonly System.Windows.DependencyProperty CaptionFontSizeProperty; + public static readonly System.Windows.DependencyProperty CaptionFontStretchProperty; + public static readonly System.Windows.DependencyProperty CaptionFontStyleProperty; + public static readonly System.Windows.DependencyProperty CaptionFontWeightProperty; + public static readonly System.Windows.Input.RoutedCommand DeleteNoteCommand; + public static readonly System.Windows.Input.RoutedCommand InkCommand; + public static readonly System.Xml.XmlQualifiedName InkSchemaName; + public static readonly System.Windows.DependencyProperty IsActiveProperty; + public static readonly System.Windows.DependencyProperty IsExpandedProperty; + public static readonly System.Windows.DependencyProperty IsMouseOverAnchorProperty; + public static readonly System.Windows.DependencyProperty PenWidthProperty; + public static readonly System.Windows.DependencyProperty StickyNoteTypeProperty; + public static readonly System.Xml.XmlQualifiedName TextSchemaName; + public System.Windows.Annotations.IAnchorInfo AnchorInfo { get { throw null; } } + public string Author { get { throw null; } } + public System.Windows.Media.FontFamily CaptionFontFamily { get { throw null; } set { } } + public double CaptionFontSize { get { throw null; } set { } } + public System.Windows.FontStretch CaptionFontStretch { get { throw null; } set { } } + public System.Windows.FontStyle CaptionFontStyle { get { throw null; } set { } } + public System.Windows.FontWeight CaptionFontWeight { get { throw null; } set { } } + public bool IsActive { get { throw null; } } + public bool IsExpanded { get { throw null; } set { } } + public bool IsMouseOverAnchor { get { throw null; } } + public double PenWidth { get { throw null; } set { } } + public System.Windows.Controls.StickyNoteType StickyNoteType { get { throw null; } } + public override void OnApplyTemplate() { } + protected override void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs args) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs args) { } + protected override void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + } + public enum StickyNoteType + { + Text = 0, + Ink = 1, + } + public enum StretchDirection + { + UpOnly = 0, + DownOnly = 1, + Both = 2, + } + public partial class StyleSelector + { + public StyleSelector() { } + public virtual System.Windows.Style SelectStyle(object item, System.Windows.DependencyObject container) { throw null; } + } + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.TabItem))] + [System.Windows.TemplatePartAttribute(Name="PART_SelectedContentHost", Type=typeof(System.Windows.Controls.ContentPresenter))] + public partial class TabControl : System.Windows.Controls.Primitives.Selector + { + public static readonly System.Windows.DependencyProperty ContentStringFormatProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateProperty; + public static readonly System.Windows.DependencyProperty ContentTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty SelectedContentProperty; + public static readonly System.Windows.DependencyProperty SelectedContentStringFormatProperty; + public static readonly System.Windows.DependencyProperty SelectedContentTemplateProperty; + public static readonly System.Windows.DependencyProperty SelectedContentTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty TabStripPlacementProperty; + public TabControl() { } + public string ContentStringFormat { get { throw null; } set { } } + public System.Windows.DataTemplate ContentTemplate { get { throw null; } set { } } + public System.Windows.Controls.DataTemplateSelector ContentTemplateSelector { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public object SelectedContent { get { throw null; } } + public string SelectedContentStringFormat { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.DataTemplate SelectedContentTemplate { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.DataTemplateSelector SelectedContentTemplateSelector { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.Dock TabStripPlacement { get { throw null; } set { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnInitialized(System.EventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + } + [System.ComponentModel.DefaultEventAttribute("IsSelectedChanged")] + public partial class TabItem : System.Windows.Controls.HeaderedContentControl + { + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.DependencyProperty TabStripPlacementProperty; + public TabItem() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsSelected { get { throw null; } set { } } + public System.Windows.Controls.Dock TabStripPlacement { get { throw null; } } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected override void OnContentChanged(object oldContent, object newContent) { } + protected override void OnContentTemplateChanged(System.Windows.DataTemplate oldContentTemplate, System.Windows.DataTemplate newContentTemplate) { } + protected override void OnContentTemplateSelectorChanged(System.Windows.Controls.DataTemplateSelector oldContentTemplateSelector, System.Windows.Controls.DataTemplateSelector newContentTemplateSelector) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected virtual void OnSelected(System.Windows.RoutedEventArgs e) { } + protected virtual void OnUnselected(System.Windows.RoutedEventArgs e) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + [System.Windows.Markup.ContentPropertyAttribute("Inlines")] + public partial class TextBlock : System.Windows.FrameworkElement, System.IServiceProvider, System.Windows.IContentHost, System.Windows.Markup.IAddChild, System.Windows.Markup.IAddChildInternal + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BaselineOffsetProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStretchProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty IsHyphenationEnabledProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public static readonly System.Windows.DependencyProperty TextDecorationsProperty; + public static readonly System.Windows.DependencyProperty TextEffectsProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + public static readonly System.Windows.DependencyProperty TextTrimmingProperty; + public static readonly System.Windows.DependencyProperty TextWrappingProperty; + public TextBlock() { } + public TextBlock(System.Windows.Documents.Inline inline) { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public double BaselineOffset { get { throw null; } set { } } + public System.Windows.LineBreakCondition BreakAfter { get { throw null; } } + public System.Windows.LineBreakCondition BreakBefore { get { throw null; } } + public System.Windows.Documents.TextPointer ContentEnd { get { throw null; } } + public System.Windows.Documents.TextPointer ContentStart { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + public System.Windows.FontStretch FontStretch { get { throw null; } set { } } + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + protected virtual System.Collections.Generic.IEnumerator HostedElementsCore { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.InlineCollection Inlines { get { throw null; } } + public bool IsHyphenationEnabled { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + System.Collections.Generic.IEnumerator System.Windows.IContentHost.HostedElements { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + public string Text { get { throw null; } set { } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public System.Windows.TextDecorationCollection TextDecorations { get { throw null; } set { } } + public System.Windows.Media.TextEffectCollection TextEffects { get { throw null; } set { } } + public System.Windows.TextTrimming TextTrimming { get { throw null; } set { } } + public System.Windows.TextWrapping TextWrapping { get { throw null; } set { } } + public System.Windows.Documents.Typography Typography { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected sealed override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public static double GetBaselineOffset(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Media.FontFamily GetFontFamily(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + public static double GetFontSize(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontStretch GetFontStretch(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontStyle GetFontStyle(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontWeight GetFontWeight(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Media.Brush GetForeground(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public static double GetLineHeight(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.LineStackingStrategy GetLineStackingStrategy(System.Windows.DependencyObject element) { throw null; } + public System.Windows.Documents.TextPointer GetPositionFromPoint(System.Windows.Point point, bool snapToText) { throw null; } + protected virtual System.Collections.ObjectModel.ReadOnlyCollection GetRectanglesCore(System.Windows.ContentElement child) { throw null; } + public static System.Windows.TextAlignment GetTextAlignment(System.Windows.DependencyObject element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected sealed override System.Windows.Media.HitTestResult HitTestCore(System.Windows.Media.PointHitTestParameters hitTestParameters) { throw null; } + protected virtual System.Windows.IInputElement InputHitTestCore(System.Windows.Point point) { throw null; } + protected sealed override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected virtual void OnChildDesiredSizeChangedCore(System.Windows.UIElement child) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected sealed override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected sealed override void OnRender(System.Windows.Media.DrawingContext ctx) { } + public static void SetBaselineOffset(System.Windows.DependencyObject element, double value) { } + public static void SetFontFamily(System.Windows.DependencyObject element, System.Windows.Media.FontFamily value) { } + public static void SetFontSize(System.Windows.DependencyObject element, double value) { } + public static void SetFontStretch(System.Windows.DependencyObject element, System.Windows.FontStretch value) { } + public static void SetFontStyle(System.Windows.DependencyObject element, System.Windows.FontStyle value) { } + public static void SetFontWeight(System.Windows.DependencyObject element, System.Windows.FontWeight value) { } + public static void SetForeground(System.Windows.DependencyObject element, System.Windows.Media.Brush value) { } + public static void SetLineHeight(System.Windows.DependencyObject element, double value) { } + public static void SetLineStackingStrategy(System.Windows.DependencyObject element, System.Windows.LineStackingStrategy value) { } + public static void SetTextAlignment(System.Windows.DependencyObject element, System.Windows.TextAlignment value) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBaselineOffset() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInlines(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeText() { throw null; } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + System.Collections.ObjectModel.ReadOnlyCollection System.Windows.IContentHost.GetRectangles(System.Windows.ContentElement child) { throw null; } + System.Windows.IInputElement System.Windows.IContentHost.InputHitTest(System.Windows.Point point) { throw null; } + void System.Windows.IContentHost.OnChildDesiredSizeChanged(System.Windows.UIElement child) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + [System.Windows.Markup.ContentPropertyAttribute("Text")] + public partial class TextBox : System.Windows.Controls.Primitives.TextBoxBase, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CharacterCasingProperty; + public static readonly System.Windows.DependencyProperty MaxLengthProperty; + public static readonly System.Windows.DependencyProperty MaxLinesProperty; + public static readonly System.Windows.DependencyProperty MinLinesProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public static readonly System.Windows.DependencyProperty TextDecorationsProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + public static readonly System.Windows.DependencyProperty TextWrappingProperty; + public TextBox() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public int CaretIndex { get { throw null; } set { } } + public System.Windows.Controls.CharacterCasing CharacterCasing { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public int LineCount { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(0)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public int MaxLength { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(2147483647)] + public int MaxLines { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(1)] + public int MinLines { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public string SelectedText { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(0)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public int SelectionLength { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(0)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public int SelectionStart { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute("")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + public string Text { get { throw null; } set { } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public System.Windows.TextDecorationCollection TextDecorations { get { throw null; } set { } } + public System.Windows.TextWrapping TextWrapping { get { throw null; } set { } } + public System.Windows.Documents.Typography Typography { get { throw null; } } + public void Clear() { } + public int GetCharacterIndexFromLineIndex(int lineIndex) { throw null; } + public int GetCharacterIndexFromPoint(System.Windows.Point point, bool snapToText) { throw null; } + public int GetFirstVisibleLineIndex() { throw null; } + public int GetLastVisibleLineIndex() { throw null; } + public int GetLineIndexFromCharacterIndex(int charIndex) { throw null; } + public int GetLineLength(int lineIndex) { throw null; } + public string GetLineText(int lineIndex) { throw null; } + public int GetNextSpellingErrorCharacterIndex(int charIndex, System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Rect GetRectFromCharacterIndex(int charIndex) { throw null; } + public System.Windows.Rect GetRectFromCharacterIndex(int charIndex, bool trailingEdge) { throw null; } + public System.Windows.Controls.SpellingError GetSpellingError(int charIndex) { throw null; } + public int GetSpellingErrorLength(int charIndex) { throw null; } + public int GetSpellingErrorStart(int charIndex) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + public void ScrollToLine(int lineIndex) { } + public void Select(int start, int length) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeText(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TextChange + { + internal TextChange() { } + public int AddedLength { get { throw null; } } + public int Offset { get { throw null; } } + public int RemovedLength { get { throw null; } } + } + public partial class TextChangedEventArgs : System.Windows.RoutedEventArgs + { + public TextChangedEventArgs(System.Windows.RoutedEvent id, System.Windows.Controls.UndoAction action) { } + public TextChangedEventArgs(System.Windows.RoutedEvent id, System.Windows.Controls.UndoAction action, System.Collections.Generic.ICollection changes) { } + public System.Collections.Generic.ICollection Changes { get { throw null; } } + public System.Windows.Controls.UndoAction UndoAction { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void TextChangedEventHandler(object sender, System.Windows.Controls.TextChangedEventArgs e); + public sealed partial class TextSearch : System.Windows.DependencyObject + { + internal TextSearch() { } + public static readonly System.Windows.DependencyProperty TextPathProperty; + public static readonly System.Windows.DependencyProperty TextProperty; + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static string GetText(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static string GetTextPath(System.Windows.DependencyObject element) { throw null; } + public static void SetText(System.Windows.DependencyObject element, string text) { } + public static void SetTextPath(System.Windows.DependencyObject element, string path) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_ToolBarOverflowPanel", Type=typeof(System.Windows.Controls.Primitives.ToolBarOverflowPanel))] + [System.Windows.TemplatePartAttribute(Name="PART_ToolBarPanel", Type=typeof(System.Windows.Controls.Primitives.ToolBarPanel))] + public partial class ToolBar : System.Windows.Controls.HeaderedItemsControl + { + public static readonly System.Windows.DependencyProperty BandIndexProperty; + public static readonly System.Windows.DependencyProperty BandProperty; + public static readonly System.Windows.DependencyProperty HasOverflowItemsProperty; + public static readonly System.Windows.DependencyProperty IsOverflowItemProperty; + public static readonly System.Windows.DependencyProperty IsOverflowOpenProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public static readonly System.Windows.DependencyProperty OverflowModeProperty; + public ToolBar() { } + public int Band { get { throw null; } set { } } + public int BandIndex { get { throw null; } set { } } + public static System.Windows.ResourceKey ButtonStyleKey { get { throw null; } } + public static System.Windows.ResourceKey CheckBoxStyleKey { get { throw null; } } + public static System.Windows.ResourceKey ComboBoxStyleKey { get { throw null; } } + public bool HasOverflowItems { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsOverflowOpen { get { throw null; } set { } } + public static System.Windows.ResourceKey MenuStyleKey { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } } + public static System.Windows.ResourceKey RadioButtonStyleKey { get { throw null; } } + public static System.Windows.ResourceKey SeparatorStyleKey { get { throw null; } } + public static System.Windows.ResourceKey TextBoxStyleKey { get { throw null; } } + public static System.Windows.ResourceKey ToggleButtonStyleKey { get { throw null; } } + public static bool GetIsOverflowItem(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute(IncludeDescendants=true)] + public static System.Windows.Controls.OverflowMode GetOverflowMode(System.Windows.DependencyObject element) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public static void SetOverflowMode(System.Windows.DependencyObject element, System.Windows.Controls.OverflowMode mode) { } + } + [System.Windows.Markup.ContentPropertyAttribute("ToolBars")] + public partial class ToolBarTray : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty IsLockedProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public ToolBarTray() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public bool IsLocked { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.ObjectModel.Collection ToolBars { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public static bool GetIsLocked(System.Windows.DependencyObject element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + public static void SetIsLocked(System.Windows.DependencyObject element, bool value) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.ComponentModel.DefaultEventAttribute("Opened")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.ToolTip)] + public partial class ToolTip : System.Windows.Controls.ContentControl + { + public static readonly System.Windows.RoutedEvent ClosedEvent; + public static readonly System.Windows.DependencyProperty CustomPopupPlacementCallbackProperty; + public static readonly System.Windows.DependencyProperty HasDropShadowProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty IsOpenProperty; + public static readonly System.Windows.RoutedEvent OpenedEvent; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty PlacementRectangleProperty; + public static readonly System.Windows.DependencyProperty PlacementTargetProperty; + public static readonly System.Windows.DependencyProperty StaysOpenProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public ToolTip() { } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.CustomPopupPlacementCallback CustomPopupPlacementCallback { get { throw null; } set { } } + public bool HasDropShadow { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double HorizontalOffset { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool IsOpen { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.PlacementMode Placement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Rect PlacementRectangle { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.UIElement PlacementTarget { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool StaysOpen { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double VerticalOffset { get { throw null; } set { } } + public event System.Windows.RoutedEventHandler Closed { add { } remove { } } + public event System.Windows.RoutedEventHandler Opened { add { } remove { } } + protected virtual void OnClosed(System.Windows.RoutedEventArgs e) { } + protected override void OnContentChanged(object oldContent, object newContent) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnOpened(System.Windows.RoutedEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + } + public sealed partial class ToolTipEventArgs : System.Windows.RoutedEventArgs + { + internal ToolTipEventArgs() { } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void ToolTipEventHandler(object sender, System.Windows.Controls.ToolTipEventArgs e); + public static partial class ToolTipService + { + public static readonly System.Windows.DependencyProperty BetweenShowDelayProperty; + public static readonly System.Windows.DependencyProperty HasDropShadowProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty InitialShowDelayProperty; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty IsOpenProperty; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty PlacementRectangleProperty; + public static readonly System.Windows.DependencyProperty PlacementTargetProperty; + public static readonly System.Windows.DependencyProperty ShowDurationProperty; + public static readonly System.Windows.DependencyProperty ShowOnDisabledProperty; + public static readonly System.Windows.RoutedEvent ToolTipClosingEvent; + public static readonly System.Windows.RoutedEvent ToolTipOpeningEvent; + public static readonly System.Windows.DependencyProperty ToolTipProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public static void AddToolTipClosingHandler(System.Windows.DependencyObject element, System.Windows.Controls.ToolTipEventHandler handler) { } + public static void AddToolTipOpeningHandler(System.Windows.DependencyObject element, System.Windows.Controls.ToolTipEventHandler handler) { } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetBetweenShowDelay(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetHasDropShadow(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static double GetHorizontalOffset(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetInitialShowDelay(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsEnabled(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsOpen(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Controls.Primitives.PlacementMode GetPlacement(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Rect GetPlacementRectangle(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.UIElement GetPlacementTarget(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetShowDuration(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetShowOnDisabled(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static object GetToolTip(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static double GetVerticalOffset(System.Windows.DependencyObject element) { throw null; } + public static void RemoveToolTipClosingHandler(System.Windows.DependencyObject element, System.Windows.Controls.ToolTipEventHandler handler) { } + public static void RemoveToolTipOpeningHandler(System.Windows.DependencyObject element, System.Windows.Controls.ToolTipEventHandler handler) { } + public static void SetBetweenShowDelay(System.Windows.DependencyObject element, int value) { } + public static void SetHasDropShadow(System.Windows.DependencyObject element, bool value) { } + public static void SetHorizontalOffset(System.Windows.DependencyObject element, double value) { } + public static void SetInitialShowDelay(System.Windows.DependencyObject element, int value) { } + public static void SetIsEnabled(System.Windows.DependencyObject element, bool value) { } + public static void SetPlacement(System.Windows.DependencyObject element, System.Windows.Controls.Primitives.PlacementMode value) { } + public static void SetPlacementRectangle(System.Windows.DependencyObject element, System.Windows.Rect value) { } + public static void SetPlacementTarget(System.Windows.DependencyObject element, System.Windows.UIElement value) { } + public static void SetShowDuration(System.Windows.DependencyObject element, int value) { } + public static void SetShowOnDisabled(System.Windows.DependencyObject element, bool value) { } + public static void SetToolTip(System.Windows.DependencyObject element, object value) { } + public static void SetVerticalOffset(System.Windows.DependencyObject element, double value) { } + } + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.TreeViewItem))] + public partial class TreeView : System.Windows.Controls.ItemsControl + { + public static readonly System.Windows.RoutedEvent SelectedItemChangedEvent; + public static readonly System.Windows.DependencyProperty SelectedItemProperty; + public static readonly System.Windows.DependencyProperty SelectedValuePathProperty; + public static readonly System.Windows.DependencyProperty SelectedValueProperty; + public TreeView() { } + protected internal override bool HandlesScrolling { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.ComponentModel.ReadOnlyAttribute(true)] + public object SelectedItem { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.ComponentModel.ReadOnlyAttribute(true)] + public object SelectedValue { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public string SelectedValuePath { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedPropertyChangedEventHandler SelectedItemChanged { add { } remove { } } + protected virtual bool ExpandSubtree(System.Windows.Controls.TreeViewItem container) { throw null; } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected virtual void OnSelectedItemChanged(System.Windows.RoutedPropertyChangedEventArgs e) { } + } + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.TreeViewItem))] + [System.Windows.TemplatePartAttribute(Name="ItemsHost", Type=typeof(System.Windows.Controls.ItemsPresenter))] + [System.Windows.TemplatePartAttribute(Name="PART_Header", Type=typeof(System.Windows.FrameworkElement))] + public partial class TreeViewItem : System.Windows.Controls.HeaderedItemsControl, System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo + { + public static readonly System.Windows.RoutedEvent CollapsedEvent; + public static readonly System.Windows.RoutedEvent ExpandedEvent; + public static readonly System.Windows.DependencyProperty IsExpandedProperty; + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.RoutedEvent SelectedEvent; + public static readonly System.Windows.RoutedEvent UnselectedEvent; + public TreeViewItem() { } + public bool IsExpanded { get { throw null; } set { } } + public bool IsSelected { get { throw null; } set { } } + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool IsSelectionActive { get { throw null; } } + System.Windows.Controls.HierarchicalVirtualizationConstraints System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.Constraints { get { throw null; } set { } } + System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.HeaderDesiredSizes { get { throw null; } } + bool System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.InBackgroundLayout { get { throw null; } set { } } + System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.ItemDesiredSizes { get { throw null; } set { } } + System.Windows.Controls.Panel System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.ItemsHost { get { throw null; } } + bool System.Windows.Controls.Primitives.IHierarchicalVirtualizationAndScrollInfo.MustDisableVirtualization { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Collapsed { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Expanded { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Selected { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Unselected { add { } remove { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + public void ExpandSubtree() { } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected virtual void OnCollapsed(System.Windows.RoutedEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnExpanded(System.Windows.RoutedEventArgs e) { } + protected override void OnGotFocus(System.Windows.RoutedEventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected virtual void OnSelected(System.Windows.RoutedEventArgs e) { } + protected virtual void OnUnselected(System.Windows.RoutedEventArgs e) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + } + public partial class UIElementCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public UIElementCollection(System.Windows.UIElement visualParent, System.Windows.FrameworkElement logicalParent) { } + public virtual int Capacity { get { throw null; } set { } } + public virtual int Count { get { throw null; } } + public virtual bool IsSynchronized { get { throw null; } } + public virtual System.Windows.UIElement this[int index] { get { throw null; } set { } } + public virtual object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public virtual int Add(System.Windows.UIElement element) { throw null; } + public virtual void Clear() { } + protected void ClearLogicalParent(System.Windows.UIElement element) { } + public virtual bool Contains(System.Windows.UIElement element) { throw null; } + public virtual void CopyTo(System.Array array, int index) { } + public virtual void CopyTo(System.Windows.UIElement[] array, int index) { } + public virtual System.Collections.IEnumerator GetEnumerator() { throw null; } + public virtual int IndexOf(System.Windows.UIElement element) { throw null; } + public virtual void Insert(int index, System.Windows.UIElement element) { } + public virtual void Remove(System.Windows.UIElement element) { } + public virtual void RemoveAt(int index) { } + public virtual void RemoveRange(int index, int count) { } + protected void SetLogicalParent(System.Windows.UIElement element) { } + int System.Collections.IList.Add(object value) { throw null; } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + } + public enum UndoAction + { + None = 0, + Merge = 1, + Undo = 2, + Redo = 3, + Clear = 4, + Create = 5, + } + public partial class UserControl : System.Windows.Controls.ContentControl + { + public UserControl() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public static partial class Validation + { + public static readonly System.Windows.RoutedEvent ErrorEvent; + public static readonly System.Windows.DependencyProperty ErrorsProperty; + public static readonly System.Windows.DependencyProperty ErrorTemplateProperty; + public static readonly System.Windows.DependencyProperty HasErrorProperty; + public static readonly System.Windows.DependencyProperty ValidationAdornerSiteForProperty; + public static readonly System.Windows.DependencyProperty ValidationAdornerSiteProperty; + public static void AddErrorHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static void ClearInvalid(System.Windows.Data.BindingExpressionBase bindingExpression) { } + public static System.Collections.ObjectModel.ReadOnlyObservableCollection GetErrors(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Controls.ControlTemplate GetErrorTemplate(System.Windows.DependencyObject element) { throw null; } + public static bool GetHasError(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.DependencyObject GetValidationAdornerSite(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.DependencyObject GetValidationAdornerSiteFor(System.Windows.DependencyObject element) { throw null; } + public static void MarkInvalid(System.Windows.Data.BindingExpressionBase bindingExpression, System.Windows.Controls.ValidationError validationError) { } + public static void RemoveErrorHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static void SetErrorTemplate(System.Windows.DependencyObject element, System.Windows.Controls.ControlTemplate value) { } + public static void SetValidationAdornerSite(System.Windows.DependencyObject element, System.Windows.DependencyObject value) { } + public static void SetValidationAdornerSiteFor(System.Windows.DependencyObject element, System.Windows.DependencyObject value) { } + } + public partial class ValidationError + { + public ValidationError(System.Windows.Controls.ValidationRule ruleInError, object bindingInError) { } + public ValidationError(System.Windows.Controls.ValidationRule ruleInError, object bindingInError, object errorContent, System.Exception exception) { } + public object BindingInError { get { throw null; } } + public object ErrorContent { get { throw null; } set { } } + public System.Exception Exception { get { throw null; } set { } } + public System.Windows.Controls.ValidationRule RuleInError { get { throw null; } set { } } + } + public enum ValidationErrorEventAction + { + Added = 0, + Removed = 1, + } + public partial class ValidationErrorEventArgs : System.Windows.RoutedEventArgs + { + internal ValidationErrorEventArgs() { } + public System.Windows.Controls.ValidationErrorEventAction Action { get { throw null; } } + public System.Windows.Controls.ValidationError Error { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public partial class ValidationResult + { + public ValidationResult(bool isValid, object errorContent) { } + public object ErrorContent { get { throw null; } } + public bool IsValid { get { throw null; } } + public static System.Windows.Controls.ValidationResult ValidResult { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.ValidationResult left, System.Windows.Controls.ValidationResult right) { throw null; } + public static bool operator !=(System.Windows.Controls.ValidationResult left, System.Windows.Controls.ValidationResult right) { throw null; } + } + public abstract partial class ValidationRule + { + protected ValidationRule() { } + protected ValidationRule(System.Windows.Controls.ValidationStep validationStep, bool validatesOnTargetUpdated) { } + public bool ValidatesOnTargetUpdated { get { throw null; } set { } } + public System.Windows.Controls.ValidationStep ValidationStep { get { throw null; } set { } } + public abstract System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo); + public virtual System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo, System.Windows.Data.BindingExpressionBase owner) { throw null; } + public virtual System.Windows.Controls.ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo, System.Windows.Data.BindingGroup owner) { throw null; } + } + public enum ValidationStep + { + RawProposedValue = 0, + ConvertedProposedValue = 1, + UpdatedValue = 2, + CommittedValue = 3, + } + public abstract partial class ViewBase : System.Windows.DependencyObject + { + protected ViewBase() { } + protected internal virtual object DefaultStyleKey { get { throw null; } } + protected internal virtual object ItemContainerDefaultStyleKey { get { throw null; } } + protected internal virtual void ClearItem(System.Windows.Controls.ListViewItem item) { } + protected internal virtual System.Windows.Automation.Peers.IViewAutomationPeer GetAutomationPeer(System.Windows.Controls.ListView parent) { throw null; } + protected internal virtual void PrepareItem(System.Windows.Controls.ListViewItem item) { } + } + public partial class Viewbox : System.Windows.Controls.Decorator + { + public static readonly System.Windows.DependencyProperty StretchDirectionProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public Viewbox() { } + public override System.Windows.UIElement Child { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Controls.StretchDirection StretchDirection { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public partial class Viewport3D : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CameraProperty; + public static readonly System.Windows.DependencyProperty ChildrenProperty; + public Viewport3D() { } + public System.Windows.Media.Media3D.Camera Camera { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Media.Media3D.Visual3DCollection Children { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.Controls.VirtualizationCacheLengthConverter))] + public partial struct VirtualizationCacheLength : System.IEquatable + { + public VirtualizationCacheLength(double cacheBeforeAndAfterViewport) { throw null; } + public VirtualizationCacheLength(double cacheBeforeViewport, double cacheAfterViewport) { throw null; } + public double CacheAfterViewport { get { throw null; } } + public double CacheBeforeViewport { get { throw null; } } + public override bool Equals(object oCompare) { throw null; } + public bool Equals(System.Windows.Controls.VirtualizationCacheLength cacheLength) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.VirtualizationCacheLength cl1, System.Windows.Controls.VirtualizationCacheLength cl2) { throw null; } + public static bool operator !=(System.Windows.Controls.VirtualizationCacheLength cl1, System.Windows.Controls.VirtualizationCacheLength cl2) { throw null; } + public override string ToString() { throw null; } + } + public partial class VirtualizationCacheLengthConverter : System.ComponentModel.TypeConverter + { + public VirtualizationCacheLengthConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public enum VirtualizationCacheLengthUnit + { + Pixel = 0, + Item = 1, + Page = 2, + } + public enum VirtualizationMode + { + Standard = 0, + Recycling = 1, + } + public abstract partial class VirtualizingPanel : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty CacheLengthProperty; + public static readonly System.Windows.DependencyProperty CacheLengthUnitProperty; + public static readonly System.Windows.DependencyProperty IsContainerVirtualizableProperty; + public static readonly System.Windows.DependencyProperty IsVirtualizingProperty; + public static readonly System.Windows.DependencyProperty IsVirtualizingWhenGroupingProperty; + public static readonly System.Windows.DependencyProperty ScrollUnitProperty; + public static readonly System.Windows.DependencyProperty VirtualizationModeProperty; + protected VirtualizingPanel() { } + public bool CanHierarchicallyScrollAndVirtualize { get { throw null; } } + protected virtual bool CanHierarchicallyScrollAndVirtualizeCore { get { throw null; } } + public System.Windows.Controls.Primitives.IItemContainerGenerator ItemContainerGenerator { get { throw null; } } + protected void AddInternalChild(System.Windows.UIElement child) { } + protected internal virtual void BringIndexIntoView(int index) { } + public void BringIndexIntoViewPublic(int index) { } + public static System.Windows.Controls.VirtualizationCacheLength GetCacheLength(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Controls.VirtualizationCacheLengthUnit GetCacheLengthUnit(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsContainerVirtualizable(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsVirtualizing(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsVirtualizingWhenGrouping(System.Windows.DependencyObject element) { throw null; } + public double GetItemOffset(System.Windows.UIElement child) { throw null; } + protected virtual double GetItemOffsetCore(System.Windows.UIElement child) { throw null; } + public static System.Windows.Controls.ScrollUnit GetScrollUnit(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Controls.VirtualizationMode GetVirtualizationMode(System.Windows.DependencyObject element) { throw null; } + protected void InsertInternalChild(int index, System.Windows.UIElement child) { } + protected virtual void OnClearChildren() { } + protected virtual void OnItemsChanged(object sender, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { } + protected void RemoveInternalChildRange(int index, int range) { } + public static void SetCacheLength(System.Windows.DependencyObject element, System.Windows.Controls.VirtualizationCacheLength value) { } + public static void SetCacheLengthUnit(System.Windows.DependencyObject element, System.Windows.Controls.VirtualizationCacheLengthUnit value) { } + public static void SetIsContainerVirtualizable(System.Windows.DependencyObject element, bool value) { } + public static void SetIsVirtualizing(System.Windows.DependencyObject element, bool value) { } + public static void SetIsVirtualizingWhenGrouping(System.Windows.DependencyObject element, bool value) { } + public static void SetScrollUnit(System.Windows.DependencyObject element, System.Windows.Controls.ScrollUnit value) { } + public static void SetVirtualizationMode(System.Windows.DependencyObject element, System.Windows.Controls.VirtualizationMode value) { } + public bool ShouldItemsChangeAffectLayout(bool areItemChangesLocal, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { throw null; } + protected virtual bool ShouldItemsChangeAffectLayoutCore(bool areItemChangesLocal, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { throw null; } + } + public partial class VirtualizingStackPanel : System.Windows.Controls.VirtualizingPanel, System.Windows.Controls.Primitives.IScrollInfo + { + public static readonly System.Windows.RoutedEvent CleanUpVirtualizedItemEvent; + public static readonly new System.Windows.DependencyProperty IsVirtualizingProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public static readonly new System.Windows.DependencyProperty VirtualizationModeProperty; + public VirtualizingStackPanel() { } + protected override bool CanHierarchicallyScrollAndVirtualizeCore { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool CanHorizontallyScroll { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool CanVerticallyScroll { get { throw null; } set { } } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + protected internal override bool HasLogicalOrientation { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double HorizontalOffset { get { throw null; } } + protected internal override System.Windows.Controls.Orientation LogicalOrientation { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Controls.ScrollViewer ScrollOwner { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double VerticalOffset { get { throw null; } } + public double ViewportHeight { get { throw null; } } + public double ViewportWidth { get { throw null; } } + public static void AddCleanUpVirtualizedItemHandler(System.Windows.DependencyObject element, System.Windows.Controls.CleanUpVirtualizedItemEventHandler handler) { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected internal override void BringIndexIntoView(int index) { } + protected override double GetItemOffsetCore(System.Windows.UIElement child) { throw null; } + public virtual void LineDown() { } + public virtual void LineLeft() { } + public virtual void LineRight() { } + public virtual void LineUp() { } + public System.Windows.Rect MakeVisible(System.Windows.Media.Visual visual, System.Windows.Rect rectangle) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public virtual void MouseWheelDown() { } + public virtual void MouseWheelLeft() { } + public virtual void MouseWheelRight() { } + public virtual void MouseWheelUp() { } + protected virtual void OnCleanUpVirtualizedItem(System.Windows.Controls.CleanUpVirtualizedItemEventArgs e) { } + protected override void OnClearChildren() { } + protected override void OnItemsChanged(object sender, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { } + protected virtual void OnViewportOffsetChanged(System.Windows.Vector oldViewportOffset, System.Windows.Vector newViewportOffset) { } + protected virtual void OnViewportSizeChanged(System.Windows.Size oldViewportSize, System.Windows.Size newViewportSize) { } + public virtual void PageDown() { } + public virtual void PageLeft() { } + public virtual void PageRight() { } + public virtual void PageUp() { } + public static void RemoveCleanUpVirtualizedItemHandler(System.Windows.DependencyObject element, System.Windows.Controls.CleanUpVirtualizedItemEventHandler handler) { } + public void SetHorizontalOffset(double offset) { } + public void SetVerticalOffset(double offset) { } + protected override bool ShouldItemsChangeAffectLayoutCore(bool areItemChangesLocal, System.Windows.Controls.Primitives.ItemsChangedEventArgs args) { throw null; } + } + public sealed partial class WebBrowser : System.Windows.Interop.ActiveXHost + { + public WebBrowser() { } + public bool CanGoBack { get { throw null; } } + public bool CanGoForward { get { throw null; } } + public object Document { get { throw null; } } + public object ObjectForScripting { get { throw null; } set { } } + public System.Uri Source { get { throw null; } set { } } + public event System.Windows.Navigation.LoadCompletedEventHandler LoadCompleted { add { } remove { } } + public event System.Windows.Navigation.NavigatedEventHandler Navigated { add { } remove { } } + public event System.Windows.Navigation.NavigatingCancelEventHandler Navigating { add { } remove { } } + public void GoBack() { } + public void GoForward() { } + public object InvokeScript(string scriptName) { throw null; } + public object InvokeScript(string scriptName, params object[] args) { throw null; } + public void Navigate(string source) { } + public void Navigate(string source, string targetFrameName, byte[] postData, string additionalHeaders) { } + public void Navigate(System.Uri source) { } + public void Navigate(System.Uri source, string targetFrameName, byte[] postData, string additionalHeaders) { } + public void NavigateToStream(System.IO.Stream stream) { } + public void NavigateToString(string text) { } + public void Refresh() { } + public void Refresh(bool noCache) { } + protected override bool TabIntoCore(System.Windows.Input.TraversalRequest request) { throw null; } + protected override bool TranslateAcceleratorCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + } + public partial class WrapPanel : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty ItemHeightProperty; + public static readonly System.Windows.DependencyProperty ItemWidthProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public WrapPanel() { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double ItemHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double ItemWidth { get { throw null; } set { } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } +} +namespace System.Windows.Controls.Primitives +{ + public enum AutoToolTipPlacement + { + None = 0, + TopLeft = 1, + BottomRight = 2, + } + public partial class BulletDecorator : System.Windows.Controls.Decorator + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public BulletDecorator() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public System.Windows.UIElement Bullet { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + } + [System.ComponentModel.DefaultEventAttribute("Click")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Button)] + public abstract partial class ButtonBase : System.Windows.Controls.ContentControl, System.Windows.Input.ICommandSource + { + public static readonly System.Windows.RoutedEvent ClickEvent; + public static readonly System.Windows.DependencyProperty ClickModeProperty; + public static readonly System.Windows.DependencyProperty CommandParameterProperty; + public static readonly System.Windows.DependencyProperty CommandProperty; + public static readonly System.Windows.DependencyProperty CommandTargetProperty; + public static readonly System.Windows.DependencyProperty IsPressedProperty; + protected ButtonBase() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public System.Windows.Controls.ClickMode ClickMode { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object CommandParameter { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + public System.Windows.IInputElement CommandTarget { get { throw null; } set { } } + protected override bool IsEnabledCore { get { throw null; } } + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool IsPressed { get { throw null; } protected set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Click { add { } remove { } } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs e) { } + protected virtual void OnClick() { } + protected virtual void OnIsPressedChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected internal override void OnRenderSizeChanged(System.Windows.SizeChangedInfo sizeInfo) { } + } + public sealed partial class CalendarButton : System.Windows.Controls.Button + { + public static readonly System.Windows.DependencyProperty HasSelectedDaysProperty; + public static readonly System.Windows.DependencyProperty IsInactiveProperty; + public CalendarButton() { } + public bool HasSelectedDays { get { throw null; } } + public bool IsInactive { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public sealed partial class CalendarDayButton : System.Windows.Controls.Button + { + public static readonly System.Windows.DependencyProperty IsBlackedOutProperty; + public static readonly System.Windows.DependencyProperty IsHighlightedProperty; + public static readonly System.Windows.DependencyProperty IsInactiveProperty; + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.DependencyProperty IsTodayProperty; + public CalendarDayButton() { } + public bool IsBlackedOut { get { throw null; } } + public bool IsHighlighted { get { throw null; } } + public bool IsInactive { get { throw null; } } + public bool IsSelected { get { throw null; } } + public bool IsToday { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + [System.Windows.TemplatePartAttribute(Name="DayTitleTemplate", Type=typeof(System.Windows.DataTemplate))] + [System.Windows.TemplatePartAttribute(Name="PART_DisabledVisual", Type=typeof(System.Windows.FrameworkElement))] + [System.Windows.TemplatePartAttribute(Name="PART_HeaderButton", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_MonthView", Type=typeof(System.Windows.Controls.Grid))] + [System.Windows.TemplatePartAttribute(Name="PART_NextButton", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_PreviousButton", Type=typeof(System.Windows.Controls.Button))] + [System.Windows.TemplatePartAttribute(Name="PART_Root", Type=typeof(System.Windows.FrameworkElement))] + [System.Windows.TemplatePartAttribute(Name="PART_YearView", Type=typeof(System.Windows.Controls.Grid))] + public sealed partial class CalendarItem : System.Windows.Controls.Control + { + public CalendarItem() { } + public static System.Windows.ComponentResourceKey DayTitleTemplateResourceKey { get { throw null; } } + public override void OnApplyTemplate() { } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + } + public partial struct CustomPopupPlacement + { + public CustomPopupPlacement(System.Windows.Point point, System.Windows.Controls.Primitives.PopupPrimaryAxis primaryAxis) { throw null; } + public System.Windows.Point Point { get { throw null; } set { } } + public System.Windows.Controls.Primitives.PopupPrimaryAxis PrimaryAxis { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.Primitives.CustomPopupPlacement placement1, System.Windows.Controls.Primitives.CustomPopupPlacement placement2) { throw null; } + public static bool operator !=(System.Windows.Controls.Primitives.CustomPopupPlacement placement1, System.Windows.Controls.Primitives.CustomPopupPlacement placement2) { throw null; } + } + public delegate System.Windows.Controls.Primitives.CustomPopupPlacement[] CustomPopupPlacementCallback(System.Windows.Size popupSize, System.Windows.Size targetSize, System.Windows.Point offset); + public partial class DataGridCellsPresenter : System.Windows.Controls.ItemsControl + { + public DataGridCellsPresenter() { } + public object Item { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + public override void OnApplyTemplate() { } + protected internal virtual void OnColumnsChanged(System.Collections.ObjectModel.ObservableCollection columns, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected virtual void OnItemChanged(object oldItem, object newItem) { } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_LeftHeaderGripper", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + [System.Windows.TemplatePartAttribute(Name="PART_RightHeaderGripper", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + public partial class DataGridColumnHeader : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.DependencyProperty CanUserSortProperty; + public static readonly System.Windows.DependencyProperty DisplayIndexProperty; + public static readonly System.Windows.DependencyProperty IsFrozenProperty; + public static readonly System.Windows.DependencyProperty SeparatorBrushProperty; + public static readonly System.Windows.DependencyProperty SeparatorVisibilityProperty; + public static readonly System.Windows.DependencyProperty SortDirectionProperty; + public DataGridColumnHeader() { } + public bool CanUserSort { get { throw null; } } + public System.Windows.Controls.DataGridColumn Column { get { throw null; } } + public static System.Windows.ComponentResourceKey ColumnFloatingHeaderStyleKey { get { throw null; } } + public static System.Windows.ComponentResourceKey ColumnHeaderDropSeparatorStyleKey { get { throw null; } } + public int DisplayIndex { get { throw null; } } + public bool IsFrozen { get { throw null; } } + public System.Windows.Media.Brush SeparatorBrush { get { throw null; } set { } } + public System.Windows.Visibility SeparatorVisibility { get { throw null; } set { } } + public System.ComponentModel.ListSortDirection? SortDirection { get { throw null; } } + public override void OnApplyTemplate() { } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_FillerColumnHeader", Type=typeof(System.Windows.Controls.Primitives.DataGridColumnHeader))] + public partial class DataGridColumnHeadersPresenter : System.Windows.Controls.ItemsControl + { + public DataGridColumnHeadersPresenter() { } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + public override void OnApplyTemplate() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + } + public partial class DataGridDetailsPresenter : System.Windows.Controls.ContentPresenter + { + public DataGridDetailsPresenter() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_BottomHeaderGripper", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + [System.Windows.TemplatePartAttribute(Name="PART_TopHeaderGripper", Type=typeof(System.Windows.Controls.Primitives.Thumb))] + public partial class DataGridRowHeader : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.DependencyProperty IsRowSelectedProperty; + public static readonly System.Windows.DependencyProperty SeparatorBrushProperty; + public static readonly System.Windows.DependencyProperty SeparatorVisibilityProperty; + public DataGridRowHeader() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsRowSelected { get { throw null; } } + public System.Windows.Media.Brush SeparatorBrush { get { throw null; } set { } } + public System.Windows.Visibility SeparatorVisibility { get { throw null; } set { } } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + public override void OnApplyTemplate() { } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public partial class DataGridRowsPresenter : System.Windows.Controls.VirtualizingStackPanel + { + public DataGridRowsPresenter() { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnCleanUpVirtualizedItem(System.Windows.Controls.CleanUpVirtualizedItemEventArgs e) { } + protected override void OnIsItemsHostChanged(bool oldIsItemsHost, bool newIsItemsHost) { } + protected override void OnViewportSizeChanged(System.Windows.Size oldViewportSize, System.Windows.Size newViewportSize) { } + } + [System.Windows.TemplatePartAttribute(Name="PART_Watermark", Type=typeof(System.Windows.Controls.ContentControl))] + public sealed partial class DatePickerTextBox : System.Windows.Controls.TextBox + { + public DatePickerTextBox() { } + public override void OnApplyTemplate() { } + protected override void OnGotFocus(System.Windows.RoutedEventArgs e) { } + } + public partial class DocumentPageView : System.Windows.FrameworkElement, System.IDisposable, System.IServiceProvider + { + public static readonly System.Windows.DependencyProperty PageNumberProperty; + public static readonly System.Windows.DependencyProperty StretchDirectionProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public DocumentPageView() { } + public System.Windows.Documents.DocumentPage DocumentPage { get { throw null; } } + public System.Windows.Documents.DocumentPaginator DocumentPaginator { get { throw null; } set { } } + protected bool IsDisposed { get { throw null; } } + public int PageNumber { get { throw null; } set { } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Controls.StretchDirection StretchDirection { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + public event System.EventHandler PageConnected { add { } remove { } } + public event System.EventHandler PageDisconnected { add { } remove { } } + protected sealed override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected void Dispose() { } + protected object GetService(System.Type serviceType) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected sealed override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpiScaleInfo, System.Windows.DpiScale newDpiScaleInfo) { } + void System.IDisposable.Dispose() { } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Document")] + public abstract partial class DocumentViewerBase : System.Windows.Controls.Control, System.IServiceProvider, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CanGoToNextPageProperty; + protected static readonly System.Windows.DependencyPropertyKey CanGoToNextPagePropertyKey; + public static readonly System.Windows.DependencyProperty CanGoToPreviousPageProperty; + protected static readonly System.Windows.DependencyPropertyKey CanGoToPreviousPagePropertyKey; + public static readonly System.Windows.DependencyProperty DocumentProperty; + public static readonly System.Windows.DependencyProperty IsMasterPageProperty; + public static readonly System.Windows.DependencyProperty MasterPageNumberProperty; + protected static readonly System.Windows.DependencyPropertyKey MasterPageNumberPropertyKey; + public static readonly System.Windows.DependencyProperty PageCountProperty; + protected static readonly System.Windows.DependencyPropertyKey PageCountPropertyKey; + protected DocumentViewerBase() { } + public virtual bool CanGoToNextPage { get { throw null; } } + public virtual bool CanGoToPreviousPage { get { throw null; } } + public System.Windows.Documents.IDocumentPaginatorSource Document { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public virtual int MasterPageNumber { get { throw null; } } + public int PageCount { get { throw null; } } + [System.CLSCompliantAttribute(false)] + public System.Collections.ObjectModel.ReadOnlyCollection PageViews { get { throw null; } } + public event System.EventHandler PageViewsChanged { add { } remove { } } + public void CancelPrint() { } + public virtual bool CanGoToPage(int pageNumber) { throw null; } + public void FirstPage() { } + public static bool GetIsMasterPage(System.Windows.DependencyObject element) { throw null; } + protected System.Windows.Controls.Primitives.DocumentPageView GetMasterPageView() { throw null; } + protected virtual System.Collections.ObjectModel.ReadOnlyCollection GetPageViewsCollection(out bool changed) { throw null; } + public void GoToPage(int pageNumber) { } + protected void InvalidatePageViews() { } + public void LastPage() { } + public void NextPage() { } + public override void OnApplyTemplate() { } + protected virtual void OnBringIntoView(System.Windows.DependencyObject element, System.Windows.Rect rect, int pageNumber) { } + protected virtual void OnCancelPrintCommand() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDocumentChanged() { } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpiScaleInfo, System.Windows.DpiScale newDpiScaleInfo) { } + protected virtual void OnFirstPageCommand() { } + protected virtual void OnGoToPageCommand(int pageNumber) { } + protected virtual void OnLastPageCommand() { } + protected virtual void OnMasterPageNumberChanged() { } + protected virtual void OnNextPageCommand() { } + protected virtual void OnPageViewsChanged() { } + protected virtual void OnPreviousPageCommand() { } + protected virtual void OnPrintCommand() { } + public void PreviousPage() { } + public void Print() { } + public static void SetIsMasterPage(System.Windows.DependencyObject element, bool value) { } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class DragCompletedEventArgs : System.Windows.RoutedEventArgs + { + public DragCompletedEventArgs(double horizontalChange, double verticalChange, bool canceled) { } + public bool Canceled { get { throw null; } } + public double HorizontalChange { get { throw null; } } + public double VerticalChange { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DragCompletedEventHandler(object sender, System.Windows.Controls.Primitives.DragCompletedEventArgs e); + public partial class DragDeltaEventArgs : System.Windows.RoutedEventArgs + { + public DragDeltaEventArgs(double horizontalChange, double verticalChange) { } + public double HorizontalChange { get { throw null; } } + public double VerticalChange { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DragDeltaEventHandler(object sender, System.Windows.Controls.Primitives.DragDeltaEventArgs e); + public partial class DragStartedEventArgs : System.Windows.RoutedEventArgs + { + public DragStartedEventArgs(double horizontalOffset, double verticalOffset) { } + public double HorizontalOffset { get { throw null; } } + public double VerticalOffset { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void DragStartedEventHandler(object sender, System.Windows.Controls.Primitives.DragStartedEventArgs e); + public enum GeneratorDirection + { + Forward = 0, + Backward = 1, + } + public partial struct GeneratorPosition + { + public GeneratorPosition(int index, int offset) { throw null; } + public int Index { get { throw null; } set { } } + public int Offset { get { throw null; } set { } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Controls.Primitives.GeneratorPosition gp1, System.Windows.Controls.Primitives.GeneratorPosition gp2) { throw null; } + public static bool operator !=(System.Windows.Controls.Primitives.GeneratorPosition gp1, System.Windows.Controls.Primitives.GeneratorPosition gp2) { throw null; } + public override string ToString() { throw null; } + } + public enum GeneratorStatus + { + NotStarted = 0, + GeneratingContainers = 1, + ContainersGenerated = 2, + Error = 3, + } + public abstract partial class GridViewRowPresenterBase : System.Windows.FrameworkElement, System.Windows.IWeakEventListener + { + public static readonly System.Windows.DependencyProperty ColumnsProperty; + protected GridViewRowPresenterBase() { } + public System.Windows.Controls.GridViewColumnCollection Columns { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs args) { throw null; } + public override string ToString() { throw null; } + } + public partial interface IContainItemStorage + { + void Clear(); + void ClearItemValue(object item, System.Windows.DependencyProperty dp); + void ClearValue(System.Windows.DependencyProperty dp); + object ReadItemValue(object item, System.Windows.DependencyProperty dp); + void StoreItemValue(object item, System.Windows.DependencyProperty dp, object value); + } + public partial interface IHierarchicalVirtualizationAndScrollInfo + { + System.Windows.Controls.HierarchicalVirtualizationConstraints Constraints { get; set; } + System.Windows.Controls.HierarchicalVirtualizationHeaderDesiredSizes HeaderDesiredSizes { get; } + bool InBackgroundLayout { get; set; } + System.Windows.Controls.HierarchicalVirtualizationItemDesiredSizes ItemDesiredSizes { get; set; } + System.Windows.Controls.Panel ItemsHost { get; } + bool MustDisableVirtualization { get; set; } + } + public partial interface IItemContainerGenerator + { + System.Windows.DependencyObject GenerateNext(); + System.Windows.DependencyObject GenerateNext(out bool isNewlyRealized); + System.Windows.Controls.Primitives.GeneratorPosition GeneratorPositionFromIndex(int itemIndex); + System.Windows.Controls.ItemContainerGenerator GetItemContainerGeneratorForPanel(System.Windows.Controls.Panel panel); + int IndexFromGeneratorPosition(System.Windows.Controls.Primitives.GeneratorPosition position); + void PrepareItemContainer(System.Windows.DependencyObject container); + void Remove(System.Windows.Controls.Primitives.GeneratorPosition position, int count); + void RemoveAll(); + System.IDisposable StartAt(System.Windows.Controls.Primitives.GeneratorPosition position, System.Windows.Controls.Primitives.GeneratorDirection direction); + System.IDisposable StartAt(System.Windows.Controls.Primitives.GeneratorPosition position, System.Windows.Controls.Primitives.GeneratorDirection direction, bool allowStartAtRealizedItem); + } + public partial interface IRecyclingItemContainerGenerator : System.Windows.Controls.Primitives.IItemContainerGenerator + { + void Recycle(System.Windows.Controls.Primitives.GeneratorPosition position, int count); + } + public partial interface IScrollInfo + { + bool CanHorizontallyScroll { get; set; } + bool CanVerticallyScroll { get; set; } + double ExtentHeight { get; } + double ExtentWidth { get; } + double HorizontalOffset { get; } + System.Windows.Controls.ScrollViewer ScrollOwner { get; set; } + double VerticalOffset { get; } + double ViewportHeight { get; } + double ViewportWidth { get; } + void LineDown(); + void LineLeft(); + void LineRight(); + void LineUp(); + System.Windows.Rect MakeVisible(System.Windows.Media.Visual visual, System.Windows.Rect rectangle); + void MouseWheelDown(); + void MouseWheelLeft(); + void MouseWheelRight(); + void MouseWheelUp(); + void PageDown(); + void PageLeft(); + void PageRight(); + void PageUp(); + void SetHorizontalOffset(double offset); + void SetVerticalOffset(double offset); + } + public partial class ItemsChangedEventArgs : System.EventArgs + { + internal ItemsChangedEventArgs() { } + public System.Collections.Specialized.NotifyCollectionChangedAction Action { get { throw null; } } + public int ItemCount { get { throw null; } } + public int ItemUICount { get { throw null; } } + public System.Windows.Controls.Primitives.GeneratorPosition OldPosition { get { throw null; } } + public System.Windows.Controls.Primitives.GeneratorPosition Position { get { throw null; } } + } + public delegate void ItemsChangedEventHandler(object sender, System.Windows.Controls.Primitives.ItemsChangedEventArgs e); + public static partial class LayoutInformation + { + public static System.Windows.Media.Geometry GetLayoutClip(System.Windows.FrameworkElement element) { throw null; } + public static System.Windows.UIElement GetLayoutExceptionElement(System.Windows.Threading.Dispatcher dispatcher) { throw null; } + public static System.Windows.Rect GetLayoutSlot(System.Windows.FrameworkElement element) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Menu)] + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.MenuItem))] + public abstract partial class MenuBase : System.Windows.Controls.ItemsControl + { + public static readonly System.Windows.DependencyProperty ItemContainerTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty UsesItemContainerTemplateProperty; + protected MenuBase() { } + public System.Windows.Controls.ItemContainerTemplateSelector ItemContainerTemplateSelector { get { throw null; } set { } } + public bool UsesItemContainerTemplate { get { throw null; } set { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected virtual void HandleMouseButton(System.Windows.Input.MouseButtonEventArgs e) { } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + } + public abstract partial class MultiSelector : System.Windows.Controls.Primitives.Selector + { + protected MultiSelector() { } + protected bool CanSelectMultipleItems { get { throw null; } set { } } + protected bool IsUpdatingSelectedItems { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Collections.IList SelectedItems { get { throw null; } } + protected void BeginUpdateSelectedItems() { } + protected void EndUpdateSelectedItems() { } + public void SelectAll() { } + public void UnselectAll() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public enum PlacementMode + { + Absolute = 0, + Relative = 1, + Bottom = 2, + Center = 3, + Right = 4, + AbsolutePoint = 5, + RelativePoint = 6, + Mouse = 7, + MousePoint = 8, + Left = 9, + Top = 10, + Custom = 11, + } + [System.ComponentModel.DefaultEventAttribute("Opened")] + [System.ComponentModel.DefaultPropertyAttribute("Child")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public partial class Popup : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty AllowsTransparencyProperty; + public static readonly System.Windows.DependencyProperty ChildProperty; + public static readonly System.Windows.DependencyProperty CustomPopupPlacementCallbackProperty; + public static readonly System.Windows.DependencyProperty HasDropShadowProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty IsOpenProperty; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty PlacementRectangleProperty; + public static readonly System.Windows.DependencyProperty PlacementTargetProperty; + public static readonly System.Windows.DependencyProperty PopupAnimationProperty; + public static readonly System.Windows.DependencyProperty StaysOpenProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public Popup() { } + public bool AllowsTransparency { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + public System.Windows.UIElement Child { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.CustomPopupPlacementCallback CustomPopupPlacementCallback { get { throw null; } set { } } + public bool HasDropShadow { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double HorizontalOffset { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsOpen { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Controls.Primitives.PlacementMode Placement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + public System.Windows.Rect PlacementRectangle { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.UIElement PlacementTarget { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Controls.Primitives.PopupAnimation PopupAnimation { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool StaysOpen { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Layout")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double VerticalOffset { get { throw null; } set { } } + public event System.EventHandler Closed { add { } remove { } } + public event System.EventHandler Opened { add { } remove { } } + public static void CreateRootPopup(System.Windows.Controls.Primitives.Popup popup, System.Windows.UIElement child) { } + protected internal override System.Windows.DependencyObject GetUIParentCore() { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + protected virtual void OnClosed(System.EventArgs e) { } + protected virtual void OnOpened(System.EventArgs e) { } + protected override void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewMouseRightButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public enum PopupAnimation + { + None = 0, + Fade = 1, + Slide = 2, + Scroll = 3, + } + public enum PopupPrimaryAxis + { + None = 0, + Horizontal = 1, + Vertical = 2, + } + [System.ComponentModel.DefaultEventAttribute("ValueChanged")] + [System.ComponentModel.DefaultPropertyAttribute("Value")] + public abstract partial class RangeBase : System.Windows.Controls.Control + { + public static readonly System.Windows.DependencyProperty LargeChangeProperty; + public static readonly System.Windows.DependencyProperty MaximumProperty; + public static readonly System.Windows.DependencyProperty MinimumProperty; + public static readonly System.Windows.DependencyProperty SmallChangeProperty; + public static readonly System.Windows.RoutedEvent ValueChangedEvent; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected RangeBase() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public double LargeChange { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public double Maximum { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public double Minimum { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public double SmallChange { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public double Value { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedPropertyChangedEventHandler ValueChanged { add { } remove { } } + protected virtual void OnMaximumChanged(double oldMaximum, double newMaximum) { } + protected virtual void OnMinimumChanged(double oldMinimum, double newMinimum) { } + protected virtual void OnValueChanged(double oldValue, double newValue) { } + public override string ToString() { throw null; } + } + public partial class RepeatButton : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.DependencyProperty DelayProperty; + public static readonly System.Windows.DependencyProperty IntervalProperty; + public RepeatButton() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public int Delay { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public int Interval { get { throw null; } set { } } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostMouseCapture(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeave(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + } + public partial class ResizeGrip : System.Windows.Controls.Control + { + public ResizeGrip() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + [System.Windows.TemplatePartAttribute(Name="PART_Track", Type=typeof(System.Windows.Controls.Primitives.Track))] + public partial class ScrollBar : System.Windows.Controls.Primitives.RangeBase + { + public static readonly System.Windows.Input.RoutedCommand DeferScrollToHorizontalOffsetCommand; + public static readonly System.Windows.Input.RoutedCommand DeferScrollToVerticalOffsetCommand; + public static readonly System.Windows.Input.RoutedCommand LineDownCommand; + public static readonly System.Windows.Input.RoutedCommand LineLeftCommand; + public static readonly System.Windows.Input.RoutedCommand LineRightCommand; + public static readonly System.Windows.Input.RoutedCommand LineUpCommand; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public static readonly System.Windows.Input.RoutedCommand PageDownCommand; + public static readonly System.Windows.Input.RoutedCommand PageLeftCommand; + public static readonly System.Windows.Input.RoutedCommand PageRightCommand; + public static readonly System.Windows.Input.RoutedCommand PageUpCommand; + public static readonly System.Windows.RoutedEvent ScrollEvent; + public static readonly System.Windows.Input.RoutedCommand ScrollHereCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToBottomCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToEndCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToHomeCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToHorizontalOffsetCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToLeftEndCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToRightEndCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToTopCommand; + public static readonly System.Windows.Input.RoutedCommand ScrollToVerticalOffsetCommand; + public static readonly System.Windows.DependencyProperty ViewportSizeProperty; + public ScrollBar() { } + protected override bool IsEnabledCore { get { throw null; } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + public System.Windows.Controls.Primitives.Track Track { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public double ViewportSize { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.Primitives.ScrollEventHandler Scroll { add { } remove { } } + public override void OnApplyTemplate() { } + protected override void OnContextMenuClosing(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnPreviewMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnPreviewMouseRightButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + } + public partial class ScrollEventArgs : System.Windows.RoutedEventArgs + { + public ScrollEventArgs(System.Windows.Controls.Primitives.ScrollEventType scrollEventType, double newValue) { } + public double NewValue { get { throw null; } } + public System.Windows.Controls.Primitives.ScrollEventType ScrollEventType { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void ScrollEventHandler(object sender, System.Windows.Controls.Primitives.ScrollEventArgs e); + public enum ScrollEventType + { + EndScroll = 0, + First = 1, + LargeDecrement = 2, + LargeIncrement = 3, + Last = 4, + SmallDecrement = 5, + SmallIncrement = 6, + ThumbPosition = 7, + ThumbTrack = 8, + } + public partial class SelectiveScrollingGrid : System.Windows.Controls.Grid + { + public static readonly System.Windows.DependencyProperty SelectiveScrollingOrientationProperty; + public SelectiveScrollingGrid() { } + public static System.Windows.Controls.SelectiveScrollingOrientation GetSelectiveScrollingOrientation(System.Windows.DependencyObject obj) { throw null; } + public static void SetSelectiveScrollingOrientation(System.Windows.DependencyObject obj, System.Windows.Controls.SelectiveScrollingOrientation value) { } + } + [System.ComponentModel.DefaultEventAttribute("SelectionChanged")] + [System.ComponentModel.DefaultPropertyAttribute("SelectedIndex")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public abstract partial class Selector : System.Windows.Controls.ItemsControl + { + public static readonly System.Windows.DependencyProperty IsSelectedProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty IsSynchronizedWithCurrentItemProperty; + public static readonly System.Windows.RoutedEvent SelectedEvent; + public static readonly System.Windows.DependencyProperty SelectedIndexProperty; + public static readonly System.Windows.DependencyProperty SelectedItemProperty; + public static readonly System.Windows.DependencyProperty SelectedValuePathProperty; + public static readonly System.Windows.DependencyProperty SelectedValueProperty; + public static readonly System.Windows.RoutedEvent SelectionChangedEvent; + public static readonly System.Windows.RoutedEvent UnselectedEvent; + protected Selector() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + [System.ComponentModel.TypeConverterAttribute("System.Windows.NullableBoolConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public bool? IsSynchronizedWithCurrentItem { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public int SelectedIndex { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public object SelectedItem { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object SelectedValue { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public string SelectedValuePath { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.SelectionChangedEventHandler SelectionChanged { add { } remove { } } + public static void AddSelectedHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void AddUnselectedHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + protected override void ClearContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static bool GetIsSelected(System.Windows.DependencyObject element) { throw null; } + public static bool GetIsSelectionActive(System.Windows.DependencyObject element) { throw null; } + protected override void OnInitialized(System.EventArgs e) { } + protected override void OnIsKeyboardFocusWithinChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } + protected override void OnItemsSourceChanged(System.Collections.IEnumerable oldValue, System.Collections.IEnumerable newValue) { } + protected virtual void OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs e) { } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + public static void RemoveSelectedHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void RemoveUnselectedHandler(System.Windows.DependencyObject element, System.Windows.RoutedEventHandler handler) { } + public static void SetIsSelected(System.Windows.DependencyObject element, bool isSelected) { } + } + [System.Windows.StyleTypedPropertyAttribute(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.Controls.Primitives.StatusBarItem))] + public partial class StatusBar : System.Windows.Controls.ItemsControl + { + public static readonly System.Windows.DependencyProperty ItemContainerTemplateSelectorProperty; + public static readonly System.Windows.DependencyProperty UsesItemContainerTemplateProperty; + public StatusBar() { } + public System.Windows.Controls.ItemContainerTemplateSelector ItemContainerTemplateSelector { get { throw null; } set { } } + public static System.Windows.ResourceKey SeparatorStyleKey { get { throw null; } } + public bool UsesItemContainerTemplate { get { throw null; } set { } } + protected override System.Windows.DependencyObject GetContainerForItemOverride() { throw null; } + protected override bool IsItemItsOwnContainerOverride(object item) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void PrepareContainerForItemOverride(System.Windows.DependencyObject element, object item) { } + protected override bool ShouldApplyItemContainerStyle(System.Windows.DependencyObject container, object item) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Inherit)] + public partial class StatusBarItem : System.Windows.Controls.ContentControl + { + public StatusBarItem() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public partial class TabPanel : System.Windows.Controls.Panel + { + public TabPanel() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Text)] + [System.Windows.TemplatePartAttribute(Name="PART_ContentHost", Type=typeof(System.Windows.FrameworkElement))] + public abstract partial class TextBoxBase : System.Windows.Controls.Control + { + internal TextBoxBase() { } + public static readonly System.Windows.DependencyProperty AcceptsReturnProperty; + public static readonly System.Windows.DependencyProperty AcceptsTabProperty; + public static readonly System.Windows.DependencyProperty AutoWordSelectionProperty; + public static readonly System.Windows.DependencyProperty CaretBrushProperty; + public static readonly System.Windows.DependencyProperty HorizontalScrollBarVisibilityProperty; + public static readonly System.Windows.DependencyProperty IsInactiveSelectionHighlightEnabledProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyCaretVisibleProperty; + public static readonly System.Windows.DependencyProperty IsReadOnlyProperty; + public static readonly System.Windows.DependencyProperty IsSelectionActiveProperty; + public static readonly System.Windows.DependencyProperty IsUndoEnabledProperty; + public static readonly System.Windows.DependencyProperty SelectionBrushProperty; + public static readonly System.Windows.RoutedEvent SelectionChangedEvent; + public static readonly System.Windows.DependencyProperty SelectionOpacityProperty; + public static readonly System.Windows.DependencyProperty SelectionTextBrushProperty; + public static readonly System.Windows.RoutedEvent TextChangedEvent; + public static readonly System.Windows.DependencyProperty UndoLimitProperty; + public static readonly System.Windows.DependencyProperty VerticalScrollBarVisibilityProperty; + public bool AcceptsReturn { get { throw null; } set { } } + public bool AcceptsTab { get { throw null; } set { } } + public bool AutoWordSelection { get { throw null; } set { } } + public bool CanRedo { get { throw null; } } + public bool CanUndo { get { throw null; } } + public System.Windows.Media.Brush CaretBrush { get { throw null; } set { } } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + public double HorizontalOffset { get { throw null; } } + public System.Windows.Controls.ScrollBarVisibility HorizontalScrollBarVisibility { get { throw null; } set { } } + public bool IsInactiveSelectionHighlightEnabled { get { throw null; } set { } } + public bool IsReadOnly { get { throw null; } set { } } + public bool IsReadOnlyCaretVisible { get { throw null; } set { } } + public bool IsSelectionActive { get { throw null; } } + public bool IsUndoEnabled { get { throw null; } set { } } + public System.Windows.Media.Brush SelectionBrush { get { throw null; } set { } } + public double SelectionOpacity { get { throw null; } set { } } + public System.Windows.Media.Brush SelectionTextBrush { get { throw null; } set { } } + public System.Windows.Controls.SpellCheck SpellCheck { get { throw null; } } + public int UndoLimit { get { throw null; } set { } } + public double VerticalOffset { get { throw null; } } + public System.Windows.Controls.ScrollBarVisibility VerticalScrollBarVisibility { get { throw null; } set { } } + public double ViewportHeight { get { throw null; } } + public double ViewportWidth { get { throw null; } } + public event System.Windows.RoutedEventHandler SelectionChanged { add { } remove { } } + public event System.Windows.Controls.TextChangedEventHandler TextChanged { add { } remove { } } + public void AppendText(string textData) { } + public void BeginChange() { } + public void Copy() { } + public void Cut() { } + public System.IDisposable DeclareChangeBlock() { throw null; } + public void EndChange() { } + public void LineDown() { } + public void LineLeft() { } + public void LineRight() { } + public void LineUp() { } + public void LockCurrentUndoUnit() { } + public override void OnApplyTemplate() { } + protected override void OnContextMenuOpening(System.Windows.Controls.ContextMenuEventArgs e) { } + protected override void OnDragEnter(System.Windows.DragEventArgs e) { } + protected override void OnDragLeave(System.Windows.DragEventArgs e) { } + protected override void OnDragOver(System.Windows.DragEventArgs e) { } + protected override void OnDrop(System.Windows.DragEventArgs e) { } + protected override void OnGiveFeedback(System.Windows.GiveFeedbackEventArgs e) { } + protected override void OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected override void OnLostFocus(System.Windows.RoutedEventArgs e) { } + protected override void OnLostKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs e) { } + protected override void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + protected override void OnMouseUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected override void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e) { } + protected override void OnQueryCursor(System.Windows.Input.QueryCursorEventArgs e) { } + protected virtual void OnSelectionChanged(System.Windows.RoutedEventArgs e) { } + protected override void OnTemplateChanged(System.Windows.Controls.ControlTemplate oldTemplate, System.Windows.Controls.ControlTemplate newTemplate) { } + protected virtual void OnTextChanged(System.Windows.Controls.TextChangedEventArgs e) { } + protected override void OnTextInput(System.Windows.Input.TextCompositionEventArgs e) { } + public void PageDown() { } + public void PageLeft() { } + public void PageRight() { } + public void PageUp() { } + public void Paste() { } + public bool Redo() { throw null; } + public void ScrollToEnd() { } + public void ScrollToHome() { } + public void ScrollToHorizontalOffset(double offset) { } + public void ScrollToVerticalOffset(double offset) { } + public void SelectAll() { } + public bool Undo() { throw null; } + } + [System.ComponentModel.DefaultEventAttribute("DragDelta")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class Thumb : System.Windows.Controls.Control + { + public static readonly System.Windows.RoutedEvent DragCompletedEvent; + public static readonly System.Windows.RoutedEvent DragDeltaEvent; + public static readonly System.Windows.RoutedEvent DragStartedEvent; + public static readonly System.Windows.DependencyProperty IsDraggingProperty; + public Thumb() { } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.BrowsableAttribute(false)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsDragging { get { throw null; } protected set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.Primitives.DragCompletedEventHandler DragCompleted { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.Primitives.DragDeltaEventHandler DragDelta { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.Controls.Primitives.DragStartedEventHandler DragStarted { add { } remove { } } + public void CancelDrag() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnDraggingChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + protected override void OnMouseMove(System.Windows.Input.MouseEventArgs e) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class TickBar : System.Windows.FrameworkElement + { + public static readonly System.Windows.DependencyProperty FillProperty; + public static readonly System.Windows.DependencyProperty IsDirectionReversedProperty; + public static readonly System.Windows.DependencyProperty IsSelectionRangeEnabledProperty; + public static readonly System.Windows.DependencyProperty MaximumProperty; + public static readonly System.Windows.DependencyProperty MinimumProperty; + public static readonly System.Windows.DependencyProperty PlacementProperty; + public static readonly System.Windows.DependencyProperty ReservedSpaceProperty; + public static readonly System.Windows.DependencyProperty SelectionEndProperty; + public static readonly System.Windows.DependencyProperty SelectionStartProperty; + public static readonly System.Windows.DependencyProperty TickFrequencyProperty; + public static readonly System.Windows.DependencyProperty TicksProperty; + public TickBar() { } + public System.Windows.Media.Brush Fill { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsDirectionReversed { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public bool IsSelectionRangeEnabled { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double Maximum { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double Minimum { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Controls.Primitives.TickBarPlacement Placement { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double ReservedSpace { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double SelectionEnd { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double SelectionStart { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public double TickFrequency { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Appearance")] + public System.Windows.Media.DoubleCollection Ticks { get { throw null; } set { } } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + } + public enum TickBarPlacement + { + Left = 0, + Top = 1, + Right = 2, + Bottom = 3, + } + public enum TickPlacement + { + None = 0, + TopLeft = 1, + BottomRight = 2, + Both = 3, + } + [System.ComponentModel.DefaultEventAttribute("Checked")] + public partial class ToggleButton : System.Windows.Controls.Primitives.ButtonBase + { + public static readonly System.Windows.RoutedEvent CheckedEvent; + public static readonly System.Windows.RoutedEvent IndeterminateEvent; + public static readonly System.Windows.DependencyProperty IsCheckedProperty; + public static readonly System.Windows.DependencyProperty IsThreeStateProperty; + public static readonly System.Windows.RoutedEvent UncheckedEvent; + public ToggleButton() { } + [System.ComponentModel.CategoryAttribute("Appearance")] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.NullableBoolConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public bool? IsChecked { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Behavior")] + public bool IsThreeState { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Checked { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Indeterminate { add { } remove { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Unchecked { add { } remove { } } + protected virtual void OnChecked(System.Windows.RoutedEventArgs e) { } + protected override void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected virtual void OnIndeterminate(System.Windows.RoutedEventArgs e) { } + protected internal virtual void OnToggle() { } + protected virtual void OnUnchecked(System.Windows.RoutedEventArgs e) { } + public override string ToString() { throw null; } + } + public partial class ToolBarOverflowPanel : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty WrapWidthProperty; + public ToolBarOverflowPanel() { } + public double WrapWidth { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeBounds) { throw null; } + protected override System.Windows.Controls.UIElementCollection CreateUIElementCollection(System.Windows.FrameworkElement logicalParent) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + public partial class ToolBarPanel : System.Windows.Controls.StackPanel + { + public ToolBarPanel() { } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public partial class Track : System.Windows.FrameworkElement + { + public static readonly System.Windows.DependencyProperty IsDirectionReversedProperty; + public static readonly System.Windows.DependencyProperty MaximumProperty; + public static readonly System.Windows.DependencyProperty MinimumProperty; + public static readonly System.Windows.DependencyProperty OrientationProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + public static readonly System.Windows.DependencyProperty ViewportSizeProperty; + public Track() { } + public System.Windows.Controls.Primitives.RepeatButton DecreaseRepeatButton { get { throw null; } set { } } + public System.Windows.Controls.Primitives.RepeatButton IncreaseRepeatButton { get { throw null; } set { } } + public bool IsDirectionReversed { get { throw null; } set { } } + public double Maximum { get { throw null; } set { } } + public double Minimum { get { throw null; } set { } } + public System.Windows.Controls.Orientation Orientation { get { throw null; } set { } } + public System.Windows.Controls.Primitives.Thumb Thumb { get { throw null; } set { } } + public double Value { get { throw null; } set { } } + public double ViewportSize { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size availableSize) { throw null; } + public virtual double ValueFromDistance(double horizontal, double vertical) { throw null; } + public virtual double ValueFromPoint(System.Windows.Point pt) { throw null; } + } + public partial class UniformGrid : System.Windows.Controls.Panel + { + public static readonly System.Windows.DependencyProperty ColumnsProperty; + public static readonly System.Windows.DependencyProperty FirstColumnProperty; + public static readonly System.Windows.DependencyProperty RowsProperty; + public UniformGrid() { } + public int Columns { get { throw null; } set { } } + public int FirstColumn { get { throw null; } set { } } + public int Rows { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } +} +namespace System.Windows.Data +{ + public partial class Binding : System.Windows.Data.BindingBase + { + public static readonly object DoNothing; + public const string IndexerName = "Item[]"; + public static readonly System.Windows.RoutedEvent SourceUpdatedEvent; + public static readonly System.Windows.RoutedEvent TargetUpdatedEvent; + public static readonly System.Windows.DependencyProperty XmlNamespaceManagerProperty; + public Binding() { } + public Binding(string path) { } + [System.ComponentModel.DefaultValueAttribute(null)] + public object AsyncState { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool BindsDirectlyToSource { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.IValueConverter Converter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public System.Globalization.CultureInfo ConverterCulture { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public object ConverterParameter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string ElementName { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool IsAsync { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Data.BindingMode.Default)] + public System.Windows.Data.BindingMode Mode { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnSourceUpdated { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnTargetUpdated { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnValidationError { get { throw null; } set { } } + public System.Windows.PropertyPath Path { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.RelativeSource RelativeSource { get { throw null; } set { } } + public object Source { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Data.UpdateSourceExceptionFilterCallback UpdateSourceExceptionFilter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Data.UpdateSourceTrigger.Default)] + public System.Windows.Data.UpdateSourceTrigger UpdateSourceTrigger { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool ValidatesOnDataErrors { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool ValidatesOnExceptions { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(true)] + public bool ValidatesOnNotifyDataErrors { get { throw null; } set { } } + public System.Collections.ObjectModel.Collection ValidationRules { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string XPath { get { throw null; } set { } } + public static void AddSourceUpdatedHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static void AddTargetUpdatedHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static System.Xml.XmlNamespaceManager GetXmlNamespaceManager(System.Windows.DependencyObject target) { throw null; } + public static void RemoveSourceUpdatedHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static void RemoveTargetUpdatedHandler(System.Windows.DependencyObject element, System.EventHandler handler) { } + public static void SetXmlNamespaceManager(System.Windows.DependencyObject target, System.Xml.XmlNamespaceManager value) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializePath() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeSource() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeValidationRules() { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Modifiability=System.Windows.Modifiability.Unmodifiable, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public abstract partial class BindingBase : System.Windows.Markup.MarkupExtension + { + internal BindingBase() { } + [System.ComponentModel.DefaultValueAttribute("")] + public string BindingGroupName { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(0)] + public int Delay { get { throw null; } set { } } + public object FallbackValue { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string StringFormat { get { throw null; } set { } } + public object TargetNullValue { get { throw null; } set { } } + public sealed override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeFallbackValue() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeTargetNullValue() { throw null; } + } + public sealed partial class BindingExpression : System.Windows.Data.BindingExpressionBase, System.Windows.IWeakEventListener + { + internal BindingExpression() { } + public object DataItem { get { throw null; } } + public System.Windows.Data.Binding ParentBinding { get { throw null; } } + public object ResolvedSource { get { throw null; } } + public string ResolvedSourcePropertyName { get { throw null; } } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + public override void UpdateSource() { } + public override void UpdateTarget() { } + } + public abstract partial class BindingExpressionBase : System.Windows.Expression, System.Windows.IWeakEventListener + { + internal BindingExpressionBase() { } + public System.Windows.Data.BindingGroup BindingGroup { get { throw null; } } + public virtual bool HasError { get { throw null; } } + public virtual bool HasValidationError { get { throw null; } } + public bool IsDirty { get { throw null; } } + public System.Windows.Data.BindingBase ParentBindingBase { get { throw null; } } + public System.Windows.Data.BindingStatus Status { get { throw null; } } + public System.Windows.DependencyObject Target { get { throw null; } } + public System.Windows.DependencyProperty TargetProperty { get { throw null; } } + public virtual System.Windows.Controls.ValidationError ValidationError { get { throw null; } } + public virtual System.Collections.ObjectModel.ReadOnlyCollection ValidationErrors { get { throw null; } } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + public virtual void UpdateSource() { } + public virtual void UpdateTarget() { } + public bool ValidateWithoutUpdate() { throw null; } + } + public partial class BindingGroup : System.Windows.DependencyObject + { + public BindingGroup() { } + public System.Collections.ObjectModel.Collection BindingExpressions { get { throw null; } } + public bool CanRestoreValues { get { throw null; } } + public bool HasValidationError { get { throw null; } } + public bool IsDirty { get { throw null; } } + public System.Collections.IList Items { get { throw null; } } + public string Name { get { throw null; } set { } } + public bool NotifyOnValidationError { get { throw null; } set { } } + public System.Windows.DependencyObject Owner { get { throw null; } } + public bool SharesProposedValues { get { throw null; } set { } } + public bool ValidatesOnNotifyDataError { get { throw null; } set { } } + public System.Collections.ObjectModel.ReadOnlyCollection ValidationErrors { get { throw null; } } + public System.Collections.ObjectModel.Collection ValidationRules { get { throw null; } } + public void BeginEdit() { } + public void CancelEdit() { } + public bool CommitEdit() { throw null; } + public object GetValue(object item, string propertyName) { throw null; } + public bool TryGetValue(object item, string propertyName, out object value) { throw null; } + public bool UpdateSources() { throw null; } + public bool ValidateWithoutUpdate() { throw null; } + } + public sealed partial class BindingListCollectionView : System.Windows.Data.CollectionView, System.Collections.IComparer, System.ComponentModel.ICollectionViewLiveShaping, System.ComponentModel.IEditableCollectionView, System.ComponentModel.IItemProperties + { + public BindingListCollectionView(System.ComponentModel.IBindingList list) : base (default(System.Collections.IEnumerable)) { } + public bool CanAddNew { get { throw null; } } + public bool CanCancelEdit { get { throw null; } } + public bool CanChangeLiveFiltering { get { throw null; } } + public bool CanChangeLiveGrouping { get { throw null; } } + public bool CanChangeLiveSorting { get { throw null; } } + public bool CanCustomFilter { get { throw null; } } + public override bool CanFilter { get { throw null; } } + public override bool CanGroup { get { throw null; } } + public bool CanRemove { get { throw null; } } + public override bool CanSort { get { throw null; } } + public override int Count { get { throw null; } } + public object CurrentAddItem { get { throw null; } } + public object CurrentEditItem { get { throw null; } } + public string CustomFilter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.GroupDescriptionSelectorCallback GroupBySelector { get { throw null; } set { } } + public override System.Collections.ObjectModel.ObservableCollection GroupDescriptions { get { throw null; } } + public override System.Collections.ObjectModel.ReadOnlyObservableCollection Groups { get { throw null; } } + public bool IsAddingNew { get { throw null; } } + public bool IsDataInGroupOrder { get { throw null; } set { } } + public bool IsEditingItem { get { throw null; } } + public override bool IsEmpty { get { throw null; } } + public bool? IsLiveFiltering { get { throw null; } set { } } + public bool? IsLiveGrouping { get { throw null; } set { } } + public bool? IsLiveSorting { get { throw null; } set { } } + public System.Collections.ObjectModel.ReadOnlyCollection ItemProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveFilteringProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveGroupingProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveSortingProperties { get { throw null; } } + public System.ComponentModel.NewItemPlaceholderPosition NewItemPlaceholderPosition { get { throw null; } set { } } + public override System.ComponentModel.SortDescriptionCollection SortDescriptions { get { throw null; } } + public object AddNew() { throw null; } + public void CancelEdit() { } + public void CancelNew() { } + public void CommitEdit() { } + public void CommitNew() { } + public override bool Contains(object item) { throw null; } + public override void DetachFromSourceCollection() { } + public void EditItem(object item) { } + protected override System.Collections.IEnumerator GetEnumerator() { throw null; } + public override object GetItemAt(int index) { throw null; } + public override int IndexOf(object item) { throw null; } + public override bool MoveCurrentToPosition(int position) { throw null; } + protected override void OnAllowsCrossThreadChangesChanged() { } + [System.ObsoleteAttribute("Replaced by OnAllowsCrossThreadChangesChanged")] + protected override void OnBeginChangeLogging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + public override bool PassesFilter(object item) { throw null; } + protected override void ProcessCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected override void RefreshOverride() { } + public void Remove(object item) { } + public void RemoveAt(int index) { } + int System.Collections.IComparer.Compare(object o1, object o2) { throw null; } + } + public enum BindingMode + { + TwoWay = 0, + OneWay = 1, + OneTime = 2, + OneWayToSource = 3, + Default = 4, + } + public static partial class BindingOperations + { + public static object DisconnectedSource { get { throw null; } } + public static event System.EventHandler CollectionRegistering { add { } remove { } } + public static event System.EventHandler CollectionViewRegistering { add { } remove { } } + public static void AccessCollection(System.Collections.IEnumerable collection, System.Action accessMethod, bool writeAccess) { } + public static void ClearAllBindings(System.Windows.DependencyObject target) { } + public static void ClearBinding(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { } + public static void DisableCollectionSynchronization(System.Collections.IEnumerable collection) { } + public static void EnableCollectionSynchronization(System.Collections.IEnumerable collection, object lockObject) { } + public static void EnableCollectionSynchronization(System.Collections.IEnumerable collection, object context, System.Windows.Data.CollectionSynchronizationCallback synchronizationCallback) { } + public static System.Windows.Data.Binding GetBinding(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.BindingBase GetBindingBase(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.BindingExpression GetBindingExpression(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.BindingExpressionBase GetBindingExpressionBase(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.MultiBinding GetMultiBinding(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.MultiBindingExpression GetMultiBindingExpression(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.PriorityBinding GetPriorityBinding(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.PriorityBindingExpression GetPriorityBindingExpression(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Collections.ObjectModel.ReadOnlyCollection GetSourceUpdatingBindingGroups(System.Windows.DependencyObject root) { throw null; } + public static System.Collections.ObjectModel.ReadOnlyCollection GetSourceUpdatingBindings(System.Windows.DependencyObject root) { throw null; } + public static bool IsDataBound(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp) { throw null; } + public static System.Windows.Data.BindingExpressionBase SetBinding(System.Windows.DependencyObject target, System.Windows.DependencyProperty dp, System.Windows.Data.BindingBase binding) { throw null; } + } + public enum BindingStatus + { + Unattached = 0, + Inactive = 1, + Active = 2, + Detached = 3, + AsyncRequestPending = 4, + PathError = 5, + UpdateTargetError = 6, + UpdateSourceError = 7, + } + public partial class CollectionContainer : System.Windows.DependencyObject, System.Collections.Specialized.INotifyCollectionChanged, System.Windows.IWeakEventListener + { + public static readonly System.Windows.DependencyProperty CollectionProperty; + public CollectionContainer() { } + public System.Collections.IEnumerable Collection { get { throw null; } set { } } + protected virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } } + event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } } + protected virtual void OnContainedCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected virtual bool ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeCollection() { throw null; } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + } + public partial class CollectionRegisteringEventArgs : System.EventArgs + { + internal CollectionRegisteringEventArgs() { } + public System.Collections.IEnumerable Collection { get { throw null; } } + public object Parent { get { throw null; } } + } + public delegate void CollectionSynchronizationCallback(System.Collections.IEnumerable collection, object context, System.Action accessMethod, bool writeAccess); + public partial class CollectionView : System.Windows.Threading.DispatcherObject, System.Collections.IEnumerable, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.ICollectionView, System.ComponentModel.INotifyPropertyChanged + { + public CollectionView(System.Collections.IEnumerable collection) { } + protected bool AllowsCrossThreadChanges { get { throw null; } } + public virtual bool CanFilter { get { throw null; } } + public virtual bool CanGroup { get { throw null; } } + public virtual bool CanSort { get { throw null; } } + public virtual System.Collections.IComparer Comparer { get { throw null; } } + public virtual int Count { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public virtual System.Globalization.CultureInfo Culture { get { throw null; } set { } } + public virtual object CurrentItem { get { throw null; } } + public virtual int CurrentPosition { get { throw null; } } + public virtual System.Predicate Filter { get { throw null; } set { } } + public virtual System.Collections.ObjectModel.ObservableCollection GroupDescriptions { get { throw null; } } + public virtual System.Collections.ObjectModel.ReadOnlyObservableCollection Groups { get { throw null; } } + public virtual bool IsCurrentAfterLast { get { throw null; } } + public virtual bool IsCurrentBeforeFirst { get { throw null; } } + protected bool IsCurrentInSync { get { throw null; } } + protected bool IsDynamic { get { throw null; } } + public virtual bool IsEmpty { get { throw null; } } + public virtual bool IsInUse { get { throw null; } } + protected bool IsRefreshDeferred { get { throw null; } } + public virtual bool NeedsRefresh { get { throw null; } } + public static object NewItemPlaceholder { get { throw null; } } + public virtual System.ComponentModel.SortDescriptionCollection SortDescriptions { get { throw null; } } + public virtual System.Collections.IEnumerable SourceCollection { get { throw null; } } + protected bool UpdatedOutsideDispatcher { get { throw null; } } + protected virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } } + public virtual event System.EventHandler CurrentChanged { add { } remove { } } + public virtual event System.ComponentModel.CurrentChangingEventHandler CurrentChanging { add { } remove { } } + protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } } + event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + [System.ObsoleteAttribute("Replaced by ClearPendingChanges")] + protected void ClearChangeLog() { } + protected void ClearPendingChanges() { } + public virtual bool Contains(object item) { throw null; } + public virtual System.IDisposable DeferRefresh() { throw null; } + public virtual void DetachFromSourceCollection() { } + protected virtual System.Collections.IEnumerator GetEnumerator() { throw null; } + public virtual object GetItemAt(int index) { throw null; } + public virtual int IndexOf(object item) { throw null; } + public virtual bool MoveCurrentTo(object item) { throw null; } + public virtual bool MoveCurrentToFirst() { throw null; } + public virtual bool MoveCurrentToLast() { throw null; } + public virtual bool MoveCurrentToNext() { throw null; } + public virtual bool MoveCurrentToPosition(int position) { throw null; } + public virtual bool MoveCurrentToPrevious() { throw null; } + protected bool OKToChangeCurrent() { throw null; } + protected virtual void OnAllowsCrossThreadChangesChanged() { } + [System.ObsoleteAttribute("Replaced by OnAllowsCrossThreadChangesChanged")] + protected virtual void OnBeginChangeLogging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected virtual void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected void OnCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected virtual void OnCurrentChanged() { } + protected void OnCurrentChanging() { } + protected virtual void OnCurrentChanging(System.ComponentModel.CurrentChangingEventArgs args) { } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + public virtual bool PassesFilter(object item) { throw null; } + protected virtual void ProcessCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected void ProcessPendingChanges() { } + public virtual void Refresh() { } + protected void RefreshOrDefer() { } + protected virtual void RefreshOverride() { } + protected void SetCurrent(object newItem, int newPosition) { } + protected void SetCurrent(object newItem, int newPosition, int count) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public abstract partial class CollectionViewGroup : System.ComponentModel.INotifyPropertyChanged + { + protected CollectionViewGroup(object name) { } + public abstract bool IsBottomLevel { get; } + public int ItemCount { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyObservableCollection Items { get { throw null; } } + public object Name { get { throw null; } } + protected int ProtectedItemCount { get { throw null; } set { } } + protected System.Collections.ObjectModel.ObservableCollection ProtectedItems { get { throw null; } } + protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } } + event System.ComponentModel.PropertyChangedEventHandler System.ComponentModel.INotifyPropertyChanged.PropertyChanged { add { } remove { } } + protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) { } + } + public partial class CollectionViewRegisteringEventArgs : System.EventArgs + { + internal CollectionViewRegisteringEventArgs() { } + public System.Windows.Data.CollectionView CollectionView { get { throw null; } } + } + public partial class CollectionViewSource : System.Windows.DependencyObject, System.ComponentModel.ISupportInitialize, System.Windows.IWeakEventListener + { + public static readonly System.Windows.DependencyProperty CanChangeLiveFilteringProperty; + public static readonly System.Windows.DependencyProperty CanChangeLiveGroupingProperty; + public static readonly System.Windows.DependencyProperty CanChangeLiveSortingProperty; + public static readonly System.Windows.DependencyProperty CollectionViewTypeProperty; + public static readonly System.Windows.DependencyProperty IsLiveFilteringProperty; + public static readonly System.Windows.DependencyProperty IsLiveFilteringRequestedProperty; + public static readonly System.Windows.DependencyProperty IsLiveGroupingProperty; + public static readonly System.Windows.DependencyProperty IsLiveGroupingRequestedProperty; + public static readonly System.Windows.DependencyProperty IsLiveSortingProperty; + public static readonly System.Windows.DependencyProperty IsLiveSortingRequestedProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public static readonly System.Windows.DependencyProperty ViewProperty; + public CollectionViewSource() { } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool CanChangeLiveFiltering { get { throw null; } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool CanChangeLiveGrouping { get { throw null; } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool CanChangeLiveSorting { get { throw null; } } + public System.Type CollectionViewType { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public System.Globalization.CultureInfo Culture { get { throw null; } set { } } + public System.Collections.ObjectModel.ObservableCollection GroupDescriptions { get { throw null; } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool? IsLiveFiltering { get { throw null; } } + public bool IsLiveFilteringRequested { get { throw null; } set { } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool? IsLiveGrouping { get { throw null; } } + public bool IsLiveGroupingRequested { get { throw null; } set { } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public bool? IsLiveSorting { get { throw null; } } + public bool IsLiveSortingRequested { get { throw null; } set { } } + public System.Collections.ObjectModel.ObservableCollection LiveFilteringProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveGroupingProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveSortingProperties { get { throw null; } } + public System.ComponentModel.SortDescriptionCollection SortDescriptions { get { throw null; } } + public object Source { get { throw null; } set { } } + [System.ComponentModel.ReadOnlyAttribute(true)] + public System.ComponentModel.ICollectionView View { get { throw null; } } + public event System.Windows.Data.FilterEventHandler Filter { add { } remove { } } + public System.IDisposable DeferRefresh() { throw null; } + public static System.ComponentModel.ICollectionView GetDefaultView(object source) { throw null; } + public static bool IsDefaultView(System.ComponentModel.ICollectionView view) { throw null; } + protected virtual void OnCollectionViewTypeChanged(System.Type oldCollectionViewType, System.Type newCollectionViewType) { } + protected virtual void OnSourceChanged(object oldSource, object newSource) { } + protected virtual bool ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Ignore)] + public partial class CompositeCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.ICollectionViewFactory, System.Windows.IWeakEventListener + { + public CompositeCollection() { } + public CompositeCollection(int capacity) { } + public int Count { get { throw null; } } + public object this[int itemIndex] { get { throw null; } set { } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + protected event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } } + event System.Collections.Specialized.NotifyCollectionChangedEventHandler System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged { add { } remove { } } + public int Add(object newItem) { throw null; } + public void Clear() { } + public bool Contains(object containItem) { throw null; } + public void CopyTo(System.Array array, int index) { } + public int IndexOf(object indexItem) { throw null; } + public void Insert(int insertIndex, object insertItem) { } + protected virtual bool ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + public void Remove(object removeItem) { } + public void RemoveAt(int removeIndex) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + System.ComponentModel.ICollectionView System.ComponentModel.ICollectionViewFactory.CreateView() { throw null; } + bool System.Windows.IWeakEventListener.ReceiveWeakEvent(System.Type managerType, object sender, System.EventArgs e) { throw null; } + } + public partial class DataChangedEventManager : System.Windows.WeakEventManager + { + internal DataChangedEventManager() { } + public static void AddHandler(System.Windows.Data.DataSourceProvider source, System.EventHandler handler) { } + public static void AddListener(System.Windows.Data.DataSourceProvider source, System.Windows.IWeakEventListener listener) { } + protected override System.Windows.WeakEventManager.ListenerList NewListenerList() { throw null; } + public static void RemoveHandler(System.Windows.Data.DataSourceProvider source, System.EventHandler handler) { } + public static void RemoveListener(System.Windows.Data.DataSourceProvider source, System.Windows.IWeakEventListener listener) { } + protected override void StartListening(object source) { } + protected override void StopListening(object source) { } + } + public partial class DataTransferEventArgs : System.Windows.RoutedEventArgs + { + internal DataTransferEventArgs() { } + public System.Windows.DependencyProperty Property { get { throw null; } } + public System.Windows.DependencyObject TargetObject { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public partial class FilterEventArgs : System.EventArgs + { + internal FilterEventArgs() { } + public bool Accepted { get { throw null; } set { } } + public object Item { get { throw null; } } + } + public delegate void FilterEventHandler(object sender, System.Windows.Data.FilterEventArgs e); + public delegate System.ComponentModel.GroupDescription GroupDescriptionSelectorCallback(System.Windows.Data.CollectionViewGroup group, int level); + public partial interface IMultiValueConverter + { + object Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture); + object[] ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture); + } + public partial interface IValueConverter + { + object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture); + object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture); + } + public partial class ListCollectionView : System.Windows.Data.CollectionView, System.Collections.IComparer, System.ComponentModel.ICollectionViewLiveShaping, System.ComponentModel.IEditableCollectionView, System.ComponentModel.IEditableCollectionViewAddNewItem, System.ComponentModel.IItemProperties + { + public ListCollectionView(System.Collections.IList list) : base (default(System.Collections.IEnumerable)) { } + protected System.Collections.IComparer ActiveComparer { get { throw null; } set { } } + protected System.Predicate ActiveFilter { get { throw null; } set { } } + public bool CanAddNew { get { throw null; } } + public bool CanAddNewItem { get { throw null; } } + public bool CanCancelEdit { get { throw null; } } + public bool CanChangeLiveFiltering { get { throw null; } } + public bool CanChangeLiveGrouping { get { throw null; } } + public bool CanChangeLiveSorting { get { throw null; } } + public override bool CanFilter { get { throw null; } } + public override bool CanGroup { get { throw null; } } + public bool CanRemove { get { throw null; } } + public override bool CanSort { get { throw null; } } + public override int Count { get { throw null; } } + public object CurrentAddItem { get { throw null; } } + public object CurrentEditItem { get { throw null; } } + public System.Collections.IComparer CustomSort { get { throw null; } set { } } + public override System.Predicate Filter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public virtual System.Windows.Data.GroupDescriptionSelectorCallback GroupBySelector { get { throw null; } set { } } + public override System.Collections.ObjectModel.ObservableCollection GroupDescriptions { get { throw null; } } + public override System.Collections.ObjectModel.ReadOnlyObservableCollection Groups { get { throw null; } } + protected int InternalCount { get { throw null; } } + protected System.Collections.IList InternalList { get { throw null; } } + public bool IsAddingNew { get { throw null; } } + public bool IsDataInGroupOrder { get { throw null; } set { } } + public bool IsEditingItem { get { throw null; } } + public override bool IsEmpty { get { throw null; } } + protected bool IsGrouping { get { throw null; } } + public bool? IsLiveFiltering { get { throw null; } set { } } + public bool? IsLiveGrouping { get { throw null; } set { } } + public bool? IsLiveSorting { get { throw null; } set { } } + public System.Collections.ObjectModel.ReadOnlyCollection ItemProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveFilteringProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveGroupingProperties { get { throw null; } } + public System.Collections.ObjectModel.ObservableCollection LiveSortingProperties { get { throw null; } } + public System.ComponentModel.NewItemPlaceholderPosition NewItemPlaceholderPosition { get { throw null; } set { } } + public override System.ComponentModel.SortDescriptionCollection SortDescriptions { get { throw null; } } + protected bool UsesLocalArray { get { throw null; } } + public object AddNew() { throw null; } + public object AddNewItem(object newItem) { throw null; } + public void CancelEdit() { } + public void CancelNew() { } + public void CommitEdit() { } + public void CommitNew() { } + protected virtual int Compare(object o1, object o2) { throw null; } + public override bool Contains(object item) { throw null; } + public void EditItem(object item) { } + protected override System.Collections.IEnumerator GetEnumerator() { throw null; } + public override object GetItemAt(int index) { throw null; } + public override int IndexOf(object item) { throw null; } + protected bool InternalContains(object item) { throw null; } + protected System.Collections.IEnumerator InternalGetEnumerator() { throw null; } + protected int InternalIndexOf(object item) { throw null; } + protected object InternalItemAt(int index) { throw null; } + public override bool MoveCurrentToPosition(int position) { throw null; } + protected override void OnAllowsCrossThreadChangesChanged() { } + [System.ObsoleteAttribute("Replaced by OnAllowsCrossThreadChangesChanged")] + protected override void OnBeginChangeLogging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + public override bool PassesFilter(object item) { throw null; } + protected override void ProcessCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { } + protected override void RefreshOverride() { } + public void Remove(object item) { } + public void RemoveAt(int index) { } + int System.Collections.IComparer.Compare(object o1, object o2) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Bindings")] + public partial class MultiBinding : System.Windows.Data.BindingBase, System.Windows.Markup.IAddChild + { + public MultiBinding() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.ObjectModel.Collection Bindings { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.IMultiValueConverter Converter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.CultureInfoIetfLanguageTagConverter))] + public System.Globalization.CultureInfo ConverterCulture { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public object ConverterParameter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Data.BindingMode.Default)] + public System.Windows.Data.BindingMode Mode { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnSourceUpdated { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnTargetUpdated { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool NotifyOnValidationError { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Windows.Data.UpdateSourceExceptionFilterCallback UpdateSourceExceptionFilter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Data.UpdateSourceTrigger.PropertyChanged)] + public System.Windows.Data.UpdateSourceTrigger UpdateSourceTrigger { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool ValidatesOnDataErrors { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool ValidatesOnExceptions { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(true)] + public bool ValidatesOnNotifyDataErrors { get { throw null; } set { } } + public System.Collections.ObjectModel.Collection ValidationRules { get { throw null; } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBindings() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeValidationRules() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class MultiBindingExpression : System.Windows.Data.BindingExpressionBase + { + internal MultiBindingExpression() { } + public System.Collections.ObjectModel.ReadOnlyCollection BindingExpressions { get { throw null; } } + public override bool HasError { get { throw null; } } + public override bool HasValidationError { get { throw null; } } + public System.Windows.Data.MultiBinding ParentMultiBinding { get { throw null; } } + public override System.Windows.Controls.ValidationError ValidationError { get { throw null; } } + public override void UpdateSource() { } + public override void UpdateTarget() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class ObjectDataProvider : System.Windows.Data.DataSourceProvider + { + public ObjectDataProvider() { } + public System.Collections.IList ConstructorParameters { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(false)] + public bool IsAsynchronous { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string MethodName { get { throw null; } set { } } + public System.Collections.IList MethodParameters { get { throw null; } } + public object ObjectInstance { get { throw null; } set { } } + public System.Type ObjectType { get { throw null; } set { } } + protected override void BeginQuery() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeConstructorParameters() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeMethodParameters() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeObjectInstance() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeObjectType() { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Bindings")] + public partial class PriorityBinding : System.Windows.Data.BindingBase, System.Windows.Markup.IAddChild + { + public PriorityBinding() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.ObjectModel.Collection Bindings { get { throw null; } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBindings() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class PriorityBindingExpression : System.Windows.Data.BindingExpressionBase + { + internal PriorityBindingExpression() { } + public System.Windows.Data.BindingExpressionBase ActiveBindingExpression { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection BindingExpressions { get { throw null; } } + public override bool HasValidationError { get { throw null; } } + public System.Windows.Data.PriorityBinding ParentPriorityBinding { get { throw null; } } + public override void UpdateSource() { } + public override void UpdateTarget() { } + } + public partial class PropertyGroupDescription : System.ComponentModel.GroupDescription + { + public PropertyGroupDescription() { } + public PropertyGroupDescription(string propertyName) { } + public PropertyGroupDescription(string propertyName, System.Windows.Data.IValueConverter converter) { } + public PropertyGroupDescription(string propertyName, System.Windows.Data.IValueConverter converter, System.StringComparison stringComparison) { } + public static System.Collections.IComparer CompareNameAscending { get { throw null; } } + public static System.Collections.IComparer CompareNameDescending { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Data.IValueConverter Converter { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string PropertyName { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.StringComparison.Ordinal)] + public System.StringComparison StringComparison { get { throw null; } set { } } + public override object GroupNameFromItem(object item, int level, System.Globalization.CultureInfo culture) { throw null; } + public override bool NamesMatch(object groupName, object itemName) { throw null; } + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Windows.Data.RelativeSource))] + public partial class RelativeSource : System.Windows.Markup.MarkupExtension, System.ComponentModel.ISupportInitialize + { + public RelativeSource() { } + public RelativeSource(System.Windows.Data.RelativeSourceMode mode) { } + public RelativeSource(System.Windows.Data.RelativeSourceMode mode, System.Type ancestorType, int ancestorLevel) { } + public int AncestorLevel { get { throw null; } set { } } + public System.Type AncestorType { get { throw null; } set { } } + [System.Windows.Markup.ConstructorArgumentAttribute("mode")] + public System.Windows.Data.RelativeSourceMode Mode { get { throw null; } set { } } + public static System.Windows.Data.RelativeSource PreviousData { get { throw null; } } + public static System.Windows.Data.RelativeSource Self { get { throw null; } } + public static System.Windows.Data.RelativeSource TemplatedParent { get { throw null; } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeAncestorLevel() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeAncestorType() { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + public enum RelativeSourceMode + { + PreviousData = 0, + TemplatedParent = 1, + Self = 2, + FindAncestor = 3, + } + public delegate object UpdateSourceExceptionFilterCallback(object bindExpression, System.Exception exception); + public enum UpdateSourceTrigger + { + Default = 0, + PropertyChanged = 1, + LostFocus = 2, + Explicit = 3, + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true)] + public sealed partial class ValueConversionAttribute : System.Attribute + { + public ValueConversionAttribute(System.Type sourceType, System.Type targetType) { } + public System.Type ParameterType { get { throw null; } set { } } + public System.Type SourceType { get { throw null; } } + public System.Type TargetType { get { throw null; } } + public override object TypeId { get { throw null; } } + public override int GetHashCode() { throw null; } + } + public partial class ValueUnavailableException : System.SystemException + { + public ValueUnavailableException() { } + protected ValueUnavailableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public ValueUnavailableException(string message) { } + public ValueUnavailableException(string message, System.Exception innerException) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("XmlSerializer")] + public partial class XmlDataProvider : System.Windows.Data.DataSourceProvider, System.Windows.Markup.IUriContext + { + public XmlDataProvider() { } + protected virtual System.Uri BaseUri { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public System.Xml.XmlDocument Document { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(true)] + public bool IsAsynchronous { get { throw null; } set { } } + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Xml.XmlNamespaceManager XmlNamespaceManager { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public System.Xml.Serialization.IXmlSerializable XmlSerializer { get { throw null; } } + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public string XPath { get { throw null; } set { } } + protected override void BeginQuery() { } + protected override void EndInit() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeSource() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeXmlSerializer() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeXPath() { throw null; } + } + public partial class XmlNamespaceMapping : System.ComponentModel.ISupportInitialize + { + public XmlNamespaceMapping() { } + public XmlNamespaceMapping(string prefix, System.Uri uri) { } + public string Prefix { get { throw null; } set { } } + public System.Uri Uri { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Data.XmlNamespaceMapping mappingA, System.Windows.Data.XmlNamespaceMapping mappingB) { throw null; } + public static bool operator !=(System.Windows.Data.XmlNamespaceMapping mappingA, System.Windows.Data.XmlNamespaceMapping mappingB) { throw null; } + void System.ComponentModel.ISupportInitialize.BeginInit() { } + void System.ComponentModel.ISupportInitialize.EndInit() { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public partial class XmlNamespaceMappingCollection : System.Xml.XmlNamespaceManager, System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild, System.Windows.Markup.IAddChildInternal + { + public XmlNamespaceMappingCollection() : base (default(System.Xml.XmlNameTable)) { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public void Add(System.Windows.Data.XmlNamespaceMapping mapping) { } + protected virtual void AddChild(object value) { } + protected virtual void AddText(string text) { } + public void Clear() { } + public bool Contains(System.Windows.Data.XmlNamespaceMapping mapping) { throw null; } + public void CopyTo(System.Windows.Data.XmlNamespaceMapping[] array, int arrayIndex) { } + public override System.Collections.IEnumerator GetEnumerator() { throw null; } + protected System.Collections.Generic.IEnumerator ProtectedGetEnumerator() { throw null; } + public bool Remove(System.Windows.Data.XmlNamespaceMapping mapping) { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } +} +namespace System.Windows.Diagnostics +{ + public static partial class ResourceDictionaryDiagnostics + { + public static System.Collections.Generic.IEnumerable GenericResourceDictionaries { get { throw null; } } + public static System.Collections.Generic.IEnumerable ThemedResourceDictionaries { get { throw null; } } + public static event System.EventHandler GenericResourceDictionaryLoaded { add { } remove { } } + public static event System.EventHandler StaticResourceResolved { add { } remove { } } + public static event System.EventHandler ThemedResourceDictionaryLoaded { add { } remove { } } + public static event System.EventHandler ThemedResourceDictionaryUnloaded { add { } remove { } } + public static System.Collections.Generic.IEnumerable GetApplicationOwners(System.Windows.ResourceDictionary dictionary) { throw null; } + public static System.Collections.Generic.IEnumerable GetFrameworkContentElementOwners(System.Windows.ResourceDictionary dictionary) { throw null; } + public static System.Collections.Generic.IEnumerable GetFrameworkElementOwners(System.Windows.ResourceDictionary dictionary) { throw null; } + public static System.Collections.Generic.IEnumerable GetResourceDictionariesForSource(System.Uri uri) { throw null; } + } + public partial class ResourceDictionaryInfo + { + internal ResourceDictionaryInfo() { } + public System.Reflection.Assembly Assembly { get { throw null; } } + public System.Windows.ResourceDictionary ResourceDictionary { get { throw null; } } + public System.Reflection.Assembly ResourceDictionaryAssembly { get { throw null; } } + public System.Uri SourceUri { get { throw null; } } + } + public partial class ResourceDictionaryLoadedEventArgs : System.EventArgs + { + internal ResourceDictionaryLoadedEventArgs() { } + public System.Windows.Diagnostics.ResourceDictionaryInfo ResourceDictionaryInfo { get { throw null; } } + } + public partial class ResourceDictionaryUnloadedEventArgs : System.EventArgs + { + internal ResourceDictionaryUnloadedEventArgs() { } + public System.Windows.Diagnostics.ResourceDictionaryInfo ResourceDictionaryInfo { get { throw null; } } + } + public partial class StaticResourceResolvedEventArgs : System.EventArgs + { + internal StaticResourceResolvedEventArgs() { } + public System.Windows.ResourceDictionary ResourceDictionary { get { throw null; } } + public object ResourceKey { get { throw null; } } + public object TargetObject { get { throw null; } } + public object TargetProperty { get { throw null; } } + } +} +namespace System.Windows.Documents +{ + public abstract partial class Adorner : System.Windows.FrameworkElement + { + protected Adorner(System.Windows.UIElement adornedElement) { } + public System.Windows.UIElement AdornedElement { get { throw null; } } + public bool IsClipEnabled { get { throw null; } set { } } + public virtual System.Windows.Media.GeneralTransform GetDesiredTransform(System.Windows.Media.GeneralTransform transform) { throw null; } + protected override System.Windows.Media.Geometry GetLayoutClip(System.Windows.Size layoutSlotSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + public partial class AdornerDecorator : System.Windows.Controls.Decorator + { + public AdornerDecorator() { } + public System.Windows.Documents.AdornerLayer AdornerLayer { get { throw null; } } + public override System.Windows.UIElement Child { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + } + public partial class AdornerLayer : System.Windows.FrameworkElement + { + internal AdornerLayer() { } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + protected override int VisualChildrenCount { get { throw null; } } + public void Add(System.Windows.Documents.Adorner adorner) { } + public System.Windows.Media.AdornerHitTestResult AdornerHitTest(System.Windows.Point point) { throw null; } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + public static System.Windows.Documents.AdornerLayer GetAdornerLayer(System.Windows.Media.Visual visual) { throw null; } + public System.Windows.Documents.Adorner[] GetAdorners(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + public void Remove(System.Windows.Documents.Adorner adorner) { } + public void Update() { } + public void Update(System.Windows.UIElement element) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Blocks")] + public abstract partial class AnchoredBlock : System.Windows.Documents.Inline + { + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty MarginProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + protected AnchoredBlock(System.Windows.Documents.Block block, System.Windows.Documents.TextPointer insertionPosition) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.BlockCollection Blocks { get { throw null; } } + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + public System.Windows.Thickness Margin { get { throw null; } set { } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBlocks(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + public abstract partial class Block : System.Windows.Documents.TextElement + { + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty BreakColumnBeforeProperty; + public static readonly System.Windows.DependencyProperty BreakPageBeforeProperty; + public static readonly System.Windows.DependencyProperty ClearFloatersProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty IsHyphenationEnabledProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty MarginProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + protected Block() { } + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + public bool BreakColumnBefore { get { throw null; } set { } } + public bool BreakPageBefore { get { throw null; } set { } } + public System.Windows.WrapDirection ClearFloaters { get { throw null; } set { } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + public bool IsHyphenationEnabled { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + public System.Windows.Thickness Margin { get { throw null; } set { } } + public System.Windows.Documents.Block NextBlock { get { throw null; } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + public System.Windows.Documents.Block PreviousBlock { get { throw null; } } + public System.Windows.Documents.BlockCollection SiblingBlocks { get { throw null; } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public static bool GetIsHyphenationEnabled(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public static double GetLineHeight(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.LineStackingStrategy GetLineStackingStrategy(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.TextAlignment GetTextAlignment(System.Windows.DependencyObject element) { throw null; } + public static void SetIsHyphenationEnabled(System.Windows.DependencyObject element, bool value) { } + public static void SetLineHeight(System.Windows.DependencyObject element, double value) { } + public static void SetLineStackingStrategy(System.Windows.DependencyObject element, System.Windows.LineStackingStrategy value) { } + public static void SetTextAlignment(System.Windows.DependencyObject element, System.Windows.TextAlignment value) { } + } + public partial class BlockCollection : System.Windows.Documents.TextElementCollection + { + internal BlockCollection() { } + public System.Windows.Documents.Block FirstBlock { get { throw null; } } + public System.Windows.Documents.Block LastBlock { get { throw null; } } + } + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public partial class BlockUIContainer : System.Windows.Documents.Block + { + public BlockUIContainer() { } + public BlockUIContainer(System.Windows.UIElement uiElement) { } + public System.Windows.UIElement Child { get { throw null; } set { } } + } + public partial class Bold : System.Windows.Documents.Span + { + public Bold() { } + public Bold(System.Windows.Documents.Inline childInline) { } + public Bold(System.Windows.Documents.Inline childInline, System.Windows.Documents.TextPointer insertionPosition) { } + public Bold(System.Windows.Documents.TextPointer start, System.Windows.Documents.TextPointer end) { } + } + [System.Windows.Markup.UsableDuringInitializationAttribute(false)] + public sealed partial class DocumentReference : System.Windows.FrameworkElement, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public DocumentReference() { } + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public System.Windows.Documents.FixedDocument GetDocument(bool forceReload) { throw null; } + public void SetDocument(System.Windows.Documents.FixedDocument doc) { } + } + [System.CLSCompliantAttribute(false)] + public sealed partial class DocumentReferenceCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Collections.Specialized.INotifyCollectionChanged + { + internal DocumentReferenceCollection() { } + public int Count { get { throw null; } } + public System.Windows.Documents.DocumentReference this[int index] { get { throw null; } } + public event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged { add { } remove { } } + public void Add(System.Windows.Documents.DocumentReference item) { } + public void CopyTo(System.Windows.Documents.DocumentReference[] array, int arrayIndex) { } + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public static partial class EditingCommands + { + public static System.Windows.Input.RoutedUICommand AlignCenter { get { throw null; } } + public static System.Windows.Input.RoutedUICommand AlignJustify { get { throw null; } } + public static System.Windows.Input.RoutedUICommand AlignLeft { get { throw null; } } + public static System.Windows.Input.RoutedUICommand AlignRight { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Backspace { get { throw null; } } + public static System.Windows.Input.RoutedUICommand CorrectSpellingError { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseFontSize { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DecreaseIndentation { get { throw null; } } + public static System.Windows.Input.RoutedUICommand Delete { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DeleteNextWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand DeletePreviousWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand EnterLineBreak { get { throw null; } } + public static System.Windows.Input.RoutedUICommand EnterParagraphBreak { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IgnoreSpellingError { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseFontSize { get { throw null; } } + public static System.Windows.Input.RoutedUICommand IncreaseIndentation { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveDownByLine { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveDownByPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveDownByParagraph { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveLeftByCharacter { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveLeftByWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveRightByCharacter { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveRightByWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToDocumentEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToDocumentStart { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToLineEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveToLineStart { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveUpByLine { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveUpByPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand MoveUpByParagraph { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectDownByLine { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectDownByPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectDownByParagraph { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectLeftByCharacter { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectLeftByWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectRightByCharacter { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectRightByWord { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToDocumentEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToDocumentStart { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToLineEnd { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectToLineStart { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectUpByLine { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectUpByPage { get { throw null; } } + public static System.Windows.Input.RoutedUICommand SelectUpByParagraph { get { throw null; } } + public static System.Windows.Input.RoutedUICommand TabBackward { get { throw null; } } + public static System.Windows.Input.RoutedUICommand TabForward { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleBold { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleBullets { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleInsert { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleItalic { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleNumbering { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleSubscript { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleSuperscript { get { throw null; } } + public static System.Windows.Input.RoutedUICommand ToggleUnderline { get { throw null; } } + } + public partial class Figure : System.Windows.Documents.AnchoredBlock + { + public static readonly System.Windows.DependencyProperty CanDelayPlacementProperty; + public static readonly System.Windows.DependencyProperty HeightProperty; + public static readonly System.Windows.DependencyProperty HorizontalAnchorProperty; + public static readonly System.Windows.DependencyProperty HorizontalOffsetProperty; + public static readonly System.Windows.DependencyProperty VerticalAnchorProperty; + public static readonly System.Windows.DependencyProperty VerticalOffsetProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public static readonly System.Windows.DependencyProperty WrapDirectionProperty; + public Figure() : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public Figure(System.Windows.Documents.Block childBlock) : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public Figure(System.Windows.Documents.Block childBlock, System.Windows.Documents.TextPointer insertionPosition) : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public bool CanDelayPlacement { get { throw null; } set { } } + public System.Windows.FigureLength Height { get { throw null; } set { } } + public System.Windows.FigureHorizontalAnchor HorizontalAnchor { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double HorizontalOffset { get { throw null; } set { } } + public System.Windows.FigureVerticalAnchor VerticalAnchor { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double VerticalOffset { get { throw null; } set { } } + public System.Windows.FigureLength Width { get { throw null; } set { } } + public System.Windows.WrapDirection WrapDirection { get { throw null; } set { } } + } + [System.Windows.Markup.ContentPropertyAttribute("Pages")] + public partial class FixedDocument : System.Windows.FrameworkContentElement, System.IServiceProvider, System.Windows.Documents.IDocumentPaginatorSource, System.Windows.Markup.IAddChild, System.Windows.Markup.IUriContext, System.Windows.Markup.IAddChildInternal + { + public static readonly System.Windows.DependencyProperty PrintTicketProperty; + public FixedDocument() { } + public System.Windows.Documents.DocumentPaginator DocumentPaginator { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.PageContentCollection Pages { get { throw null; } } + public object PrintTicket { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("References")] + public partial class FixedDocumentSequence : System.Windows.FrameworkContentElement, System.IServiceProvider, System.Windows.Documents.IDocumentPaginatorSource, System.Windows.Markup.IAddChild, System.Windows.Markup.IUriContext, System.Windows.Markup.IAddChildInternal + { + public static readonly System.Windows.DependencyProperty PrintTicketProperty; + public FixedDocumentSequence() { } + public System.Windows.Documents.DocumentPaginator DocumentPaginator { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public object PrintTicket { get { throw null; } set { } } + [System.CLSCompliantAttribute(false)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.DocumentReferenceCollection References { get { throw null; } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Children")] + public sealed partial class FixedPage : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild, System.Windows.Markup.IUriContext, System.Windows.Markup.IAddChildInternal + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty BleedBoxProperty; + public static readonly System.Windows.DependencyProperty BottomProperty; + public static readonly System.Windows.DependencyProperty ContentBoxProperty; + public static readonly System.Windows.DependencyProperty LeftProperty; + public static readonly System.Windows.DependencyProperty NavigateUriProperty; + public static readonly System.Windows.DependencyProperty PrintTicketProperty; + public static readonly System.Windows.DependencyProperty RightProperty; + public static readonly System.Windows.DependencyProperty TopProperty; + public FixedPage() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public System.Windows.Rect BleedBox { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Controls.UIElementCollection Children { get { throw null; } } + public System.Windows.Rect ContentBox { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public object PrintTicket { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + protected override int VisualChildrenCount { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size arrangeSize) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetBottom(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetLeft(System.Windows.UIElement element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static System.Uri GetNavigateUri(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetRight(System.Windows.UIElement element) { throw null; } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + [System.Windows.AttachedPropertyBrowsableForChildrenAttribute] + public static double GetTop(System.Windows.UIElement element) { throw null; } + protected override System.Windows.Media.Visual GetVisualChild(int index) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnPreviewMouseWheel(System.Windows.Input.MouseWheelEventArgs e) { } + protected override void OnRender(System.Windows.Media.DrawingContext dc) { } + protected internal override void OnVisualParentChanged(System.Windows.DependencyObject oldParent) { } + public static void SetBottom(System.Windows.UIElement element, double length) { } + public static void SetLeft(System.Windows.UIElement element, double length) { } + public static void SetNavigateUri(System.Windows.UIElement element, System.Uri uri) { } + public static void SetRight(System.Windows.UIElement element, double length) { } + public static void SetTop(System.Windows.UIElement element, double length) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class Floater : System.Windows.Documents.AnchoredBlock + { + public static readonly System.Windows.DependencyProperty HorizontalAlignmentProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public Floater() : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public Floater(System.Windows.Documents.Block childBlock) : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public Floater(System.Windows.Documents.Block childBlock, System.Windows.Documents.TextPointer insertionPosition) : base (default(System.Windows.Documents.Block), default(System.Windows.Documents.TextPointer)) { } + public System.Windows.HorizontalAlignment HorizontalAlignment { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double Width { get { throw null; } set { } } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Inherit, Readability=System.Windows.Readability.Unreadable)] + [System.Windows.Markup.ContentPropertyAttribute("Blocks")] + public partial class FlowDocument : System.Windows.FrameworkContentElement, System.IServiceProvider, System.Windows.Documents.IDocumentPaginatorSource, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty ColumnGapProperty; + public static readonly System.Windows.DependencyProperty ColumnRuleBrushProperty; + public static readonly System.Windows.DependencyProperty ColumnRuleWidthProperty; + public static readonly System.Windows.DependencyProperty ColumnWidthProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStretchProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty IsColumnWidthFlexibleProperty; + public static readonly System.Windows.DependencyProperty IsHyphenationEnabledProperty; + public static readonly System.Windows.DependencyProperty IsOptimalParagraphEnabledProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty MaxPageHeightProperty; + public static readonly System.Windows.DependencyProperty MaxPageWidthProperty; + public static readonly System.Windows.DependencyProperty MinPageHeightProperty; + public static readonly System.Windows.DependencyProperty MinPageWidthProperty; + public static readonly System.Windows.DependencyProperty PageHeightProperty; + public static readonly System.Windows.DependencyProperty PagePaddingProperty; + public static readonly System.Windows.DependencyProperty PageWidthProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public static readonly System.Windows.DependencyProperty TextEffectsProperty; + public FlowDocument() { } + public FlowDocument(System.Windows.Documents.Block block) { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.BlockCollection Blocks { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double ColumnGap { get { throw null; } set { } } + public System.Windows.Media.Brush ColumnRuleBrush { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double ColumnRuleWidth { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public double ColumnWidth { get { throw null; } set { } } + public System.Windows.Documents.TextPointer ContentEnd { get { throw null; } } + public System.Windows.Documents.TextPointer ContentStart { get { throw null; } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + public System.Windows.FontStretch FontStretch { get { throw null; } set { } } + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + public bool IsColumnWidthFlexible { get { throw null; } set { } } + protected override bool IsEnabledCore { get { throw null; } } + public bool IsHyphenationEnabled { get { throw null; } set { } } + public bool IsOptimalParagraphEnabled { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MaxPageHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MaxPageWidth { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MinPageHeight { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MinPageWidth { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double PageHeight { get { throw null; } set { } } + public System.Windows.Thickness PagePadding { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double PageWidth { get { throw null; } set { } } + System.Windows.Documents.DocumentPaginator System.Windows.Documents.IDocumentPaginatorSource.DocumentPaginator { get { throw null; } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + public System.Windows.Media.TextEffectCollection TextEffects { get { throw null; } set { } } + public System.Windows.Documents.Typography Typography { get { throw null; } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected sealed override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + public void SetDpi(System.Windows.DpiScale dpiInfo) { } + object System.IServiceProvider.GetService(System.Type serviceType) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class FrameworkRichTextComposition : System.Windows.Documents.FrameworkTextComposition + { + internal FrameworkRichTextComposition() { } + public System.Windows.Documents.TextPointer CompositionEnd { get { throw null; } } + public System.Windows.Documents.TextPointer CompositionStart { get { throw null; } } + public System.Windows.Documents.TextPointer ResultEnd { get { throw null; } } + public System.Windows.Documents.TextPointer ResultStart { get { throw null; } } + } + public partial class FrameworkTextComposition : System.Windows.Input.TextComposition + { + internal FrameworkTextComposition() : base (default(System.Windows.Input.InputManager), default(System.Windows.IInputElement), default(string)) { } + public int CompositionLength { get { throw null; } } + public int CompositionOffset { get { throw null; } } + public int ResultLength { get { throw null; } } + public int ResultOffset { get { throw null; } } + public override void Complete() { } + } + public sealed partial class GetPageRootCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs + { + internal GetPageRootCompletedEventArgs() : base (default(System.Exception), default(bool), default(object)) { } + public System.Windows.Documents.FixedPage Result { get { throw null; } } + } + public delegate void GetPageRootCompletedEventHandler(object sender, System.Windows.Documents.GetPageRootCompletedEventArgs e); + public sealed partial class Glyphs : System.Windows.FrameworkElement, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty BidiLevelProperty; + public static readonly System.Windows.DependencyProperty CaretStopsProperty; + public static readonly System.Windows.DependencyProperty DeviceFontNameProperty; + public static readonly System.Windows.DependencyProperty FillProperty; + public static readonly System.Windows.DependencyProperty FontRenderingEmSizeProperty; + public static readonly System.Windows.DependencyProperty FontUriProperty; + public static readonly System.Windows.DependencyProperty IndicesProperty; + public static readonly System.Windows.DependencyProperty IsSidewaysProperty; + public static readonly System.Windows.DependencyProperty OriginXProperty; + public static readonly System.Windows.DependencyProperty OriginYProperty; + public static readonly System.Windows.DependencyProperty StyleSimulationsProperty; + public static readonly System.Windows.DependencyProperty UnicodeStringProperty; + public Glyphs() { } + public int BidiLevel { get { throw null; } set { } } + public string CaretStops { get { throw null; } set { } } + public string DeviceFontName { get { throw null; } set { } } + public System.Windows.Media.Brush Fill { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute("System.Windows.FontSizeConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public double FontRenderingEmSize { get { throw null; } set { } } + public System.Uri FontUri { get { throw null; } set { } } + public string Indices { get { throw null; } set { } } + public bool IsSideways { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public double OriginX { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")] + public double OriginY { get { throw null; } set { } } + public System.Windows.Media.StyleSimulations StyleSimulations { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public string UnicodeString { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext context) { } + public System.Windows.Media.GlyphRun ToGlyphRun() { throw null; } + } + [System.Windows.Documents.TextElementEditingBehaviorAttribute(IsMergeable=false, IsTypographicOnly=false)] + public partial class Hyperlink : System.Windows.Documents.Span, System.Windows.Input.ICommandSource, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.RoutedEvent ClickEvent; + public static readonly System.Windows.DependencyProperty CommandParameterProperty; + public static readonly System.Windows.DependencyProperty CommandProperty; + public static readonly System.Windows.DependencyProperty CommandTargetProperty; + public static readonly System.Windows.DependencyProperty NavigateUriProperty; + public static readonly System.Windows.RoutedEvent RequestNavigateEvent; + public static readonly System.Windows.DependencyProperty TargetNameProperty; + public Hyperlink() { } + public Hyperlink(System.Windows.Documents.Inline childInline) { } + public Hyperlink(System.Windows.Documents.Inline childInline, System.Windows.Documents.TextPointer insertionPosition) { } + public Hyperlink(System.Windows.Documents.TextPointer start, System.Windows.Documents.TextPointer end) { } + protected virtual System.Uri BaseUri { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public object CommandParameter { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.ComponentModel.CategoryAttribute("Action")] + public System.Windows.IInputElement CommandTarget { get { throw null; } set { } } + protected override bool IsEnabledCore { get { throw null; } } + [System.ComponentModel.BindableAttribute(true)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Hyperlink)] + public System.Uri NavigateUri { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + [System.ComponentModel.BindableAttribute(true)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public string TargetName { get { throw null; } set { } } + [System.ComponentModel.CategoryAttribute("Behavior")] + public event System.Windows.RoutedEventHandler Click { add { } remove { } } + public event System.Windows.Navigation.RequestNavigateEventHandler RequestNavigate { add { } remove { } } + public void DoClick() { } + protected virtual void OnClick() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected internal override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected internal override void OnMouseLeftButtonDown(System.Windows.Input.MouseButtonEventArgs e) { } + protected internal override void OnMouseLeftButtonUp(System.Windows.Input.MouseButtonEventArgs e) { } + } + [System.Windows.Documents.TextElementEditingBehaviorAttribute(IsMergeable=true, IsTypographicOnly=true)] + public abstract partial class Inline : System.Windows.Documents.TextElement + { + public static readonly System.Windows.DependencyProperty BaselineAlignmentProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty TextDecorationsProperty; + protected Inline() { } + public System.Windows.BaselineAlignment BaselineAlignment { get { throw null; } set { } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + public System.Windows.Documents.Inline NextInline { get { throw null; } } + public System.Windows.Documents.Inline PreviousInline { get { throw null; } } + public System.Windows.Documents.InlineCollection SiblingInlines { get { throw null; } } + public System.Windows.TextDecorationCollection TextDecorations { get { throw null; } set { } } + } + [System.Windows.Markup.ContentWrapperAttribute(typeof(System.Windows.Documents.InlineUIContainer))] + [System.Windows.Markup.ContentWrapperAttribute(typeof(System.Windows.Documents.Run))] + [System.Windows.Markup.WhitespaceSignificantCollectionAttribute] + public partial class InlineCollection : System.Windows.Documents.TextElementCollection, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal InlineCollection() { } + public System.Windows.Documents.Inline FirstInline { get { throw null; } } + public System.Windows.Documents.Inline LastInline { get { throw null; } } + public void Add(string text) { } + public void Add(System.Windows.UIElement uiElement) { } + } + [System.Windows.Documents.TextElementEditingBehaviorAttribute(IsMergeable=false)] + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public partial class InlineUIContainer : System.Windows.Documents.Inline + { + public InlineUIContainer() { } + public InlineUIContainer(System.Windows.UIElement childUIElement) { } + public InlineUIContainer(System.Windows.UIElement childUIElement, System.Windows.Documents.TextPointer insertionPosition) { } + public System.Windows.UIElement Child { get { throw null; } set { } } + } + public partial class Italic : System.Windows.Documents.Span + { + public Italic() { } + public Italic(System.Windows.Documents.Inline childInline) { } + public Italic(System.Windows.Documents.Inline childInline, System.Windows.Documents.TextPointer insertionPosition) { } + public Italic(System.Windows.Documents.TextPointer start, System.Windows.Documents.TextPointer end) { } + } + [System.Windows.Markup.TrimSurroundingWhitespaceAttribute] + public partial class LineBreak : System.Windows.Documents.Inline + { + public LineBreak() { } + public LineBreak(System.Windows.Documents.TextPointer insertionPosition) { } + } + public sealed partial class LinkTarget + { + public LinkTarget() { } + public string Name { get { throw null; } set { } } + } + public sealed partial class LinkTargetCollection : System.Collections.CollectionBase + { + public LinkTargetCollection() { } + public System.Windows.Documents.LinkTarget this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Documents.LinkTarget value) { throw null; } + public bool Contains(System.Windows.Documents.LinkTarget value) { throw null; } + public void CopyTo(System.Windows.Documents.LinkTarget[] array, int index) { } + public int IndexOf(System.Windows.Documents.LinkTarget value) { throw null; } + public void Insert(int index, System.Windows.Documents.LinkTarget value) { } + public void Remove(System.Windows.Documents.LinkTarget value) { } + } + [System.Windows.Markup.ContentPropertyAttribute("ListItems")] + public partial class List : System.Windows.Documents.Block + { + public static readonly System.Windows.DependencyProperty MarkerOffsetProperty; + public static readonly System.Windows.DependencyProperty MarkerStyleProperty; + public static readonly System.Windows.DependencyProperty StartIndexProperty; + public List() { } + public List(System.Windows.Documents.ListItem listItem) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.ListItemCollection ListItems { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double MarkerOffset { get { throw null; } set { } } + public System.Windows.TextMarkerStyle MarkerStyle { get { throw null; } set { } } + public int StartIndex { get { throw null; } set { } } + } + [System.Windows.Markup.ContentPropertyAttribute("Blocks")] + public partial class ListItem : System.Windows.Documents.TextElement + { + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty MarginProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public ListItem() { } + public ListItem(System.Windows.Documents.Paragraph paragraph) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.BlockCollection Blocks { get { throw null; } } + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + public System.Windows.Documents.List List { get { throw null; } } + public System.Windows.Thickness Margin { get { throw null; } set { } } + public System.Windows.Documents.ListItem NextListItem { get { throw null; } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + public System.Windows.Documents.ListItem PreviousListItem { get { throw null; } } + public System.Windows.Documents.ListItemCollection SiblingListItems { get { throw null; } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBlocks(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + public partial class ListItemCollection : System.Windows.Documents.TextElementCollection + { + internal ListItemCollection() { } + public System.Windows.Documents.ListItem FirstListItem { get { throw null; } } + public System.Windows.Documents.ListItem LastListItem { get { throw null; } } + } + public enum LogicalDirection + { + Backward = 0, + Forward = 1, + } + [System.Windows.Markup.ContentPropertyAttribute("Child")] + public sealed partial class PageContent : System.Windows.FrameworkElement, System.Windows.Markup.IAddChild, System.Windows.Markup.IUriContext, System.Windows.Markup.IAddChildInternal + { + public static readonly System.Windows.DependencyProperty SourceProperty; + public PageContent() { } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.FixedPage Child { get { throw null; } set { } } + public System.Windows.Documents.LinkTargetCollection LinkTargets { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public event System.Windows.Documents.GetPageRootCompletedEventHandler GetPageRootCompleted { add { } remove { } } + public System.Windows.Documents.FixedPage GetPageRoot(bool forceReload) { throw null; } + public void GetPageRootAsync(bool forceReload) { } + public void GetPageRootAsyncCancel() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeChild(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class PageContentCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable + { + internal PageContentCollection() { } + public int Count { get { throw null; } } + public System.Windows.Documents.PageContent this[int pageIndex] { get { throw null; } } + public int Add(System.Windows.Documents.PageContent newPageContent) { throw null; } + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Inlines")] + public partial class Paragraph : System.Windows.Documents.Block + { + public static readonly System.Windows.DependencyProperty KeepTogetherProperty; + public static readonly System.Windows.DependencyProperty KeepWithNextProperty; + public static readonly System.Windows.DependencyProperty MinOrphanLinesProperty; + public static readonly System.Windows.DependencyProperty MinWidowLinesProperty; + public static readonly System.Windows.DependencyProperty TextDecorationsProperty; + public static readonly System.Windows.DependencyProperty TextIndentProperty; + public Paragraph() { } + public Paragraph(System.Windows.Documents.Inline inline) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.InlineCollection Inlines { get { throw null; } } + public bool KeepTogether { get { throw null; } set { } } + public bool KeepWithNext { get { throw null; } set { } } + public int MinOrphanLines { get { throw null; } set { } } + public int MinWidowLines { get { throw null; } set { } } + public System.Windows.TextDecorationCollection TextDecorations { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double TextIndent { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInlines(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Text")] + public partial class Run : System.Windows.Documents.Inline + { + public static readonly System.Windows.DependencyProperty TextProperty; + public Run() { } + public Run(string text) { } + public Run(string text, System.Windows.Documents.TextPointer insertionPosition) { } + public string Text { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeText(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Blocks")] + public partial class Section : System.Windows.Documents.Block + { + public Section() { } + public Section(System.Windows.Documents.Block block) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.BlockCollection Blocks { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(true)] + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public bool HasTrailingParagraphBreakOnPaste { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeBlocks(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("Inlines")] + public partial class Span : System.Windows.Documents.Inline + { + public Span() { } + public Span(System.Windows.Documents.Inline childInline) { } + public Span(System.Windows.Documents.Inline childInline, System.Windows.Documents.TextPointer insertionPosition) { } + public Span(System.Windows.Documents.TextPointer start, System.Windows.Documents.TextPointer end) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.InlineCollection Inlines { get { throw null; } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeInlines(System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } + [System.Windows.Markup.ContentPropertyAttribute("RowGroups")] + public partial class Table : System.Windows.Documents.Block, System.Windows.Markup.IAddChild + { + public static readonly System.Windows.DependencyProperty CellSpacingProperty; + public Table() { } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double CellSpacing { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.TableColumnCollection Columns { get { throw null; } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.TableRowGroupCollection RowGroups { get { throw null; } } + public override void BeginInit() { } + public override void EndInit() { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeColumns() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("Blocks")] + public partial class TableCell : System.Windows.Documents.TextElement + { + public static readonly System.Windows.DependencyProperty BorderBrushProperty; + public static readonly System.Windows.DependencyProperty BorderThicknessProperty; + public static readonly System.Windows.DependencyProperty ColumnSpanProperty; + public static readonly System.Windows.DependencyProperty FlowDirectionProperty; + public static readonly System.Windows.DependencyProperty LineHeightProperty; + public static readonly System.Windows.DependencyProperty LineStackingStrategyProperty; + public static readonly System.Windows.DependencyProperty PaddingProperty; + public static readonly System.Windows.DependencyProperty RowSpanProperty; + public static readonly System.Windows.DependencyProperty TextAlignmentProperty; + public TableCell() { } + public TableCell(System.Windows.Documents.Block blockItem) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.BlockCollection Blocks { get { throw null; } } + public System.Windows.Media.Brush BorderBrush { get { throw null; } set { } } + public System.Windows.Thickness BorderThickness { get { throw null; } set { } } + public int ColumnSpan { get { throw null; } set { } } + public System.Windows.FlowDirection FlowDirection { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double LineHeight { get { throw null; } set { } } + public System.Windows.LineStackingStrategy LineStackingStrategy { get { throw null; } set { } } + public System.Windows.Thickness Padding { get { throw null; } set { } } + public int RowSpan { get { throw null; } set { } } + public System.Windows.TextAlignment TextAlignment { get { throw null; } set { } } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + } + public sealed partial class TableCellCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal TableCellCollection() { } + public int Capacity { get { throw null; } set { } } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Documents.TableCell this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Documents.TableCell item) { } + public void Clear() { } + public bool Contains(System.Windows.Documents.TableCell item) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Documents.TableCell[] array, int index) { } + public int IndexOf(System.Windows.Documents.TableCell item) { throw null; } + public void Insert(int index, System.Windows.Documents.TableCell item) { } + public bool Remove(System.Windows.Documents.TableCell item) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + void System.Collections.IList.Clear() { } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + void System.Collections.IList.RemoveAt(int index) { } + public void TrimToSize() { } + } + public partial class TableColumn : System.Windows.FrameworkContentElement + { + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty WidthProperty; + public TableColumn() { } + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public System.Windows.GridLength Width { get { throw null; } set { } } + } + public sealed partial class TableColumnCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal TableColumnCollection() { } + public int Capacity { get { throw null; } set { } } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Documents.TableColumn this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Documents.TableColumn item) { } + public void Clear() { } + public bool Contains(System.Windows.Documents.TableColumn item) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Documents.TableColumn[] array, int index) { } + public int IndexOf(System.Windows.Documents.TableColumn item) { throw null; } + public void Insert(int index, System.Windows.Documents.TableColumn item) { } + public bool Remove(System.Windows.Documents.TableColumn item) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + void System.Collections.IList.Clear() { } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + void System.Collections.IList.RemoveAt(int index) { } + public void TrimToSize() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Cells")] + public partial class TableRow : System.Windows.Documents.TextElement, System.Windows.Markup.IAddChild + { + public TableRow() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.TableCellCollection Cells { get { throw null; } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeCells() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class TableRowCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal TableRowCollection() { } + public int Capacity { get { throw null; } set { } } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Documents.TableRow this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Documents.TableRow item) { } + public void Clear() { } + public bool Contains(System.Windows.Documents.TableRow item) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Documents.TableRow[] array, int index) { } + public int IndexOf(System.Windows.Documents.TableRow item) { throw null; } + public void Insert(int index, System.Windows.Documents.TableRow item) { } + public bool Remove(System.Windows.Documents.TableRow item) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + void System.Collections.IList.Clear() { } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + void System.Collections.IList.RemoveAt(int index) { } + public void TrimToSize() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Rows")] + public partial class TableRowGroup : System.Windows.Documents.TextElement, System.Windows.Markup.IAddChild + { + public TableRowGroup() { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Windows.Documents.TableRowCollection Rows { get { throw null; } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeRows() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public sealed partial class TableRowGroupCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + internal TableRowGroupCollection() { } + public int Capacity { get { throw null; } set { } } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Documents.TableRowGroup this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(System.Windows.Documents.TableRowGroup item) { } + public void Clear() { } + public bool Contains(System.Windows.Documents.TableRowGroup item) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Documents.TableRowGroup[] array, int index) { } + public int IndexOf(System.Windows.Documents.TableRowGroup item) { throw null; } + public void Insert(int index, System.Windows.Documents.TableRowGroup item) { } + public bool Remove(System.Windows.Documents.TableRowGroup item) { throw null; } + public void RemoveAt(int index) { } + public void RemoveRange(int index, int count) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + void System.Collections.IList.Clear() { } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + void System.Collections.IList.RemoveAt(int index) { } + public void TrimToSize() { } + } + public static partial class TextEffectResolver + { + public static System.Windows.Documents.TextEffectTarget[] Resolve(System.Windows.Documents.TextPointer startPosition, System.Windows.Documents.TextPointer endPosition, System.Windows.Media.TextEffect effect) { throw null; } + } + public partial class TextEffectTarget + { + internal TextEffectTarget() { } + public System.Windows.DependencyObject Element { get { throw null; } } + public bool IsEnabled { get { throw null; } } + public System.Windows.Media.TextEffect TextEffect { get { throw null; } } + public void Disable() { } + public void Enable() { } + } + public abstract partial class TextElement : System.Windows.FrameworkContentElement, System.Windows.Markup.IAddChild + { + internal TextElement() { } + public static readonly System.Windows.DependencyProperty BackgroundProperty; + public static readonly System.Windows.DependencyProperty FontFamilyProperty; + public static readonly System.Windows.DependencyProperty FontSizeProperty; + public static readonly System.Windows.DependencyProperty FontStretchProperty; + public static readonly System.Windows.DependencyProperty FontStyleProperty; + public static readonly System.Windows.DependencyProperty FontWeightProperty; + public static readonly System.Windows.DependencyProperty ForegroundProperty; + public static readonly System.Windows.DependencyProperty TextEffectsProperty; + public System.Windows.Media.Brush Background { get { throw null; } set { } } + public System.Windows.Documents.TextPointer ContentEnd { get { throw null; } } + public System.Windows.Documents.TextPointer ContentStart { get { throw null; } } + public System.Windows.Documents.TextPointer ElementEnd { get { throw null; } } + public System.Windows.Documents.TextPointer ElementStart { get { throw null; } } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Font, Modifiability=System.Windows.Modifiability.Unmodifiable)] + public System.Windows.Media.FontFamily FontFamily { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None)] + public double FontSize { get { throw null; } set { } } + public System.Windows.FontStretch FontStretch { get { throw null; } set { } } + public System.Windows.FontStyle FontStyle { get { throw null; } set { } } + public System.Windows.FontWeight FontWeight { get { throw null; } set { } } + public System.Windows.Media.Brush Foreground { get { throw null; } set { } } + protected internal override System.Collections.IEnumerator LogicalChildren { get { throw null; } } + public System.Windows.Media.TextEffectCollection TextEffects { get { throw null; } set { } } + public System.Windows.Documents.Typography Typography { get { throw null; } } + public static System.Windows.Media.FontFamily GetFontFamily(System.Windows.DependencyObject element) { throw null; } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.FontSizeConverter))] + public static double GetFontSize(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontStretch GetFontStretch(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontStyle GetFontStyle(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.FontWeight GetFontWeight(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Media.Brush GetForeground(System.Windows.DependencyObject element) { throw null; } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + public static void SetFontFamily(System.Windows.DependencyObject element, System.Windows.Media.FontFamily value) { } + public static void SetFontSize(System.Windows.DependencyObject element, double value) { } + public static void SetFontStretch(System.Windows.DependencyObject element, System.Windows.FontStretch value) { } + public static void SetFontStyle(System.Windows.DependencyObject element, System.Windows.FontStyle value) { } + public static void SetFontWeight(System.Windows.DependencyObject element, System.Windows.FontWeight value) { } + public static void SetForeground(System.Windows.DependencyObject element, System.Windows.Media.Brush value) { } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TextElementCollection : System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList where TextElementType : System.Windows.Documents.TextElement + { + internal TextElementCollection() { } + public int Count { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + int System.Collections.ICollection.Count { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + bool System.Collections.IList.IsFixedSize { get { throw null; } } + bool System.Collections.IList.IsReadOnly { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public void Add(TextElementType item) { } + public void AddRange(System.Collections.IEnumerable range) { } + public void Clear() { } + public bool Contains(TextElementType item) { throw null; } + public void CopyTo(TextElementType[] array, int arrayIndex) { } + public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } + public void InsertAfter(TextElementType previousSibling, TextElementType newItem) { } + public void InsertBefore(TextElementType nextSibling, TextElementType newItem) { } + public bool Remove(TextElementType item) { throw null; } + void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + int System.Collections.IList.Add(object value) { throw null; } + void System.Collections.IList.Clear() { } + bool System.Collections.IList.Contains(object value) { throw null; } + int System.Collections.IList.IndexOf(object value) { throw null; } + void System.Collections.IList.Insert(int index, object value) { } + void System.Collections.IList.Remove(object value) { } + void System.Collections.IList.RemoveAt(int index) { } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class)] + public sealed partial class TextElementEditingBehaviorAttribute : System.Attribute + { + public TextElementEditingBehaviorAttribute() { } + public bool IsMergeable { get { throw null; } set { } } + public bool IsTypographicOnly { get { throw null; } set { } } + } + public partial class TextPointer : System.Windows.Documents.ContentPosition + { + internal TextPointer() { } + public System.Windows.Documents.TextPointer DocumentEnd { get { throw null; } } + public System.Windows.Documents.TextPointer DocumentStart { get { throw null; } } + public bool HasValidLayout { get { throw null; } } + public bool IsAtInsertionPosition { get { throw null; } } + public bool IsAtLineStartPosition { get { throw null; } } + public System.Windows.Documents.LogicalDirection LogicalDirection { get { throw null; } } + public System.Windows.Documents.Paragraph Paragraph { get { throw null; } } + public System.Windows.DependencyObject Parent { get { throw null; } } + public int CompareTo(System.Windows.Documents.TextPointer position) { throw null; } + public int DeleteTextInRun(int count) { throw null; } + public System.Windows.DependencyObject GetAdjacentElement(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Rect GetCharacterRect(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer GetInsertionPosition(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer GetLineStartPosition(int count) { throw null; } + public System.Windows.Documents.TextPointer GetLineStartPosition(int count, out int actualCount) { throw null; } + public System.Windows.Documents.TextPointer GetNextContextPosition(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer GetNextInsertionPosition(System.Windows.Documents.LogicalDirection direction) { throw null; } + public int GetOffsetToPosition(System.Windows.Documents.TextPointer position) { throw null; } + public System.Windows.Documents.TextPointerContext GetPointerContext(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer GetPositionAtOffset(int offset) { throw null; } + public System.Windows.Documents.TextPointer GetPositionAtOffset(int offset, System.Windows.Documents.LogicalDirection direction) { throw null; } + public string GetTextInRun(System.Windows.Documents.LogicalDirection direction) { throw null; } + public int GetTextInRun(System.Windows.Documents.LogicalDirection direction, char[] textBuffer, int startIndex, int count) { throw null; } + public int GetTextRunLength(System.Windows.Documents.LogicalDirection direction) { throw null; } + public System.Windows.Documents.TextPointer InsertLineBreak() { throw null; } + public System.Windows.Documents.TextPointer InsertParagraphBreak() { throw null; } + public void InsertTextInRun(string textData) { } + public bool IsInSameDocument(System.Windows.Documents.TextPointer textPosition) { throw null; } + public override string ToString() { throw null; } + } + public enum TextPointerContext + { + None = 0, + Text = 1, + EmbeddedElement = 2, + ElementStart = 3, + ElementEnd = 4, + } + public partial class TextRange + { + public TextRange(System.Windows.Documents.TextPointer position1, System.Windows.Documents.TextPointer position2) { } + public System.Windows.Documents.TextPointer End { get { throw null; } } + public bool IsEmpty { get { throw null; } } + public System.Windows.Documents.TextPointer Start { get { throw null; } } + public string Text { get { throw null; } set { } } + public event System.EventHandler Changed { add { } remove { } } + public void ApplyPropertyValue(System.Windows.DependencyProperty formattingProperty, object value) { } + public bool CanLoad(string dataFormat) { throw null; } + public bool CanSave(string dataFormat) { throw null; } + public void ClearAllProperties() { } + public bool Contains(System.Windows.Documents.TextPointer textPointer) { throw null; } + public object GetPropertyValue(System.Windows.DependencyProperty formattingProperty) { throw null; } + public void Load(System.IO.Stream stream, string dataFormat) { } + public void Save(System.IO.Stream stream, string dataFormat) { } + public void Save(System.IO.Stream stream, string dataFormat, bool preserveTextElements) { } + public void Select(System.Windows.Documents.TextPointer position1, System.Windows.Documents.TextPointer position2) { } + } + public sealed partial class TextSelection : System.Windows.Documents.TextRange + { + internal TextSelection() : base (default(System.Windows.Documents.TextPointer), default(System.Windows.Documents.TextPointer)) { } + } + public sealed partial class Typography + { + internal Typography() { } + public static readonly System.Windows.DependencyProperty AnnotationAlternatesProperty; + public static readonly System.Windows.DependencyProperty CapitalSpacingProperty; + public static readonly System.Windows.DependencyProperty CapitalsProperty; + public static readonly System.Windows.DependencyProperty CaseSensitiveFormsProperty; + public static readonly System.Windows.DependencyProperty ContextualAlternatesProperty; + public static readonly System.Windows.DependencyProperty ContextualLigaturesProperty; + public static readonly System.Windows.DependencyProperty ContextualSwashesProperty; + public static readonly System.Windows.DependencyProperty DiscretionaryLigaturesProperty; + public static readonly System.Windows.DependencyProperty EastAsianExpertFormsProperty; + public static readonly System.Windows.DependencyProperty EastAsianLanguageProperty; + public static readonly System.Windows.DependencyProperty EastAsianWidthsProperty; + public static readonly System.Windows.DependencyProperty FractionProperty; + public static readonly System.Windows.DependencyProperty HistoricalFormsProperty; + public static readonly System.Windows.DependencyProperty HistoricalLigaturesProperty; + public static readonly System.Windows.DependencyProperty KerningProperty; + public static readonly System.Windows.DependencyProperty MathematicalGreekProperty; + public static readonly System.Windows.DependencyProperty NumeralAlignmentProperty; + public static readonly System.Windows.DependencyProperty NumeralStyleProperty; + public static readonly System.Windows.DependencyProperty SlashedZeroProperty; + public static readonly System.Windows.DependencyProperty StandardLigaturesProperty; + public static readonly System.Windows.DependencyProperty StandardSwashesProperty; + public static readonly System.Windows.DependencyProperty StylisticAlternatesProperty; + public static readonly System.Windows.DependencyProperty StylisticSet10Property; + public static readonly System.Windows.DependencyProperty StylisticSet11Property; + public static readonly System.Windows.DependencyProperty StylisticSet12Property; + public static readonly System.Windows.DependencyProperty StylisticSet13Property; + public static readonly System.Windows.DependencyProperty StylisticSet14Property; + public static readonly System.Windows.DependencyProperty StylisticSet15Property; + public static readonly System.Windows.DependencyProperty StylisticSet16Property; + public static readonly System.Windows.DependencyProperty StylisticSet17Property; + public static readonly System.Windows.DependencyProperty StylisticSet18Property; + public static readonly System.Windows.DependencyProperty StylisticSet19Property; + public static readonly System.Windows.DependencyProperty StylisticSet1Property; + public static readonly System.Windows.DependencyProperty StylisticSet20Property; + public static readonly System.Windows.DependencyProperty StylisticSet2Property; + public static readonly System.Windows.DependencyProperty StylisticSet3Property; + public static readonly System.Windows.DependencyProperty StylisticSet4Property; + public static readonly System.Windows.DependencyProperty StylisticSet5Property; + public static readonly System.Windows.DependencyProperty StylisticSet6Property; + public static readonly System.Windows.DependencyProperty StylisticSet7Property; + public static readonly System.Windows.DependencyProperty StylisticSet8Property; + public static readonly System.Windows.DependencyProperty StylisticSet9Property; + public static readonly System.Windows.DependencyProperty VariantsProperty; + public int AnnotationAlternates { get { throw null; } set { } } + public System.Windows.FontCapitals Capitals { get { throw null; } set { } } + public bool CapitalSpacing { get { throw null; } set { } } + public bool CaseSensitiveForms { get { throw null; } set { } } + public bool ContextualAlternates { get { throw null; } set { } } + public bool ContextualLigatures { get { throw null; } set { } } + public int ContextualSwashes { get { throw null; } set { } } + public bool DiscretionaryLigatures { get { throw null; } set { } } + public bool EastAsianExpertForms { get { throw null; } set { } } + public System.Windows.FontEastAsianLanguage EastAsianLanguage { get { throw null; } set { } } + public System.Windows.FontEastAsianWidths EastAsianWidths { get { throw null; } set { } } + public System.Windows.FontFraction Fraction { get { throw null; } set { } } + public bool HistoricalForms { get { throw null; } set { } } + public bool HistoricalLigatures { get { throw null; } set { } } + public bool Kerning { get { throw null; } set { } } + public bool MathematicalGreek { get { throw null; } set { } } + public System.Windows.FontNumeralAlignment NumeralAlignment { get { throw null; } set { } } + public System.Windows.FontNumeralStyle NumeralStyle { get { throw null; } set { } } + public bool SlashedZero { get { throw null; } set { } } + public bool StandardLigatures { get { throw null; } set { } } + public int StandardSwashes { get { throw null; } set { } } + public int StylisticAlternates { get { throw null; } set { } } + public bool StylisticSet1 { get { throw null; } set { } } + public bool StylisticSet10 { get { throw null; } set { } } + public bool StylisticSet11 { get { throw null; } set { } } + public bool StylisticSet12 { get { throw null; } set { } } + public bool StylisticSet13 { get { throw null; } set { } } + public bool StylisticSet14 { get { throw null; } set { } } + public bool StylisticSet15 { get { throw null; } set { } } + public bool StylisticSet16 { get { throw null; } set { } } + public bool StylisticSet17 { get { throw null; } set { } } + public bool StylisticSet18 { get { throw null; } set { } } + public bool StylisticSet19 { get { throw null; } set { } } + public bool StylisticSet2 { get { throw null; } set { } } + public bool StylisticSet20 { get { throw null; } set { } } + public bool StylisticSet3 { get { throw null; } set { } } + public bool StylisticSet4 { get { throw null; } set { } } + public bool StylisticSet5 { get { throw null; } set { } } + public bool StylisticSet6 { get { throw null; } set { } } + public bool StylisticSet7 { get { throw null; } set { } } + public bool StylisticSet8 { get { throw null; } set { } } + public bool StylisticSet9 { get { throw null; } set { } } + public System.Windows.FontVariants Variants { get { throw null; } set { } } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetAnnotationAlternates(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontCapitals GetCapitals(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetCapitalSpacing(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetCaseSensitiveForms(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetContextualAlternates(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetContextualLigatures(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetContextualSwashes(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetDiscretionaryLigatures(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetEastAsianExpertForms(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontEastAsianLanguage GetEastAsianLanguage(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontEastAsianWidths GetEastAsianWidths(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontFraction GetFraction(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetHistoricalForms(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetHistoricalLigatures(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetKerning(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetMathematicalGreek(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontNumeralAlignment GetNumeralAlignment(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontNumeralStyle GetNumeralStyle(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetSlashedZero(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStandardLigatures(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetStandardSwashes(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetStylisticAlternates(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet1(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet10(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet11(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet12(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet13(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet14(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet15(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet16(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet17(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet18(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet19(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet2(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet20(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet3(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet4(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet5(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet6(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet7(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet8(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetStylisticSet9(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.FontVariants GetVariants(System.Windows.DependencyObject element) { throw null; } + public static void SetAnnotationAlternates(System.Windows.DependencyObject element, int value) { } + public static void SetCapitals(System.Windows.DependencyObject element, System.Windows.FontCapitals value) { } + public static void SetCapitalSpacing(System.Windows.DependencyObject element, bool value) { } + public static void SetCaseSensitiveForms(System.Windows.DependencyObject element, bool value) { } + public static void SetContextualAlternates(System.Windows.DependencyObject element, bool value) { } + public static void SetContextualLigatures(System.Windows.DependencyObject element, bool value) { } + public static void SetContextualSwashes(System.Windows.DependencyObject element, int value) { } + public static void SetDiscretionaryLigatures(System.Windows.DependencyObject element, bool value) { } + public static void SetEastAsianExpertForms(System.Windows.DependencyObject element, bool value) { } + public static void SetEastAsianLanguage(System.Windows.DependencyObject element, System.Windows.FontEastAsianLanguage value) { } + public static void SetEastAsianWidths(System.Windows.DependencyObject element, System.Windows.FontEastAsianWidths value) { } + public static void SetFraction(System.Windows.DependencyObject element, System.Windows.FontFraction value) { } + public static void SetHistoricalForms(System.Windows.DependencyObject element, bool value) { } + public static void SetHistoricalLigatures(System.Windows.DependencyObject element, bool value) { } + public static void SetKerning(System.Windows.DependencyObject element, bool value) { } + public static void SetMathematicalGreek(System.Windows.DependencyObject element, bool value) { } + public static void SetNumeralAlignment(System.Windows.DependencyObject element, System.Windows.FontNumeralAlignment value) { } + public static void SetNumeralStyle(System.Windows.DependencyObject element, System.Windows.FontNumeralStyle value) { } + public static void SetSlashedZero(System.Windows.DependencyObject element, bool value) { } + public static void SetStandardLigatures(System.Windows.DependencyObject element, bool value) { } + public static void SetStandardSwashes(System.Windows.DependencyObject element, int value) { } + public static void SetStylisticAlternates(System.Windows.DependencyObject element, int value) { } + public static void SetStylisticSet1(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet10(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet11(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet12(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet13(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet14(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet15(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet16(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet17(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet18(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet19(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet2(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet20(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet3(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet4(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet5(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet6(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet7(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet8(System.Windows.DependencyObject element, bool value) { } + public static void SetStylisticSet9(System.Windows.DependencyObject element, bool value) { } + public static void SetVariants(System.Windows.DependencyObject element, System.Windows.FontVariants value) { } + } + public partial class Underline : System.Windows.Documents.Span + { + public Underline() { } + public Underline(System.Windows.Documents.Inline childInline) { } + public Underline(System.Windows.Documents.Inline childInline, System.Windows.Documents.TextPointer insertionPosition) { } + public Underline(System.Windows.Documents.TextPointer start, System.Windows.Documents.TextPointer end) { } + } + public sealed partial class ZoomPercentageConverter : System.Windows.Data.IValueConverter + { + public ZoomPercentageConverter() { } + public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } +} +namespace System.Windows.Documents.DocumentStructures +{ + public partial class BlockElement + { + public BlockElement() { } + } + public partial class FigureStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public FigureStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.NamedElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class ListItemStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public ListItemStructure() { } + public string Marker { get { throw null; } set { } } + public void Add(System.Windows.Documents.DocumentStructures.BlockElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class ListStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public ListStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.ListItemStructure listItem) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class NamedElement : System.Windows.Documents.DocumentStructures.BlockElement + { + public NamedElement() { } + public string NameReference { get { throw null; } set { } } + } + public partial class ParagraphStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public ParagraphStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.NamedElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class SectionStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public SectionStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.BlockElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class SemanticBasicElement : System.Windows.Documents.DocumentStructures.BlockElement + { + internal SemanticBasicElement() { } + } + public partial class StoryBreak : System.Windows.Documents.DocumentStructures.BlockElement + { + public StoryBreak() { } + } + [System.Windows.Markup.ContentPropertyAttribute("BlockElementList")] + public partial class StoryFragment : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public StoryFragment() { } + public string FragmentName { get { throw null; } set { } } + public string FragmentType { get { throw null; } set { } } + public string StoryName { get { throw null; } set { } } + public void Add(System.Windows.Documents.DocumentStructures.BlockElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + [System.Windows.Markup.ContentPropertyAttribute("StoryFragmentList")] + public partial class StoryFragments : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public StoryFragments() { } + public void Add(System.Windows.Documents.DocumentStructures.StoryFragment storyFragment) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TableCellStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public TableCellStructure() { } + public int ColumnSpan { get { throw null; } set { } } + public int RowSpan { get { throw null; } set { } } + public void Add(System.Windows.Documents.DocumentStructures.BlockElement element) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TableRowGroupStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public TableRowGroupStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.TableRowStructure tableRow) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TableRowStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public TableRowStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.TableCellStructure tableCell) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } + public partial class TableStructure : System.Windows.Documents.DocumentStructures.SemanticBasicElement, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable, System.Windows.Markup.IAddChild + { + public TableStructure() { } + public void Add(System.Windows.Documents.DocumentStructures.TableRowGroupStructure tableRowGroup) { } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object value) { } + void System.Windows.Markup.IAddChild.AddText(string text) { } + } +} +namespace System.Windows.Documents.Serialization +{ + public partial interface ISerializerFactory + { + string DefaultFileExtension { get; } + string DisplayName { get; } + string ManufacturerName { get; } + System.Uri ManufacturerWebsite { get; } + System.Windows.Documents.Serialization.SerializerWriter CreateSerializerWriter(System.IO.Stream stream); + } + public sealed partial class SerializerDescriptor + { + internal SerializerDescriptor() { } + public string AssemblyName { get { throw null; } } + public string AssemblyPath { get { throw null; } } + public System.Version AssemblyVersion { get { throw null; } } + public string DefaultFileExtension { get { throw null; } } + public string DisplayName { get { throw null; } } + public string FactoryInterfaceName { get { throw null; } } + public bool IsLoadable { get { throw null; } } + public string ManufacturerName { get { throw null; } } + public System.Uri ManufacturerWebsite { get { throw null; } } + public System.Version WinFXVersion { get { throw null; } } + public static System.Windows.Documents.Serialization.SerializerDescriptor CreateFromFactoryInstance(System.Windows.Documents.Serialization.ISerializerFactory factoryInstance) { throw null; } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } + public sealed partial class SerializerProvider + { + public SerializerProvider() { } + public System.Collections.ObjectModel.ReadOnlyCollection InstalledSerializers { get { throw null; } } + public System.Windows.Documents.Serialization.SerializerWriter CreateSerializerWriter(System.Windows.Documents.Serialization.SerializerDescriptor serializerDescriptor, System.IO.Stream stream) { throw null; } + public static void RegisterSerializer(System.Windows.Documents.Serialization.SerializerDescriptor serializerDescriptor, bool overwrite) { } + public static void UnregisterSerializer(System.Windows.Documents.Serialization.SerializerDescriptor serializerDescriptor) { } + } + public abstract partial class SerializerWriter + { + protected SerializerWriter() { } + public abstract event System.Windows.Documents.Serialization.WritingCancelledEventHandler WritingCancelled; + public abstract event System.Windows.Documents.Serialization.WritingCompletedEventHandler WritingCompleted; + public abstract event System.Windows.Documents.Serialization.WritingPrintTicketRequiredEventHandler WritingPrintTicketRequired; + public abstract event System.Windows.Documents.Serialization.WritingProgressChangedEventHandler WritingProgressChanged; + public abstract void CancelAsync(); + public abstract System.Windows.Documents.Serialization.SerializerWriterCollator CreateVisualsCollator(); + public abstract System.Windows.Documents.Serialization.SerializerWriterCollator CreateVisualsCollator(System.Printing.PrintTicket documentSequencePT, System.Printing.PrintTicket documentPT); + public abstract void Write(System.Windows.Documents.DocumentPaginator documentPaginator); + public abstract void Write(System.Windows.Documents.DocumentPaginator documentPaginator, System.Printing.PrintTicket printTicket); + public abstract void Write(System.Windows.Documents.FixedDocument fixedDocument); + public abstract void Write(System.Windows.Documents.FixedDocument fixedDocument, System.Printing.PrintTicket printTicket); + public abstract void Write(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence); + public abstract void Write(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence, System.Printing.PrintTicket printTicket); + public abstract void Write(System.Windows.Documents.FixedPage fixedPage); + public abstract void Write(System.Windows.Documents.FixedPage fixedPage, System.Printing.PrintTicket printTicket); + public abstract void Write(System.Windows.Media.Visual visual); + public abstract void Write(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Documents.DocumentPaginator documentPaginator); + public abstract void WriteAsync(System.Windows.Documents.DocumentPaginator documentPaginator, object userState); + public abstract void WriteAsync(System.Windows.Documents.DocumentPaginator documentPaginator, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Documents.DocumentPaginator documentPaginator, System.Printing.PrintTicket printTicket, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedDocument fixedDocument); + public abstract void WriteAsync(System.Windows.Documents.FixedDocument fixedDocument, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedDocument fixedDocument, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Documents.FixedDocument fixedDocument, System.Printing.PrintTicket printTicket, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence); + public abstract void WriteAsync(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Documents.FixedDocumentSequence fixedDocumentSequence, System.Printing.PrintTicket printTicket, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedPage fixedPage); + public abstract void WriteAsync(System.Windows.Documents.FixedPage fixedPage, object userState); + public abstract void WriteAsync(System.Windows.Documents.FixedPage fixedPage, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Documents.FixedPage fixedPage, System.Printing.PrintTicket printTicket, object userState); + public abstract void WriteAsync(System.Windows.Media.Visual visual); + public abstract void WriteAsync(System.Windows.Media.Visual visual, object userState); + public abstract void WriteAsync(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket, object userState); + } + public abstract partial class SerializerWriterCollator + { + protected SerializerWriterCollator() { } + public abstract void BeginBatchWrite(); + public abstract void Cancel(); + public abstract void CancelAsync(); + public abstract void EndBatchWrite(); + public abstract void Write(System.Windows.Media.Visual visual); + public abstract void Write(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Media.Visual visual); + public abstract void WriteAsync(System.Windows.Media.Visual visual, object userState); + public abstract void WriteAsync(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket); + public abstract void WriteAsync(System.Windows.Media.Visual visual, System.Printing.PrintTicket printTicket, object userState); + } + public partial class WritingCancelledEventArgs : System.EventArgs + { + public WritingCancelledEventArgs(System.Exception exception) { } + public System.Exception Error { get { throw null; } } + } + public delegate void WritingCancelledEventHandler(object sender, System.Windows.Documents.Serialization.WritingCancelledEventArgs e); + public partial class WritingCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs + { + public WritingCompletedEventArgs(bool cancelled, object state, System.Exception exception) : base (default(System.Exception), default(bool), default(object)) { } + } + public delegate void WritingCompletedEventHandler(object sender, System.Windows.Documents.Serialization.WritingCompletedEventArgs e); + public partial class WritingPrintTicketRequiredEventArgs : System.EventArgs + { + public WritingPrintTicketRequiredEventArgs(System.Windows.Xps.Serialization.PrintTicketLevel printTicketLevel, int sequence) { } + public System.Printing.PrintTicket CurrentPrintTicket { get { throw null; } set { } } + public System.Windows.Xps.Serialization.PrintTicketLevel CurrentPrintTicketLevel { get { throw null; } } + public int Sequence { get { throw null; } } + } + public delegate void WritingPrintTicketRequiredEventHandler(object sender, System.Windows.Documents.Serialization.WritingPrintTicketRequiredEventArgs e); + public partial class WritingProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs + { + public WritingProgressChangedEventArgs(System.Windows.Documents.Serialization.WritingProgressChangeLevel writingLevel, int number, int progressPercentage, object state) : base (default(int), default(object)) { } + public int Number { get { throw null; } } + public System.Windows.Documents.Serialization.WritingProgressChangeLevel WritingLevel { get { throw null; } } + } + public delegate void WritingProgressChangedEventHandler(object sender, System.Windows.Documents.Serialization.WritingProgressChangedEventArgs e); + public enum WritingProgressChangeLevel + { + None = 0, + FixedDocumentSequenceWritingProgress = 1, + FixedDocumentWritingProgress = 2, + FixedPageWritingProgress = 3, + } +} +namespace System.Windows.Input +{ + public sealed partial class CommandConverter : System.ComponentModel.TypeConverter + { + public CommandConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class KeyboardNavigation + { + internal KeyboardNavigation() { } + public static readonly System.Windows.DependencyProperty AcceptsReturnProperty; + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public static readonly System.Windows.DependencyProperty ControlTabNavigationProperty; + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public static readonly System.Windows.DependencyProperty DirectionalNavigationProperty; + public static readonly System.Windows.DependencyProperty IsTabStopProperty; + public static readonly System.Windows.DependencyProperty TabIndexProperty; + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public static readonly System.Windows.DependencyProperty TabNavigationProperty; + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetAcceptsReturn(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.KeyboardNavigationMode GetControlTabNavigation(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.KeyboardNavigationMode GetDirectionalNavigation(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static bool GetIsTabStop(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static int GetTabIndex(System.Windows.DependencyObject element) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Input.KeyboardNavigationMode GetTabNavigation(System.Windows.DependencyObject element) { throw null; } + public static void SetAcceptsReturn(System.Windows.DependencyObject element, bool enabled) { } + public static void SetControlTabNavigation(System.Windows.DependencyObject element, System.Windows.Input.KeyboardNavigationMode mode) { } + public static void SetDirectionalNavigation(System.Windows.DependencyObject element, System.Windows.Input.KeyboardNavigationMode mode) { } + public static void SetIsTabStop(System.Windows.DependencyObject element, bool isTabStop) { } + public static void SetTabIndex(System.Windows.DependencyObject element, int index) { } + public static void SetTabNavigation(System.Windows.DependencyObject element, System.Windows.Input.KeyboardNavigationMode mode) { } + } + public enum KeyboardNavigationMode + { + Continue = 0, + Once = 1, + Cycle = 2, + None = 3, + Contained = 4, + Local = 5, + } +} +namespace System.Windows.Interop +{ + public partial class ActiveXHost : System.Windows.Interop.HwndHost + { + internal ActiveXHost() { } + protected bool IsDisposed { get { throw null; } } + protected override System.Runtime.InteropServices.HandleRef BuildWindowCore(System.Runtime.InteropServices.HandleRef hwndParent) { throw null; } + protected override void DestroyWindowCore(System.Runtime.InteropServices.HandleRef hwnd) { } + protected override void Dispose(bool disposing) { } + protected override System.Windows.Size MeasureOverride(System.Windows.Size swConstraint) { throw null; } + protected override void OnAccessKey(System.Windows.Input.AccessKeyEventArgs args) { } + protected override void OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs e) { } + protected override void OnWindowPositionChanged(System.Windows.Rect bounds) { } + } + public static partial class BrowserInteropHelper + { + public static object ClientSite { get { throw null; } } + public static dynamic HostScript { get { throw null; } } + public static bool IsBrowserHosted { get { throw null; } } + public static System.Uri Source { get { throw null; } } + } + public sealed partial class DynamicScriptObject : System.Dynamic.DynamicObject + { + internal DynamicScriptObject() { } + public override string ToString() { throw null; } + public override bool TryGetIndex(System.Dynamic.GetIndexBinder binder, object[] indexes, out object result) { throw null; } + public override bool TryGetMember(System.Dynamic.GetMemberBinder binder, out object result) { throw null; } + public override bool TryInvoke(System.Dynamic.InvokeBinder binder, object[] args, out object result) { throw null; } + public override bool TryInvokeMember(System.Dynamic.InvokeMemberBinder binder, object[] args, out object result) { throw null; } + public override bool TrySetIndex(System.Dynamic.SetIndexBinder binder, object[] indexes, object value) { throw null; } + public override bool TrySetMember(System.Dynamic.SetMemberBinder binder, object value) { throw null; } + } + public abstract partial class HwndHost : System.Windows.FrameworkElement, System.IDisposable, System.Windows.Interop.IKeyboardInputSink, System.Windows.Interop.IWin32Window + { + public static readonly System.Windows.RoutedEvent DpiChangedEvent; + protected HwndHost() { } + public System.IntPtr Handle { get { throw null; } } + System.Windows.Interop.IKeyboardInputSite System.Windows.Interop.IKeyboardInputSink.KeyboardInputSite { get { throw null; } set { } } + public event System.Windows.DpiChangedEventHandler DpiChanged { add { } remove { } } + public event System.Windows.Interop.HwndSourceHook MessageHook { add { } remove { } } + protected abstract System.Runtime.InteropServices.HandleRef BuildWindowCore(System.Runtime.InteropServices.HandleRef hwndParent); + protected abstract void DestroyWindowCore(System.Runtime.InteropServices.HandleRef hwnd); + public void Dispose() { } + protected virtual void Dispose(bool disposing) { } + ~HwndHost() { } + protected virtual bool HasFocusWithinCore() { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + protected override void OnDpiChanged(System.Windows.DpiScale oldDpi, System.Windows.DpiScale newDpi) { } + protected override void OnKeyDown(System.Windows.Input.KeyEventArgs e) { } + protected override void OnKeyUp(System.Windows.Input.KeyEventArgs e) { } + protected virtual bool OnMnemonicCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected virtual void OnWindowPositionChanged(System.Windows.Rect rcBoundingBox) { } + protected virtual System.Windows.Interop.IKeyboardInputSite RegisterKeyboardInputSinkCore(System.Windows.Interop.IKeyboardInputSink sink) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.HasFocusWithin() { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.OnMnemonic(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + System.Windows.Interop.IKeyboardInputSite System.Windows.Interop.IKeyboardInputSink.RegisterKeyboardInputSink(System.Windows.Interop.IKeyboardInputSink sink) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TabInto(System.Windows.Input.TraversalRequest request) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TranslateAccelerator(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + bool System.Windows.Interop.IKeyboardInputSink.TranslateChar(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected virtual bool TabIntoCore(System.Windows.Input.TraversalRequest request) { throw null; } + protected virtual bool TranslateAcceleratorCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + protected virtual bool TranslateCharCore(ref System.Windows.Interop.MSG msg, System.Windows.Input.ModifierKeys modifiers) { throw null; } + public void UpdateWindowPos() { } + protected virtual System.IntPtr WndProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled) { throw null; } + } + public partial interface IErrorPage + { + System.Uri DeploymentPath { get; set; } + bool ErrorFlag { get; set; } + string ErrorText { get; set; } + string ErrorTitle { get; set; } + System.Windows.Threading.DispatcherOperationCallback GetWinFxCallback { get; set; } + string LogFilePath { get; set; } + System.Windows.Threading.DispatcherOperationCallback RefreshCallback { get; set; } + System.Uri SupportUri { get; set; } + } + public partial interface IProgressPage + { + string ApplicationName { get; set; } + System.Uri DeploymentPath { get; set; } + string PublisherName { get; set; } + System.Windows.Threading.DispatcherOperationCallback RefreshCallback { get; set; } + System.Windows.Threading.DispatcherOperationCallback StopCallback { get; set; } + void UpdateProgress(long bytesDownloaded, long bytesTotal); + } + public sealed partial class WindowInteropHelper + { + public WindowInteropHelper(System.Windows.Window window) { } + public System.IntPtr Handle { get { throw null; } } + public System.IntPtr Owner { get { throw null; } set { } } + public System.IntPtr EnsureHandle() { throw null; } + } +} +namespace System.Windows.Markup +{ + public partial class ComponentResourceKeyConverter : System.Windows.ExpressionConverter + { + public ComponentResourceKeyConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class DependencyPropertyConverter : System.ComponentModel.TypeConverter + { + public DependencyPropertyConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class EventSetterHandlerConverter : System.ComponentModel.TypeConverter + { + public EventSetterHandlerConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public partial interface IStyleConnector + { + void Connect(int connectionId, object target); + } + public partial class NamespaceMapEntry + { + public NamespaceMapEntry() { } + public NamespaceMapEntry(string xmlNamespace, string assemblyName, string clrNamespace) { } + public string AssemblyName { get { throw null; } set { } } + public string ClrNamespace { get { throw null; } set { } } + public string XmlNamespace { get { throw null; } set { } } + } + public partial class ParserContext : System.Windows.Markup.IUriContext + { + public ParserContext() { } + public ParserContext(System.Xml.XmlParserContext xmlParserContext) { } + public System.Uri BaseUri { get { throw null; } set { } } + public System.Windows.Markup.XamlTypeMapper XamlTypeMapper { get { throw null; } set { } } + public string XmlLang { get { throw null; } set { } } + public System.Windows.Markup.XmlnsDictionary XmlnsDictionary { get { throw null; } } + public string XmlSpace { get { throw null; } set { } } + public static implicit operator System.Xml.XmlParserContext (System.Windows.Markup.ParserContext parserContext) { throw null; } + public static System.Xml.XmlParserContext ToXmlParserContext(System.Windows.Markup.ParserContext parserContext) { throw null; } + } + public partial class ResourceReferenceExpressionConverter : System.Windows.ExpressionConverter + { + public ResourceReferenceExpressionConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class RoutedEventConverter : System.ComponentModel.TypeConverter + { + public RoutedEventConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext typeDescriptorContext, System.Globalization.CultureInfo cultureInfo, object value, System.Type destinationType) { throw null; } + } + public sealed partial class SetterTriggerConditionValueConverter : System.ComponentModel.TypeConverter + { + public SetterTriggerConditionValueConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public sealed partial class TemplateKeyConverter : System.ComponentModel.TypeConverter + { + public TemplateKeyConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object source) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class XamlDesignerSerializationManager : System.Windows.Markup.ServiceProviders + { + public XamlDesignerSerializationManager(System.Xml.XmlWriter xmlWriter) { } + public System.Windows.Markup.XamlWriterMode XamlWriterMode { get { throw null; } set { } } + } + public abstract partial class XamlInstanceCreator + { + protected XamlInstanceCreator() { } + public abstract object CreateObject(); + } + public partial class XamlParseException : System.SystemException + { + public XamlParseException() { } + protected XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlParseException(string message) { } + public XamlParseException(string message, System.Exception innerException) { } + public XamlParseException(string message, int lineNumber, int linePosition) { } + public XamlParseException(string message, int lineNumber, int linePosition, System.Exception innerException) { } + public System.Uri BaseUri { get { throw null; } } + public object KeyContext { get { throw null; } } + public int LineNumber { get { throw null; } } + public int LinePosition { get { throw null; } } + public string NameContext { get { throw null; } } + public string UidContext { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class XamlReader + { + public XamlReader() { } + public event System.ComponentModel.AsyncCompletedEventHandler LoadCompleted { add { } remove { } } + public void CancelAsync() { } + public static System.Xaml.XamlSchemaContext GetWpfSchemaContext() { throw null; } + public static object Load(System.IO.Stream stream) { throw null; } + public static object Load(System.IO.Stream stream, System.Windows.Markup.ParserContext parserContext) { throw null; } + public static object Load(System.Xaml.XamlReader reader) { throw null; } + public static object Load(System.Xml.XmlReader reader) { throw null; } + public object LoadAsync(System.IO.Stream stream) { throw null; } + public object LoadAsync(System.IO.Stream stream, System.Windows.Markup.ParserContext parserContext) { throw null; } + public object LoadAsync(System.Xml.XmlReader reader) { throw null; } + public static object Parse(string xamlText) { throw null; } + public static object Parse(string xamlText, System.Windows.Markup.ParserContext parserContext) { throw null; } + } + public partial class XamlTypeMapper + { + public XamlTypeMapper(string[] assemblyNames) { } + public XamlTypeMapper(string[] assemblyNames, System.Windows.Markup.NamespaceMapEntry[] namespaceMaps) { } + public static System.Windows.Markup.XamlTypeMapper DefaultMapper { get { throw null; } } + public void AddMappingProcessingInstruction(string xmlNamespace, string clrNamespace, string assemblyName) { } + protected virtual bool AllowInternalType(System.Type type) { throw null; } + public System.Type GetType(string xmlNamespace, string localName) { throw null; } + public void SetAssemblyPath(string assemblyName, string assemblyPath) { } + } + public static partial class XamlWriter + { + public static string Save(object obj) { throw null; } + public static void Save(object obj, System.IO.Stream stream) { } + public static void Save(object obj, System.IO.TextWriter writer) { } + public static void Save(object obj, System.Windows.Markup.XamlDesignerSerializationManager manager) { } + public static void Save(object obj, System.Xml.XmlWriter xmlWriter) { } + } + public enum XamlWriterMode + { + Expression = 0, + Value = 1, + } + public enum XamlWriterState + { + Starting = 0, + Finished = 1, + } + public sealed partial class XmlAttributeProperties + { + internal XmlAttributeProperties() { } + [System.ComponentModel.BrowsableAttribute(false)] + public static readonly System.Windows.DependencyProperty XmlNamespaceMapsProperty; + [System.ComponentModel.BrowsableAttribute(false)] + public static readonly System.Windows.DependencyProperty XmlnsDefinitionProperty; + [System.ComponentModel.BrowsableAttribute(false)] + public static readonly System.Windows.DependencyProperty XmlnsDictionaryProperty; + [System.ComponentModel.BrowsableAttribute(false)] + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.NeverLocalize)] + public static readonly System.Windows.DependencyProperty XmlSpaceProperty; + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static string GetXmlNamespaceMaps(System.Windows.DependencyObject dependencyObject) { throw null; } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public static string GetXmlnsDefinition(System.Windows.DependencyObject dependencyObject) { throw null; } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + public static System.Windows.Markup.XmlnsDictionary GetXmlnsDictionary(System.Windows.DependencyObject dependencyObject) { throw null; } + [System.Windows.AttachedPropertyBrowsableForTypeAttribute(typeof(System.Windows.DependencyObject))] + [System.Windows.Markup.DesignerSerializationOptionsAttribute(System.Windows.Markup.DesignerSerializationOptions.SerializeAsAttribute)] + public static string GetXmlSpace(System.Windows.DependencyObject dependencyObject) { throw null; } + public static void SetXmlNamespaceMaps(System.Windows.DependencyObject dependencyObject, string value) { } + public static void SetXmlnsDefinition(System.Windows.DependencyObject dependencyObject, string value) { } + public static void SetXmlnsDictionary(System.Windows.DependencyObject dependencyObject, System.Windows.Markup.XmlnsDictionary value) { } + public static void SetXmlSpace(System.Windows.DependencyObject dependencyObject, string value) { } + } + public partial class XmlnsDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable, System.Xaml.IXamlNamespaceResolver + { + public XmlnsDictionary() { } + public XmlnsDictionary(System.Windows.Markup.XmlnsDictionary xmlnsDictionary) { } + public int Count { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public object this[object prefix] { get { throw null; } set { } } + public string this[string prefix] { get { throw null; } set { } } + public System.Collections.ICollection Keys { get { throw null; } } + public bool Sealed { get { throw null; } } + public object SyncRoot { get { throw null; } } + public System.Collections.ICollection Values { get { throw null; } } + public void Add(object prefix, object xmlNamespace) { } + public void Add(string prefix, string xmlNamespace) { } + public void Clear() { } + public bool Contains(object key) { throw null; } + public void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Collections.DictionaryEntry[] array, int index) { } + public string DefaultNamespace() { throw null; } + protected System.Collections.IDictionaryEnumerator GetDictionaryEnumerator() { throw null; } + protected System.Collections.IEnumerator GetEnumerator() { throw null; } + public string GetNamespace(string prefix) { throw null; } + public System.Collections.Generic.IEnumerable GetNamespacePrefixes() { throw null; } + public string LookupNamespace(string prefix) { throw null; } + public string LookupPrefix(string xmlNamespace) { throw null; } + public void PopScope() { } + public void PushScope() { } + public void Remove(object prefix) { } + public void Remove(string prefix) { } + public void Seal() { } + System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } +} +namespace System.Windows.Markup.Localizer +{ + public abstract partial class BamlLocalizabilityResolver + { + protected BamlLocalizabilityResolver() { } + public abstract System.Windows.Markup.Localizer.ElementLocalizability GetElementLocalizability(string assembly, string className); + public abstract System.Windows.LocalizabilityAttribute GetPropertyLocalizability(string assembly, string className, string property); + public abstract string ResolveAssemblyFromClass(string className); + public abstract string ResolveFormattingTagToClass(string formattingTag); + } + public partial class BamlLocalizableResource + { + public BamlLocalizableResource() { } + public BamlLocalizableResource(string content, string comments, System.Windows.LocalizationCategory category, bool modifiable, bool readable) { } + public System.Windows.LocalizationCategory Category { get { throw null; } set { } } + public string Comments { get { throw null; } set { } } + public string Content { get { throw null; } set { } } + public bool Modifiable { get { throw null; } set { } } + public bool Readable { get { throw null; } set { } } + public override bool Equals(object other) { throw null; } + public override int GetHashCode() { throw null; } + } + public partial class BamlLocalizableResourceKey + { + public BamlLocalizableResourceKey(string uid, string className, string propertyName) { } + public string AssemblyName { get { throw null; } } + public string ClassName { get { throw null; } } + public string PropertyName { get { throw null; } } + public string Uid { get { throw null; } } + public override bool Equals(object other) { throw null; } + public bool Equals(System.Windows.Markup.Localizer.BamlLocalizableResourceKey other) { throw null; } + public override int GetHashCode() { throw null; } + } + public sealed partial class BamlLocalizationDictionary : System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable + { + public BamlLocalizationDictionary() { } + public int Count { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public System.Windows.Markup.Localizer.BamlLocalizableResource this[System.Windows.Markup.Localizer.BamlLocalizableResourceKey key] { get { throw null; } set { } } + public System.Collections.ICollection Keys { get { throw null; } } + public System.Windows.Markup.Localizer.BamlLocalizableResourceKey RootElementKey { get { throw null; } } + int System.Collections.ICollection.Count { get { throw null; } } + bool System.Collections.ICollection.IsSynchronized { get { throw null; } } + object System.Collections.ICollection.SyncRoot { get { throw null; } } + object System.Collections.IDictionary.this[object key] { get { throw null; } set { } } + public System.Collections.ICollection Values { get { throw null; } } + public void Add(System.Windows.Markup.Localizer.BamlLocalizableResourceKey key, System.Windows.Markup.Localizer.BamlLocalizableResource value) { } + public void Clear() { } + public bool Contains(System.Windows.Markup.Localizer.BamlLocalizableResourceKey key) { throw null; } + public void CopyTo(System.Collections.DictionaryEntry[] array, int arrayIndex) { } + public System.Windows.Markup.Localizer.BamlLocalizationDictionaryEnumerator GetEnumerator() { throw null; } + public void Remove(System.Windows.Markup.Localizer.BamlLocalizableResourceKey key) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + void System.Collections.IDictionary.Add(object key, object value) { } + bool System.Collections.IDictionary.Contains(object key) { throw null; } + System.Collections.IDictionaryEnumerator System.Collections.IDictionary.GetEnumerator() { throw null; } + void System.Collections.IDictionary.Remove(object key) { } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public sealed partial class BamlLocalizationDictionaryEnumerator : System.Collections.IDictionaryEnumerator, System.Collections.IEnumerator + { + internal BamlLocalizationDictionaryEnumerator() { } + public System.Collections.DictionaryEntry Current { get { throw null; } } + public System.Collections.DictionaryEntry Entry { get { throw null; } } + public System.Windows.Markup.Localizer.BamlLocalizableResourceKey Key { get { throw null; } } + object System.Collections.IDictionaryEnumerator.Key { get { throw null; } } + object System.Collections.IDictionaryEnumerator.Value { get { throw null; } } + object System.Collections.IEnumerator.Current { get { throw null; } } + public System.Windows.Markup.Localizer.BamlLocalizableResource Value { get { throw null; } } + public bool MoveNext() { throw null; } + public void Reset() { } + } + public partial class BamlLocalizer + { + public BamlLocalizer(System.IO.Stream source) { } + public BamlLocalizer(System.IO.Stream source, System.Windows.Markup.Localizer.BamlLocalizabilityResolver resolver) { } + public BamlLocalizer(System.IO.Stream source, System.Windows.Markup.Localizer.BamlLocalizabilityResolver resolver, System.IO.TextReader comments) { } + public event System.Windows.Markup.Localizer.BamlLocalizerErrorNotifyEventHandler ErrorNotify { add { } remove { } } + public System.Windows.Markup.Localizer.BamlLocalizationDictionary ExtractResources() { throw null; } + protected virtual void OnErrorNotify(System.Windows.Markup.Localizer.BamlLocalizerErrorNotifyEventArgs e) { } + public void UpdateBaml(System.IO.Stream target, System.Windows.Markup.Localizer.BamlLocalizationDictionary updates) { } + } + public enum BamlLocalizerError + { + DuplicateUid = 0, + DuplicateElement = 1, + IncompleteElementPlaceholder = 2, + InvalidCommentingXml = 3, + InvalidLocalizationAttributes = 4, + InvalidLocalizationComments = 5, + InvalidUid = 6, + MismatchedElements = 7, + SubstitutionAsPlaintext = 8, + UidMissingOnChildElement = 9, + UnknownFormattingTag = 10, + } + public partial class BamlLocalizerErrorNotifyEventArgs : System.EventArgs + { + internal BamlLocalizerErrorNotifyEventArgs() { } + public System.Windows.Markup.Localizer.BamlLocalizerError Error { get { throw null; } } + public System.Windows.Markup.Localizer.BamlLocalizableResourceKey Key { get { throw null; } } + } + public delegate void BamlLocalizerErrorNotifyEventHandler(object sender, System.Windows.Markup.Localizer.BamlLocalizerErrorNotifyEventArgs e); + public partial class ElementLocalizability + { + public ElementLocalizability() { } + public ElementLocalizability(string formattingTag, System.Windows.LocalizabilityAttribute attribute) { } + public System.Windows.LocalizabilityAttribute Attribute { get { throw null; } set { } } + public string FormattingTag { get { throw null; } set { } } + } +} +namespace System.Windows.Markup.Primitives +{ + public sealed partial class MarkupWriter : System.IDisposable + { + internal MarkupWriter() { } + public void Dispose() { } + public static System.Windows.Markup.Primitives.MarkupObject GetMarkupObjectFor(object instance) { throw null; } + public static System.Windows.Markup.Primitives.MarkupObject GetMarkupObjectFor(object instance, System.Windows.Markup.XamlDesignerSerializationManager manager) { throw null; } + } +} +namespace System.Windows.Media +{ + public partial class AdornerHitTestResult : System.Windows.Media.PointHitTestResult + { + internal AdornerHitTestResult() : base (default(System.Windows.Media.Visual), default(System.Windows.Point)) { } + public System.Windows.Documents.Adorner Adorner { get { throw null; } } + } + public static partial class TextOptions + { + public static readonly System.Windows.DependencyProperty TextFormattingModeProperty; + public static readonly System.Windows.DependencyProperty TextHintingModeProperty; + public static readonly System.Windows.DependencyProperty TextRenderingModeProperty; + public static System.Windows.Media.TextFormattingMode GetTextFormattingMode(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Media.TextHintingMode GetTextHintingMode(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.Media.TextRenderingMode GetTextRenderingMode(System.Windows.DependencyObject element) { throw null; } + public static void SetTextFormattingMode(System.Windows.DependencyObject element, System.Windows.Media.TextFormattingMode value) { } + public static void SetTextHintingMode(System.Windows.DependencyObject element, System.Windows.Media.TextHintingMode value) { } + public static void SetTextRenderingMode(System.Windows.DependencyObject element, System.Windows.Media.TextRenderingMode value) { } + } +} +namespace System.Windows.Media.Animation +{ + [System.Windows.Markup.ContentPropertyAttribute("Storyboard")] + [System.Windows.Markup.RuntimeNamePropertyAttribute("Name")] + public sealed partial class BeginStoryboard : System.Windows.TriggerAction + { + public static readonly System.Windows.DependencyProperty StoryboardProperty; + public BeginStoryboard() { } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Media.Animation.HandoffBehavior.SnapshotAndReplace)] + public System.Windows.Media.Animation.HandoffBehavior HandoffBehavior { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string Name { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Windows.Media.Animation.Storyboard Storyboard { get { throw null; } set { } } + } + public abstract partial class ControllableStoryboardAction : System.Windows.TriggerAction + { + internal ControllableStoryboardAction() { } + [System.ComponentModel.DefaultValueAttribute(null)] + public string BeginStoryboardName { get { throw null; } set { } } + } + public partial class DiscreteThicknessKeyFrame : System.Windows.Media.Animation.ThicknessKeyFrame + { + public DiscreteThicknessKeyFrame() { } + public DiscreteThicknessKeyFrame(System.Windows.Thickness value) { } + public DiscreteThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Thickness InterpolateValueCore(System.Windows.Thickness baseValue, double keyFrameProgress) { throw null; } + } + public partial class EasingThicknessKeyFrame : System.Windows.Media.Animation.ThicknessKeyFrame + { + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public EasingThicknessKeyFrame() { } + public EasingThicknessKeyFrame(System.Windows.Thickness value) { } + public EasingThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime) { } + public EasingThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.IEasingFunction easingFunction) { } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Thickness InterpolateValueCore(System.Windows.Thickness baseValue, double keyFrameProgress) { throw null; } + } + public partial class LinearThicknessKeyFrame : System.Windows.Media.Animation.ThicknessKeyFrame + { + public LinearThicknessKeyFrame() { } + public LinearThicknessKeyFrame(System.Windows.Thickness value) { } + public LinearThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Thickness InterpolateValueCore(System.Windows.Thickness baseValue, double keyFrameProgress) { throw null; } + } + public sealed partial class PauseStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction + { + public PauseStoryboard() { } + } + public sealed partial class RemoveStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction + { + public RemoveStoryboard() { } + } + public sealed partial class ResumeStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction + { + public ResumeStoryboard() { } + } + public sealed partial class SeekStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction + { + public SeekStoryboard() { } + public System.TimeSpan Offset { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(System.Windows.Media.Animation.TimeSeekOrigin.BeginTime)] + public System.Windows.Media.Animation.TimeSeekOrigin Origin { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeOffset() { throw null; } + } + public sealed partial class SetStoryboardSpeedRatio : System.Windows.Media.Animation.ControllableStoryboardAction + { + public SetStoryboardSpeedRatio() { } + [System.ComponentModel.DefaultValueAttribute(1)] + public double SpeedRatio { get { throw null; } set { } } + } + public sealed partial class SkipStoryboardToFill : System.Windows.Media.Animation.ControllableStoryboardAction + { + public SkipStoryboardToFill() { } + } + public partial class SplineThicknessKeyFrame : System.Windows.Media.Animation.ThicknessKeyFrame + { + public static readonly System.Windows.DependencyProperty KeySplineProperty; + public SplineThicknessKeyFrame() { } + public SplineThicknessKeyFrame(System.Windows.Thickness value) { } + public SplineThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime) { } + public SplineThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime, System.Windows.Media.Animation.KeySpline keySpline) { } + public System.Windows.Media.Animation.KeySpline KeySpline { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Thickness InterpolateValueCore(System.Windows.Thickness baseValue, double keyFrameProgress) { throw null; } + } + public sealed partial class StopStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction + { + public StopStoryboard() { } + } + public partial class Storyboard : System.Windows.Media.Animation.ParallelTimeline + { + public static readonly System.Windows.DependencyProperty TargetNameProperty; + public static readonly System.Windows.DependencyProperty TargetProperty; + public static readonly System.Windows.DependencyProperty TargetPropertyProperty; + public Storyboard() { } + public void Begin() { } + public void Begin(System.Windows.FrameworkContentElement containingObject) { } + public void Begin(System.Windows.FrameworkContentElement containingObject, bool isControllable) { } + public void Begin(System.Windows.FrameworkContentElement containingObject, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void Begin(System.Windows.FrameworkContentElement containingObject, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable) { } + public void Begin(System.Windows.FrameworkElement containingObject) { } + public void Begin(System.Windows.FrameworkElement containingObject, bool isControllable) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.FrameworkTemplate frameworkTemplate) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.FrameworkTemplate frameworkTemplate, bool isControllable) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.FrameworkTemplate frameworkTemplate, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.FrameworkTemplate frameworkTemplate, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.Media.Animation.HandoffBehavior handoffBehavior) { } + public void Begin(System.Windows.FrameworkElement containingObject, System.Windows.Media.Animation.HandoffBehavior handoffBehavior, bool isControllable) { } + public new System.Windows.Media.Animation.Storyboard Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public double GetCurrentGlobalSpeed() { throw null; } + public double? GetCurrentGlobalSpeed(System.Windows.FrameworkContentElement containingObject) { throw null; } + public double? GetCurrentGlobalSpeed(System.Windows.FrameworkElement containingObject) { throw null; } + public int GetCurrentIteration() { throw null; } + public int? GetCurrentIteration(System.Windows.FrameworkContentElement containingObject) { throw null; } + public int? GetCurrentIteration(System.Windows.FrameworkElement containingObject) { throw null; } + public double GetCurrentProgress() { throw null; } + public double? GetCurrentProgress(System.Windows.FrameworkContentElement containingObject) { throw null; } + public double? GetCurrentProgress(System.Windows.FrameworkElement containingObject) { throw null; } + public System.Windows.Media.Animation.ClockState GetCurrentState() { throw null; } + public System.Windows.Media.Animation.ClockState GetCurrentState(System.Windows.FrameworkContentElement containingObject) { throw null; } + public System.Windows.Media.Animation.ClockState GetCurrentState(System.Windows.FrameworkElement containingObject) { throw null; } + public System.TimeSpan GetCurrentTime() { throw null; } + public System.TimeSpan? GetCurrentTime(System.Windows.FrameworkContentElement containingObject) { throw null; } + public System.TimeSpan? GetCurrentTime(System.Windows.FrameworkElement containingObject) { throw null; } + public bool GetIsPaused() { throw null; } + public bool GetIsPaused(System.Windows.FrameworkContentElement containingObject) { throw null; } + public bool GetIsPaused(System.Windows.FrameworkElement containingObject) { throw null; } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public static System.Windows.DependencyObject GetTarget(System.Windows.DependencyObject element) { throw null; } + public static string GetTargetName(System.Windows.DependencyObject element) { throw null; } + public static System.Windows.PropertyPath GetTargetProperty(System.Windows.DependencyObject element) { throw null; } + public void Pause() { } + public void Pause(System.Windows.FrameworkContentElement containingObject) { } + public void Pause(System.Windows.FrameworkElement containingObject) { } + public void Remove() { } + public void Remove(System.Windows.FrameworkContentElement containingObject) { } + public void Remove(System.Windows.FrameworkElement containingObject) { } + public void Resume() { } + public void Resume(System.Windows.FrameworkContentElement containingObject) { } + public void Resume(System.Windows.FrameworkElement containingObject) { } + public void Seek(System.TimeSpan offset) { } + public void Seek(System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void Seek(System.Windows.FrameworkContentElement containingObject, System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void Seek(System.Windows.FrameworkElement containingObject, System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SeekAlignedToLastTick(System.TimeSpan offset) { } + public void SeekAlignedToLastTick(System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SeekAlignedToLastTick(System.Windows.FrameworkContentElement containingObject, System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SeekAlignedToLastTick(System.Windows.FrameworkElement containingObject, System.TimeSpan offset, System.Windows.Media.Animation.TimeSeekOrigin origin) { } + public void SetSpeedRatio(double speedRatio) { } + public void SetSpeedRatio(System.Windows.FrameworkContentElement containingObject, double speedRatio) { } + public void SetSpeedRatio(System.Windows.FrameworkElement containingObject, double speedRatio) { } + public static void SetTarget(System.Windows.DependencyObject element, System.Windows.DependencyObject value) { } + public static void SetTargetName(System.Windows.DependencyObject element, string name) { } + public static void SetTargetProperty(System.Windows.DependencyObject element, System.Windows.PropertyPath path) { } + public void SkipToFill() { } + public void SkipToFill(System.Windows.FrameworkContentElement containingObject) { } + public void SkipToFill(System.Windows.FrameworkElement containingObject) { } + public void Stop() { } + public void Stop(System.Windows.FrameworkContentElement containingObject) { } + public void Stop(System.Windows.FrameworkElement containingObject) { } + } + public partial class ThicknessAnimation : System.Windows.Media.Animation.ThicknessAnimationBase + { + public static readonly System.Windows.DependencyProperty ByProperty; + public static readonly System.Windows.DependencyProperty EasingFunctionProperty; + public static readonly System.Windows.DependencyProperty FromProperty; + public static readonly System.Windows.DependencyProperty ToProperty; + public ThicknessAnimation() { } + public ThicknessAnimation(System.Windows.Thickness toValue, System.Windows.Duration duration) { } + public ThicknessAnimation(System.Windows.Thickness toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public ThicknessAnimation(System.Windows.Thickness fromValue, System.Windows.Thickness toValue, System.Windows.Duration duration) { } + public ThicknessAnimation(System.Windows.Thickness fromValue, System.Windows.Thickness toValue, System.Windows.Duration duration, System.Windows.Media.Animation.FillBehavior fillBehavior) { } + public System.Windows.Thickness? By { get { throw null; } set { } } + public System.Windows.Media.Animation.IEasingFunction EasingFunction { get { throw null; } set { } } + public System.Windows.Thickness? From { get { throw null; } set { } } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Thickness? To { get { throw null; } set { } } + public new System.Windows.Media.Animation.ThicknessAnimation Clone() { throw null; } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override System.Windows.Thickness GetCurrentValueCore(System.Windows.Thickness defaultOriginValue, System.Windows.Thickness defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + } + public abstract partial class ThicknessAnimationBase : System.Windows.Media.Animation.AnimationTimeline + { + protected ThicknessAnimationBase() { } + public sealed override System.Type TargetPropertyType { get { throw null; } } + public new System.Windows.Media.Animation.ThicknessAnimationBase Clone() { throw null; } + public sealed override object GetCurrentValue(object defaultOriginValue, object defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + public System.Windows.Thickness GetCurrentValue(System.Windows.Thickness defaultOriginValue, System.Windows.Thickness defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected abstract System.Windows.Thickness GetCurrentValueCore(System.Windows.Thickness defaultOriginValue, System.Windows.Thickness defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock); + } + [System.Windows.Markup.ContentPropertyAttribute("KeyFrames")] + public partial class ThicknessAnimationUsingKeyFrames : System.Windows.Media.Animation.ThicknessAnimationBase, System.Windows.Markup.IAddChild, System.Windows.Media.Animation.IKeyFrameAnimation + { + public ThicknessAnimationUsingKeyFrames() { } + public bool IsAdditive { get { throw null; } set { } } + public bool IsCumulative { get { throw null; } set { } } + public System.Windows.Media.Animation.ThicknessKeyFrameCollection KeyFrames { get { throw null; } set { } } + System.Collections.IList System.Windows.Media.Animation.IKeyFrameAnimation.KeyFrames { get { throw null; } set { } } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddChild(object child) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + protected virtual void AddText(string childText) { } + public new System.Windows.Media.Animation.ThicknessAnimationUsingKeyFrames Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + public new System.Windows.Media.Animation.ThicknessAnimationUsingKeyFrames CloneCurrentValue() { throw null; } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable source) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable source) { } + protected sealed override System.Windows.Thickness GetCurrentValueCore(System.Windows.Thickness defaultOriginValue, System.Windows.Thickness defaultDestinationValue, System.Windows.Media.Animation.AnimationClock animationClock) { throw null; } + protected sealed override System.Windows.Duration GetNaturalDurationCore(System.Windows.Media.Animation.Clock clock) { throw null; } + protected override void OnChanged() { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public bool ShouldSerializeKeyFrames() { throw null; } + void System.Windows.Markup.IAddChild.AddChild(object child) { } + void System.Windows.Markup.IAddChild.AddText(string childText) { } + } + public abstract partial class ThicknessKeyFrame : System.Windows.Freezable, System.Windows.Media.Animation.IKeyFrame + { + public static readonly System.Windows.DependencyProperty KeyTimeProperty; + public static readonly System.Windows.DependencyProperty ValueProperty; + protected ThicknessKeyFrame() { } + protected ThicknessKeyFrame(System.Windows.Thickness value) { } + protected ThicknessKeyFrame(System.Windows.Thickness value, System.Windows.Media.Animation.KeyTime keyTime) { } + public System.Windows.Media.Animation.KeyTime KeyTime { get { throw null; } set { } } + object System.Windows.Media.Animation.IKeyFrame.Value { get { throw null; } set { } } + public System.Windows.Thickness Value { get { throw null; } set { } } + public System.Windows.Thickness InterpolateValue(System.Windows.Thickness baseValue, double keyFrameProgress) { throw null; } + protected abstract System.Windows.Thickness InterpolateValueCore(System.Windows.Thickness baseValue, double keyFrameProgress); + } + public partial class ThicknessKeyFrameCollection : System.Windows.Freezable, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList + { + public ThicknessKeyFrameCollection() { } + public int Count { get { throw null; } } + public static System.Windows.Media.Animation.ThicknessKeyFrameCollection Empty { get { throw null; } } + public bool IsFixedSize { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsSynchronized { get { throw null; } } + public System.Windows.Media.Animation.ThicknessKeyFrame this[int index] { get { throw null; } set { } } + public object SyncRoot { get { throw null; } } + object System.Collections.IList.this[int index] { get { throw null; } set { } } + public int Add(System.Windows.Media.Animation.ThicknessKeyFrame keyFrame) { throw null; } + public void Clear() { } + public new System.Windows.Media.Animation.ThicknessKeyFrameCollection Clone() { throw null; } + protected override void CloneCore(System.Windows.Freezable sourceFreezable) { } + protected override void CloneCurrentValueCore(System.Windows.Freezable sourceFreezable) { } + public bool Contains(System.Windows.Media.Animation.ThicknessKeyFrame keyFrame) { throw null; } + public void CopyTo(System.Windows.Media.Animation.ThicknessKeyFrame[] array, int index) { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + protected override bool FreezeCore(bool isChecking) { throw null; } + protected override void GetAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + protected override void GetCurrentValueAsFrozenCore(System.Windows.Freezable sourceFreezable) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + public int IndexOf(System.Windows.Media.Animation.ThicknessKeyFrame keyFrame) { throw null; } + public void Insert(int index, System.Windows.Media.Animation.ThicknessKeyFrame keyFrame) { } + public void Remove(System.Windows.Media.Animation.ThicknessKeyFrame keyFrame) { } + public void RemoveAt(int index) { } + void System.Collections.ICollection.CopyTo(System.Array array, int index) { } + int System.Collections.IList.Add(object keyFrame) { throw null; } + bool System.Collections.IList.Contains(object keyFrame) { throw null; } + int System.Collections.IList.IndexOf(object keyFrame) { throw null; } + void System.Collections.IList.Insert(int index, object keyFrame) { } + void System.Collections.IList.Remove(object keyFrame) { } + } +} +namespace System.Windows.Navigation +{ + public abstract partial class CustomContentState + { + protected CustomContentState() { } + public virtual string JournalEntryName { get { throw null; } } + public abstract void Replay(System.Windows.Navigation.NavigationService navigationService, System.Windows.Navigation.NavigationMode mode); + } + public partial class FragmentNavigationEventArgs : System.EventArgs + { + internal FragmentNavigationEventArgs() { } + public string Fragment { get { throw null; } } + public bool Handled { get { throw null; } set { } } + public object Navigator { get { throw null; } } + } + public delegate void FragmentNavigationEventHandler(object sender, System.Windows.Navigation.FragmentNavigationEventArgs e); + public partial interface IProvideCustomContentState + { + System.Windows.Navigation.CustomContentState GetContentState(); + } + public partial class JournalEntry : System.Windows.DependencyObject, System.Runtime.Serialization.ISerializable + { + public static readonly System.Windows.DependencyProperty KeepAliveProperty; + public static readonly System.Windows.DependencyProperty NameProperty; + protected JournalEntry(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public System.Windows.Navigation.CustomContentState CustomContentState { get { throw null; } } + public string Name { get { throw null; } set { } } + public System.Uri Source { get { throw null; } set { } } + public static bool GetKeepAlive(System.Windows.DependencyObject dependencyObject) { throw null; } + public static string GetName(System.Windows.DependencyObject dependencyObject) { throw null; } + public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public static void SetKeepAlive(System.Windows.DependencyObject dependencyObject, bool keepAlive) { } + public static void SetName(System.Windows.DependencyObject dependencyObject, string name) { } + } + public sealed partial class JournalEntryListConverter : System.Windows.Data.IValueConverter + { + public JournalEntryListConverter() { } + public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object ConvertBack(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + } + public enum JournalEntryPosition + { + Back = 0, + Current = 1, + Forward = 2, + } + public sealed partial class JournalEntryUnifiedViewConverter : System.Windows.Data.IMultiValueConverter + { + public static readonly System.Windows.DependencyProperty JournalEntryPositionProperty; + public JournalEntryUnifiedViewConverter() { } + public object Convert(object[] values, System.Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public object[] ConvertBack(object value, System.Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture) { throw null; } + public static System.Windows.Navigation.JournalEntryPosition GetJournalEntryPosition(System.Windows.DependencyObject element) { throw null; } + public static void SetJournalEntryPosition(System.Windows.DependencyObject element, System.Windows.Navigation.JournalEntryPosition position) { } + } + public enum JournalOwnership + { + Automatic = 0, + OwnsJournal = 1, + UsesParentJournal = 2, + } + public delegate void LoadCompletedEventHandler(object sender, System.Windows.Navigation.NavigationEventArgs e); + public delegate void NavigatedEventHandler(object sender, System.Windows.Navigation.NavigationEventArgs e); + public partial class NavigatingCancelEventArgs : System.ComponentModel.CancelEventArgs + { + internal NavigatingCancelEventArgs() { } + public object Content { get { throw null; } } + public System.Windows.Navigation.CustomContentState ContentStateToSave { get { throw null; } set { } } + public object ExtraData { get { throw null; } } + public bool IsNavigationInitiator { get { throw null; } } + public System.Windows.Navigation.NavigationMode NavigationMode { get { throw null; } } + public object Navigator { get { throw null; } } + public System.Windows.Navigation.CustomContentState TargetContentState { get { throw null; } } + public System.Uri Uri { get { throw null; } } + public System.Net.WebRequest WebRequest { get { throw null; } } + } + public delegate void NavigatingCancelEventHandler(object sender, System.Windows.Navigation.NavigatingCancelEventArgs e); + public partial class NavigationEventArgs : System.EventArgs + { + internal NavigationEventArgs() { } + public object Content { get { throw null; } } + public object ExtraData { get { throw null; } } + public bool IsNavigationInitiator { get { throw null; } } + public object Navigator { get { throw null; } } + public System.Uri Uri { get { throw null; } } + public System.Net.WebResponse WebResponse { get { throw null; } } + } + public partial class NavigationFailedEventArgs : System.EventArgs + { + internal NavigationFailedEventArgs() { } + public System.Exception Exception { get { throw null; } } + public object ExtraData { get { throw null; } } + public bool Handled { get { throw null; } set { } } + public object Navigator { get { throw null; } } + public System.Uri Uri { get { throw null; } } + public System.Net.WebRequest WebRequest { get { throw null; } } + public System.Net.WebResponse WebResponse { get { throw null; } } + } + public delegate void NavigationFailedEventHandler(object sender, System.Windows.Navigation.NavigationFailedEventArgs e); + public enum NavigationMode : byte + { + New = (byte)0, + Back = (byte)1, + Forward = (byte)2, + Refresh = (byte)3, + } + public partial class NavigationProgressEventArgs : System.EventArgs + { + internal NavigationProgressEventArgs() { } + public long BytesRead { get { throw null; } } + public long MaxBytes { get { throw null; } } + public object Navigator { get { throw null; } } + public System.Uri Uri { get { throw null; } } + } + public delegate void NavigationProgressEventHandler(object sender, System.Windows.Navigation.NavigationProgressEventArgs e); + public sealed partial class NavigationService + { + internal NavigationService() { } + public bool CanGoBack { get { throw null; } } + public bool CanGoForward { get { throw null; } } + public object Content { get { throw null; } set { } } + public System.Uri CurrentSource { get { throw null; } } + public System.Uri Source { get { throw null; } set { } } + public event System.Windows.Navigation.FragmentNavigationEventHandler FragmentNavigation { add { } remove { } } + public event System.Windows.Navigation.LoadCompletedEventHandler LoadCompleted { add { } remove { } } + public event System.Windows.Navigation.NavigatedEventHandler Navigated { add { } remove { } } + public event System.Windows.Navigation.NavigatingCancelEventHandler Navigating { add { } remove { } } + public event System.Windows.Navigation.NavigationFailedEventHandler NavigationFailed { add { } remove { } } + public event System.Windows.Navigation.NavigationProgressEventHandler NavigationProgress { add { } remove { } } + public event System.Windows.Navigation.NavigationStoppedEventHandler NavigationStopped { add { } remove { } } + public void AddBackEntry(System.Windows.Navigation.CustomContentState state) { } + public static System.Windows.Navigation.NavigationService GetNavigationService(System.Windows.DependencyObject dependencyObject) { throw null; } + public void GoBack() { } + public void GoForward() { } + public bool Navigate(object root) { throw null; } + public bool Navigate(object root, object navigationState) { throw null; } + public bool Navigate(System.Uri source) { throw null; } + public bool Navigate(System.Uri source, object navigationState) { throw null; } + public bool Navigate(System.Uri source, object navigationState, bool sandboxExternalContent) { throw null; } + public void Refresh() { } + public System.Windows.Navigation.JournalEntry RemoveBackEntry() { throw null; } + public void StopLoading() { } + } + public delegate void NavigationStoppedEventHandler(object sender, System.Windows.Navigation.NavigationEventArgs e); + public enum NavigationUIVisibility + { + Automatic = 0, + Visible = 1, + Hidden = 2, + } + [System.Windows.Markup.ContentPropertyAttribute] + [System.Windows.TemplatePartAttribute(Name="PART_NavWinCP", Type=typeof(System.Windows.Controls.ContentPresenter))] + public partial class NavigationWindow : System.Windows.Window, System.Windows.Markup.IUriContext + { + public static readonly System.Windows.DependencyProperty BackStackProperty; + public static readonly System.Windows.DependencyProperty CanGoBackProperty; + public static readonly System.Windows.DependencyProperty CanGoForwardProperty; + public static readonly System.Windows.DependencyProperty ForwardStackProperty; + public static readonly System.Windows.DependencyProperty SandboxExternalContentProperty; + public static readonly System.Windows.DependencyProperty ShowsNavigationUIProperty; + public static readonly System.Windows.DependencyProperty SourceProperty; + public NavigationWindow() { } + public System.Collections.IEnumerable BackStack { get { throw null; } } + public bool CanGoBack { get { throw null; } } + public bool CanGoForward { get { throw null; } } + public System.Uri CurrentSource { get { throw null; } } + public System.Collections.IEnumerable ForwardStack { get { throw null; } } + public System.Windows.Navigation.NavigationService NavigationService { get { throw null; } } + public bool SandboxExternalContent { get { throw null; } set { } } + public bool ShowsNavigationUI { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Uri Source { get { throw null; } set { } } + System.Uri System.Windows.Markup.IUriContext.BaseUri { get { throw null; } set { } } + public event System.Windows.Navigation.FragmentNavigationEventHandler FragmentNavigation { add { } remove { } } + public event System.Windows.Navigation.LoadCompletedEventHandler LoadCompleted { add { } remove { } } + public event System.Windows.Navigation.NavigatedEventHandler Navigated { add { } remove { } } + public event System.Windows.Navigation.NavigatingCancelEventHandler Navigating { add { } remove { } } + public event System.Windows.Navigation.NavigationFailedEventHandler NavigationFailed { add { } remove { } } + public event System.Windows.Navigation.NavigationProgressEventHandler NavigationProgress { add { } remove { } } + public event System.Windows.Navigation.NavigationStoppedEventHandler NavigationStopped { add { } remove { } } + public void AddBackEntry(System.Windows.Navigation.CustomContentState state) { } + protected override void AddChild(object value) { } + protected override void AddText(string text) { } + public void GoBack() { } + public void GoForward() { } + public bool Navigate(object content) { throw null; } + public bool Navigate(object content, object extraData) { throw null; } + public bool Navigate(System.Uri source) { throw null; } + public bool Navigate(System.Uri source, object extraData) { throw null; } + public override void OnApplyTemplate() { } + protected override void OnClosed(System.EventArgs args) { } + protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() { throw null; } + public void Refresh() { } + public System.Windows.Navigation.JournalEntry RemoveBackEntry() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool ShouldSerializeContent() { throw null; } + public void StopLoading() { } + } + public abstract partial class PageFunctionBase : System.Windows.Controls.Page + { + protected PageFunctionBase() { } + public bool RemoveFromJournal { get { throw null; } set { } } + protected virtual void Start() { } + } + public partial class PageFunction : System.Windows.Navigation.PageFunctionBase + { + public PageFunction() { } + public event System.Windows.Navigation.ReturnEventHandler Return { add { } remove { } } + protected virtual void OnReturn(System.Windows.Navigation.ReturnEventArgs e) { } + } + public partial class RequestNavigateEventArgs : System.Windows.RoutedEventArgs + { + protected RequestNavigateEventArgs() { } + public RequestNavigateEventArgs(System.Uri uri, string target) { } + public string Target { get { throw null; } } + public System.Uri Uri { get { throw null; } } + protected override void InvokeEventHandler(System.Delegate genericHandler, object genericTarget) { } + } + public delegate void RequestNavigateEventHandler(object sender, System.Windows.Navigation.RequestNavigateEventArgs e); + public partial class ReturnEventArgs : System.EventArgs + { + public ReturnEventArgs() { } + public ReturnEventArgs(T result) { } + public T Result { get { throw null; } set { } } + } + public delegate void ReturnEventHandler(object sender, System.Windows.Navigation.ReturnEventArgs e); +} +namespace System.Windows.Resources +{ + public sealed partial class ContentTypes + { + public const string XamlContentType = "applicaton/xaml+xml"; + public ContentTypes() { } + } + public partial class StreamResourceInfo + { + public StreamResourceInfo() { } + public StreamResourceInfo(System.IO.Stream stream, string contentType) { } + public string ContentType { get { throw null; } } + public System.IO.Stream Stream { get { throw null; } } + } +} +namespace System.Windows.Shapes +{ + public sealed partial class Ellipse : System.Windows.Shapes.Shape + { + public Ellipse() { } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + public override System.Windows.Media.Transform GeometryTransform { get { throw null; } } + public override System.Windows.Media.Geometry RenderedGeometry { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + } + public sealed partial class Line : System.Windows.Shapes.Shape + { + public static readonly System.Windows.DependencyProperty X1Property; + public static readonly System.Windows.DependencyProperty X2Property; + public static readonly System.Windows.DependencyProperty Y1Property; + public static readonly System.Windows.DependencyProperty Y2Property; + public Line() { } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double X1 { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double X2 { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double Y1 { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double Y2 { get { throw null; } set { } } + } + public sealed partial class Path : System.Windows.Shapes.Shape + { + public static readonly System.Windows.DependencyProperty DataProperty; + public Path() { } + public System.Windows.Media.Geometry Data { get { throw null; } set { } } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + } + public sealed partial class Polygon : System.Windows.Shapes.Shape + { + public static readonly System.Windows.DependencyProperty FillRuleProperty; + public static readonly System.Windows.DependencyProperty PointsProperty; + public Polygon() { } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + public System.Windows.Media.FillRule FillRule { get { throw null; } set { } } + public System.Windows.Media.PointCollection Points { get { throw null; } set { } } + } + public sealed partial class Polyline : System.Windows.Shapes.Shape + { + public static readonly System.Windows.DependencyProperty FillRuleProperty; + public static readonly System.Windows.DependencyProperty PointsProperty; + public Polyline() { } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + public System.Windows.Media.FillRule FillRule { get { throw null; } set { } } + public System.Windows.Media.PointCollection Points { get { throw null; } set { } } + } + public sealed partial class Rectangle : System.Windows.Shapes.Shape + { + public static readonly System.Windows.DependencyProperty RadiusXProperty; + public static readonly System.Windows.DependencyProperty RadiusYProperty; + public Rectangle() { } + protected override System.Windows.Media.Geometry DefiningGeometry { get { throw null; } } + public override System.Windows.Media.Transform GeometryTransform { get { throw null; } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double RadiusX { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double RadiusY { get { throw null; } set { } } + public override System.Windows.Media.Geometry RenderedGeometry { get { throw null; } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + } + [System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)] + public abstract partial class Shape : System.Windows.FrameworkElement + { + public static readonly System.Windows.DependencyProperty FillProperty; + public static readonly System.Windows.DependencyProperty StretchProperty; + public static readonly System.Windows.DependencyProperty StrokeDashArrayProperty; + public static readonly System.Windows.DependencyProperty StrokeDashCapProperty; + public static readonly System.Windows.DependencyProperty StrokeDashOffsetProperty; + public static readonly System.Windows.DependencyProperty StrokeEndLineCapProperty; + public static readonly System.Windows.DependencyProperty StrokeLineJoinProperty; + public static readonly System.Windows.DependencyProperty StrokeMiterLimitProperty; + public static readonly System.Windows.DependencyProperty StrokeProperty; + public static readonly System.Windows.DependencyProperty StrokeStartLineCapProperty; + public static readonly System.Windows.DependencyProperty StrokeThicknessProperty; + protected Shape() { } + protected abstract System.Windows.Media.Geometry DefiningGeometry { get; } + public System.Windows.Media.Brush Fill { get { throw null; } set { } } + public virtual System.Windows.Media.Transform GeometryTransform { get { throw null; } } + public virtual System.Windows.Media.Geometry RenderedGeometry { get { throw null; } } + public System.Windows.Media.Stretch Stretch { get { throw null; } set { } } + public System.Windows.Media.Brush Stroke { get { throw null; } set { } } + public System.Windows.Media.DoubleCollection StrokeDashArray { get { throw null; } set { } } + public System.Windows.Media.PenLineCap StrokeDashCap { get { throw null; } set { } } + public double StrokeDashOffset { get { throw null; } set { } } + public System.Windows.Media.PenLineCap StrokeEndLineCap { get { throw null; } set { } } + public System.Windows.Media.PenLineJoin StrokeLineJoin { get { throw null; } set { } } + public double StrokeMiterLimit { get { throw null; } set { } } + public System.Windows.Media.PenLineCap StrokeStartLineCap { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.LengthConverter))] + public double StrokeThickness { get { throw null; } set { } } + protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize) { throw null; } + protected override System.Windows.Size MeasureOverride(System.Windows.Size constraint) { throw null; } + protected override void OnRender(System.Windows.Media.DrawingContext drawingContext) { } + } +} +namespace System.Windows.Shell +{ + public abstract partial class JumpItem + { + internal JumpItem() { } + public string CustomCategory { get { throw null; } set { } } + } + public enum JumpItemRejectionReason + { + None = 0, + InvalidItem = 1, + NoRegisteredHandler = 2, + RemovedByUser = 3, + } + public sealed partial class JumpItemsRejectedEventArgs : System.EventArgs + { + public JumpItemsRejectedEventArgs() { } + public JumpItemsRejectedEventArgs(System.Collections.Generic.IList rejectedItems, System.Collections.Generic.IList reasons) { } + public System.Collections.Generic.IList RejectedItems { get { throw null; } } + public System.Collections.Generic.IList RejectionReasons { get { throw null; } } + } + public sealed partial class JumpItemsRemovedEventArgs : System.EventArgs + { + public JumpItemsRemovedEventArgs() { } + public JumpItemsRemovedEventArgs(System.Collections.Generic.IList removedItems) { } + public System.Collections.Generic.IList RemovedItems { get { throw null; } } + } + [System.Windows.Markup.ContentPropertyAttribute("JumpItems")] + public sealed partial class JumpList : System.ComponentModel.ISupportInitialize + { + public JumpList() { } + public JumpList(System.Collections.Generic.IEnumerable items, bool showFrequent, bool showRecent) { } + public System.Collections.Generic.List JumpItems { get { throw null; } } + public bool ShowFrequentCategory { get { throw null; } set { } } + public bool ShowRecentCategory { get { throw null; } set { } } + public event System.EventHandler JumpItemsRejected { add { } remove { } } + public event System.EventHandler JumpItemsRemovedByUser { add { } remove { } } + public static void AddToRecentCategory(string itemPath) { } + public static void AddToRecentCategory(System.Windows.Shell.JumpPath jumpPath) { } + public static void AddToRecentCategory(System.Windows.Shell.JumpTask jumpTask) { } + public void Apply() { } + public void BeginInit() { } + public void EndInit() { } + public static System.Windows.Shell.JumpList GetJumpList(System.Windows.Application application) { throw null; } + public static void SetJumpList(System.Windows.Application application, System.Windows.Shell.JumpList value) { } + } + public partial class JumpPath : System.Windows.Shell.JumpItem + { + public JumpPath() { } + public string Path { get { throw null; } set { } } + } + public partial class JumpTask : System.Windows.Shell.JumpItem + { + public JumpTask() { } + public string ApplicationPath { get { throw null; } set { } } + public string Arguments { get { throw null; } set { } } + public string Description { get { throw null; } set { } } + public int IconResourceIndex { get { throw null; } set { } } + public string IconResourcePath { get { throw null; } set { } } + public string Title { get { throw null; } set { } } + public string WorkingDirectory { get { throw null; } set { } } + } + [System.FlagsAttribute] + public enum NonClientFrameEdges + { + None = 0, + Left = 1, + Top = 2, + Right = 4, + Bottom = 8, + } + public enum ResizeGripDirection + { + None = 0, + TopLeft = 1, + Top = 2, + TopRight = 3, + Right = 4, + BottomRight = 5, + Bottom = 6, + BottomLeft = 7, + Left = 8, + } + public sealed partial class TaskbarItemInfo : System.Windows.Freezable + { + public static readonly System.Windows.DependencyProperty DescriptionProperty; + public static readonly System.Windows.DependencyProperty OverlayProperty; + public static readonly System.Windows.DependencyProperty ProgressStateProperty; + public static readonly System.Windows.DependencyProperty ProgressValueProperty; + public static readonly System.Windows.DependencyProperty ThumbButtonInfosProperty; + public static readonly System.Windows.DependencyProperty ThumbnailClipMarginProperty; + public TaskbarItemInfo() { } + public string Description { get { throw null; } set { } } + public System.Windows.Media.ImageSource Overlay { get { throw null; } set { } } + public System.Windows.Shell.TaskbarItemProgressState ProgressState { get { throw null; } set { } } + public double ProgressValue { get { throw null; } set { } } + public System.Windows.Shell.ThumbButtonInfoCollection ThumbButtonInfos { get { throw null; } set { } } + public System.Windows.Thickness ThumbnailClipMargin { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public enum TaskbarItemProgressState + { + None = 0, + Indeterminate = 1, + Normal = 2, + Error = 3, + Paused = 4, + } + public sealed partial class ThumbButtonInfo : System.Windows.Freezable, System.Windows.Input.ICommandSource + { + public static readonly System.Windows.DependencyProperty CommandParameterProperty; + public static readonly System.Windows.DependencyProperty CommandProperty; + public static readonly System.Windows.DependencyProperty CommandTargetProperty; + public static readonly System.Windows.DependencyProperty DescriptionProperty; + public static readonly System.Windows.DependencyProperty DismissWhenClickedProperty; + public static readonly System.Windows.DependencyProperty ImageSourceProperty; + public static readonly System.Windows.DependencyProperty IsBackgroundVisibleProperty; + public static readonly System.Windows.DependencyProperty IsEnabledProperty; + public static readonly System.Windows.DependencyProperty IsInteractiveProperty; + public static readonly System.Windows.DependencyProperty VisibilityProperty; + public ThumbButtonInfo() { } + public System.Windows.Input.ICommand Command { get { throw null; } set { } } + public object CommandParameter { get { throw null; } set { } } + public System.Windows.IInputElement CommandTarget { get { throw null; } set { } } + public string Description { get { throw null; } set { } } + public bool DismissWhenClicked { get { throw null; } set { } } + public System.Windows.Media.ImageSource ImageSource { get { throw null; } set { } } + public bool IsBackgroundVisible { get { throw null; } set { } } + public bool IsEnabled { get { throw null; } set { } } + public bool IsInteractive { get { throw null; } set { } } + public System.Windows.Visibility Visibility { get { throw null; } set { } } + public event System.EventHandler Click { add { } remove { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class ThumbButtonInfoCollection : System.Windows.FreezableCollection + { + public ThumbButtonInfoCollection() { } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + } + public partial class WindowChrome : System.Windows.Freezable + { + public static readonly System.Windows.DependencyProperty CaptionHeightProperty; + public static readonly System.Windows.DependencyProperty CornerRadiusProperty; + public static readonly System.Windows.DependencyProperty GlassFrameThicknessProperty; + public static readonly System.Windows.DependencyProperty IsHitTestVisibleInChromeProperty; + public static readonly System.Windows.DependencyProperty NonClientFrameEdgesProperty; + public static readonly System.Windows.DependencyProperty ResizeBorderThicknessProperty; + public static readonly System.Windows.DependencyProperty ResizeGripDirectionProperty; + public static readonly System.Windows.DependencyProperty UseAeroCaptionButtonsProperty; + public static readonly System.Windows.DependencyProperty WindowChromeProperty; + public WindowChrome() { } + public double CaptionHeight { get { throw null; } set { } } + public System.Windows.CornerRadius CornerRadius { get { throw null; } set { } } + public static System.Windows.Thickness GlassFrameCompleteThickness { get { throw null; } } + public System.Windows.Thickness GlassFrameThickness { get { throw null; } set { } } + public System.Windows.Shell.NonClientFrameEdges NonClientFrameEdges { get { throw null; } set { } } + public System.Windows.Thickness ResizeBorderThickness { get { throw null; } set { } } + public bool UseAeroCaptionButtons { get { throw null; } set { } } + protected override System.Windows.Freezable CreateInstanceCore() { throw null; } + public static bool GetIsHitTestVisibleInChrome(System.Windows.IInputElement inputElement) { throw null; } + public static System.Windows.Shell.ResizeGripDirection GetResizeGripDirection(System.Windows.IInputElement inputElement) { throw null; } + public static System.Windows.Shell.WindowChrome GetWindowChrome(System.Windows.Window window) { throw null; } + public static void SetIsHitTestVisibleInChrome(System.Windows.IInputElement inputElement, bool hitTestVisible) { } + public static void SetResizeGripDirection(System.Windows.IInputElement inputElement, System.Windows.Shell.ResizeGripDirection direction) { } + public static void SetWindowChrome(System.Windows.Window window, System.Windows.Shell.WindowChrome chrome) { } + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/otherassemblyattrs.cs b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/otherassemblyattrs.cs new file mode 100644 index 00000000000..583eb17e4f5 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/ref/otherassemblyattrs.cs @@ -0,0 +1,108 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +// +// This file specifies various assembly level attributes. +// + +using MS.Internal.PresentationFramework; +using System; +using System.Resources; +using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; +using System.Security.Permissions; +using System.Security; +using System.Windows.Markup; + +[assembly:TypeForwardedTo(typeof(System.Windows.NameScope))] +[assembly:TypeForwardedTo(typeof(System.Windows.Markup.ArrayExtension))] +[assembly:TypeForwardedTo(typeof(System.Windows.Markup.IProvideValueTarget))] +[assembly:TypeForwardedTo(typeof(System.Windows.Markup.NullExtension))] +[assembly:TypeForwardedTo(typeof(System.Windows.Markup.StaticExtension))] +[assembly:TypeForwardedTo(typeof(System.Windows.Markup.TypeExtension))] + +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkRoyale)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkLuna)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkAero)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkAero2)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkAeroLite)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkClassic)] +[assembly:InternalsVisibleTo(BuildInfo.SystemWindowsPresentation)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkSystemCore)] +[assembly:InternalsVisibleTo(BuildInfo.PresentationFrameworkSystemXml)] +[assembly:InternalsVisibleTo(BuildInfo.SystemWindowsControlsRibbon)] + +[assembly:DependencyAttribute("mscorlib,", LoadHint.Always)] +[assembly:DependencyAttribute("System,", LoadHint.Always)] +[assembly:DependencyAttribute("WindowsBase,", LoadHint.Always)] +[assembly:DependencyAttribute("PresentationCore,", LoadHint.Always)] +[assembly:DependencyAttribute("System.Xaml,", LoadHint.Sometimes)] + +// Due to the XBAP script interop feature, we take a dependency on System.Core for the use +// of the dynamic pseudo-type, on BrowserInteropHelper.HostScript. The dynamic type really +// is System.Object with the DynamicAttribute applied to it, which lives in System.Core. +// It turns out that System.Core has [assembly:DefaultDependencyAttribute(LoadHint.Always)] +// applied on it, so every reference to it causes System.Core to be loaded regardless of +// whether code in it is actually hit. By setting the LoadHint below to Sometimes, we avoid +// this eager loading to be caused by PresentationFramework's dependency on it. Note there +// is a plan by the CLR team to remove the attribute on System.Core. At that point, we can +// likely drop the attribute below, but there should be no harm in leaving it. +[assembly:DependencyAttribute("System.Core,", LoadHint.Sometimes)] + +[assembly:System.Windows.ThemeInfoAttribute(System.Windows.ResourceDictionaryLocation.ExternalAssembly, System.Windows.ResourceDictionaryLocation.None)] + +// Namespace information for Xaml +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Controls")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Documents")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Shapes")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Shell")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Navigation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Data")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Controls.Primitives")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Media.Animation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Input")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "System.Windows.Media")] +[assembly:System.Windows.Markup.XmlnsPrefix ("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "av")] + +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Controls")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Documents")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Shapes")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Shell")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Navigation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Data")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Controls.Primitives")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Media.Animation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Input")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "System.Windows.Media")] +[assembly:System.Windows.Markup.XmlnsPrefix ("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "wpf")] + +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Controls")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Documents")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Shapes")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Shell")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Navigation")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Data")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Controls.Primitives")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Media.Animation")] +[assembly: System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "System.Windows.Input")] +[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "wpf")] + +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml", "System.Windows.Markup")] +[assembly:System.Windows.Markup.XmlnsPrefix ("http://schemas.microsoft.com/winfx/2006/xaml", "x")] + +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Controls")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Documents")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Shapes")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Navigation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Data")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Controls.Primitives")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Media.Animation")] +[assembly:System.Windows.Markup.XmlnsDefinition("http://schemas.microsoft.com/xps/2005/06", "System.Windows.Input")] +[assembly:System.Windows.Markup.XmlnsPrefix ("http://schemas.microsoft.com/xps/2005/06", "metro")] + +[assembly: System.Windows.Markup.XmlnsCompatibleWith("http://schemas.microsoft.com/xps/2005/06/resourcedictionary-key", "http://schemas.microsoft.com/winfx/2006/xaml")] diff --git a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj index 0c326d902ab..46c0c1f1cda 100644 --- a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj +++ b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ReachFramework.csproj @@ -352,6 +352,9 @@ + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj new file mode 100644 index 00000000000..1c75fb9cd5b --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework-ref.csproj @@ -0,0 +1,65 @@ + + + ReachFramework + ReachFramework-ref + $(TargetGroup)-$(PackageId)/ + $(DefineConstants);REACHFRAMEWORK; + true + $(NoWarn);0618 + false + None + AnyCPU;x64 + false + netcoreapp3.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework.cs b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework.cs new file mode 100644 index 00000000000..44516812287 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/ReachFramework/ref/ReachFramework.cs @@ -0,0 +1,979 @@ +namespace System.Printing +{ + public enum Collation + { + Unknown = 0, + Collated = 1, + Uncollated = 2, + } + public enum ConflictStatus + { + NoConflict = 0, + ConflictResolved = 1, + } + public enum DeviceFontSubstitution + { + Unknown = 0, + Off = 1, + On = 2, + } + public enum Duplexing + { + Unknown = 0, + OneSided = 1, + TwoSidedShortEdge = 2, + TwoSidedLongEdge = 3, + } + public enum InputBin + { + Unknown = 0, + AutoSelect = 1, + Cassette = 2, + Tractor = 3, + AutoSheetFeeder = 4, + Manual = 5, + } + public enum OutputColor + { + Unknown = 0, + Color = 1, + Grayscale = 2, + Monochrome = 3, + } + public enum OutputQuality + { + Unknown = 0, + Automatic = 1, + Draft = 2, + Fax = 3, + High = 4, + Normal = 5, + Photographic = 6, + Text = 7, + } + public enum PageBorderless + { + Unknown = 0, + Borderless = 1, + None = 2, + } + public sealed partial class PageImageableArea + { + internal PageImageableArea() { } + public double ExtentHeight { get { throw null; } } + public double ExtentWidth { get { throw null; } } + public double OriginHeight { get { throw null; } } + public double OriginWidth { get { throw null; } } + public override string ToString() { throw null; } + } + public sealed partial class PageMediaSize + { + public PageMediaSize(double width, double height) { } + public PageMediaSize(System.Printing.PageMediaSizeName mediaSizeName) { } + public PageMediaSize(System.Printing.PageMediaSizeName mediaSizeName, double width, double height) { } + public double? Height { get { throw null; } } + public System.Printing.PageMediaSizeName? PageMediaSizeName { get { throw null; } } + public double? Width { get { throw null; } } + public override string ToString() { throw null; } + } + public enum PageMediaSizeName + { + Unknown = 0, + ISOA0 = 1, + ISOA1 = 2, + ISOA10 = 3, + ISOA2 = 4, + ISOA3 = 5, + ISOA3Rotated = 6, + ISOA3Extra = 7, + ISOA4 = 8, + ISOA4Rotated = 9, + ISOA4Extra = 10, + ISOA5 = 11, + ISOA5Rotated = 12, + ISOA5Extra = 13, + ISOA6 = 14, + ISOA6Rotated = 15, + ISOA7 = 16, + ISOA8 = 17, + ISOA9 = 18, + ISOB0 = 19, + ISOB1 = 20, + ISOB10 = 21, + ISOB2 = 22, + ISOB3 = 23, + ISOB4 = 24, + ISOB4Envelope = 25, + ISOB5Envelope = 26, + ISOB5Extra = 27, + ISOB7 = 28, + ISOB8 = 29, + ISOB9 = 30, + ISOC0 = 31, + ISOC1 = 32, + ISOC10 = 33, + ISOC2 = 34, + ISOC3 = 35, + ISOC3Envelope = 36, + ISOC4 = 37, + ISOC4Envelope = 38, + ISOC5 = 39, + ISOC5Envelope = 40, + ISOC6 = 41, + ISOC6Envelope = 42, + ISOC6C5Envelope = 43, + ISOC7 = 44, + ISOC8 = 45, + ISOC9 = 46, + ISODLEnvelope = 47, + ISODLEnvelopeRotated = 48, + ISOSRA3 = 49, + JapanQuadrupleHagakiPostcard = 50, + JISB0 = 51, + JISB1 = 52, + JISB10 = 53, + JISB2 = 54, + JISB3 = 55, + JISB4 = 56, + JISB4Rotated = 57, + JISB5 = 58, + JISB5Rotated = 59, + JISB6 = 60, + JISB6Rotated = 61, + JISB7 = 62, + JISB8 = 63, + JISB9 = 64, + JapanChou3Envelope = 65, + JapanChou3EnvelopeRotated = 66, + JapanChou4Envelope = 67, + JapanChou4EnvelopeRotated = 68, + JapanHagakiPostcard = 69, + JapanHagakiPostcardRotated = 70, + JapanKaku2Envelope = 71, + JapanKaku2EnvelopeRotated = 72, + JapanKaku3Envelope = 73, + JapanKaku3EnvelopeRotated = 74, + JapanYou4Envelope = 75, + NorthAmerica10x11 = 76, + NorthAmerica10x14 = 77, + NorthAmerica11x17 = 78, + NorthAmerica9x11 = 79, + NorthAmericaArchitectureASheet = 80, + NorthAmericaArchitectureBSheet = 81, + NorthAmericaArchitectureCSheet = 82, + NorthAmericaArchitectureDSheet = 83, + NorthAmericaArchitectureESheet = 84, + NorthAmericaCSheet = 85, + NorthAmericaDSheet = 86, + NorthAmericaESheet = 87, + NorthAmericaExecutive = 88, + NorthAmericaGermanLegalFanfold = 89, + NorthAmericaGermanStandardFanfold = 90, + NorthAmericaLegal = 91, + NorthAmericaLegalExtra = 92, + NorthAmericaLetter = 93, + NorthAmericaLetterRotated = 94, + NorthAmericaLetterExtra = 95, + NorthAmericaLetterPlus = 96, + NorthAmericaMonarchEnvelope = 97, + NorthAmericaNote = 98, + NorthAmericaNumber10Envelope = 99, + NorthAmericaNumber10EnvelopeRotated = 100, + NorthAmericaNumber9Envelope = 101, + NorthAmericaNumber11Envelope = 102, + NorthAmericaNumber12Envelope = 103, + NorthAmericaNumber14Envelope = 104, + NorthAmericaPersonalEnvelope = 105, + NorthAmericaQuarto = 106, + NorthAmericaStatement = 107, + NorthAmericaSuperA = 108, + NorthAmericaSuperB = 109, + NorthAmericaTabloid = 110, + NorthAmericaTabloidExtra = 111, + OtherMetricA4Plus = 112, + OtherMetricA3Plus = 113, + OtherMetricFolio = 114, + OtherMetricInviteEnvelope = 115, + OtherMetricItalianEnvelope = 116, + PRC1Envelope = 117, + PRC1EnvelopeRotated = 118, + PRC10Envelope = 119, + PRC10EnvelopeRotated = 120, + PRC16K = 121, + PRC16KRotated = 122, + PRC2Envelope = 123, + PRC2EnvelopeRotated = 124, + PRC32K = 125, + PRC32KRotated = 126, + PRC32KBig = 127, + PRC3Envelope = 128, + PRC3EnvelopeRotated = 129, + PRC4Envelope = 130, + PRC4EnvelopeRotated = 131, + PRC5Envelope = 132, + PRC5EnvelopeRotated = 133, + PRC6Envelope = 134, + PRC6EnvelopeRotated = 135, + PRC7Envelope = 136, + PRC7EnvelopeRotated = 137, + PRC8Envelope = 138, + PRC8EnvelopeRotated = 139, + PRC9Envelope = 140, + PRC9EnvelopeRotated = 141, + Roll04Inch = 142, + Roll06Inch = 143, + Roll08Inch = 144, + Roll12Inch = 145, + Roll15Inch = 146, + Roll18Inch = 147, + Roll22Inch = 148, + Roll24Inch = 149, + Roll30Inch = 150, + Roll36Inch = 151, + Roll54Inch = 152, + JapanDoubleHagakiPostcard = 153, + JapanDoubleHagakiPostcardRotated = 154, + JapanLPhoto = 155, + Japan2LPhoto = 156, + JapanYou1Envelope = 157, + JapanYou2Envelope = 158, + JapanYou3Envelope = 159, + JapanYou4EnvelopeRotated = 160, + JapanYou6Envelope = 161, + JapanYou6EnvelopeRotated = 162, + NorthAmerica4x6 = 163, + NorthAmerica4x8 = 164, + NorthAmerica5x7 = 165, + NorthAmerica8x10 = 166, + NorthAmerica10x12 = 167, + NorthAmerica14x17 = 168, + BusinessCard = 169, + CreditCard = 170, + } + public enum PageMediaType + { + Unknown = 0, + AutoSelect = 1, + Archival = 2, + BackPrintFilm = 3, + Bond = 4, + CardStock = 5, + Continuous = 6, + EnvelopePlain = 7, + EnvelopeWindow = 8, + Fabric = 9, + HighResolution = 10, + Label = 11, + MultiLayerForm = 12, + MultiPartForm = 13, + Photographic = 14, + PhotographicFilm = 15, + PhotographicGlossy = 16, + PhotographicHighGloss = 17, + PhotographicMatte = 18, + PhotographicSatin = 19, + PhotographicSemiGloss = 20, + Plain = 21, + Screen = 22, + ScreenPaged = 23, + Stationery = 24, + TabStockFull = 25, + TabStockPreCut = 26, + Transparency = 27, + TShirtTransfer = 28, + None = 29, + } + public enum PageOrder + { + Unknown = 0, + Standard = 1, + Reverse = 2, + } + public enum PageOrientation + { + Unknown = 0, + Landscape = 1, + Portrait = 2, + ReverseLandscape = 3, + ReversePortrait = 4, + } + public enum PageQualitativeResolution + { + Unknown = 0, + Default = 1, + Draft = 2, + High = 3, + Normal = 4, + Other = 5, + } + public sealed partial class PageResolution + { + public PageResolution(int resolutionX, int resolutionY) { } + public PageResolution(int resolutionX, int resolutionY, System.Printing.PageQualitativeResolution qualitative) { } + public PageResolution(System.Printing.PageQualitativeResolution qualitative) { } + public System.Printing.PageQualitativeResolution? QualitativeResolution { get { throw null; } } + public int? X { get { throw null; } } + public int? Y { get { throw null; } } + public override string ToString() { throw null; } + } + public sealed partial class PageScalingFactorRange + { + internal PageScalingFactorRange() { } + public int MaximumScale { get { throw null; } } + public int MinimumScale { get { throw null; } } + public override string ToString() { throw null; } + } + public enum PagesPerSheetDirection + { + Unknown = 0, + RightBottom = 1, + BottomRight = 2, + LeftBottom = 3, + BottomLeft = 4, + RightTop = 5, + TopRight = 6, + LeftTop = 7, + TopLeft = 8, + } + public enum PhotoPrintingIntent + { + Unknown = 0, + None = 1, + PhotoBest = 2, + PhotoDraft = 3, + PhotoStandard = 4, + } + public sealed partial class PrintCapabilities + { + public PrintCapabilities(System.IO.Stream xmlStream) { } + public System.Collections.ObjectModel.ReadOnlyCollection CollationCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection DeviceFontSubstitutionCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection DuplexingCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection InputBinCapability { get { throw null; } } + public int? MaxCopyCount { get { throw null; } } + public double? OrientedPageMediaHeight { get { throw null; } } + public double? OrientedPageMediaWidth { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection OutputColorCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection OutputQualityCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageBorderlessCapability { get { throw null; } } + public System.Printing.PageImageableArea PageImageableArea { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageMediaSizeCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageMediaTypeCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageOrderCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageOrientationCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PageResolutionCapability { get { throw null; } } + public System.Printing.PageScalingFactorRange PageScalingFactorRange { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PagesPerSheetCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PagesPerSheetDirectionCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection PhotoPrintingIntentCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection StaplingCapability { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection TrueTypeFontModeCapability { get { throw null; } } + } + public partial class PrintCommitAttributesException : System.Printing.PrintSystemException + { + public PrintCommitAttributesException() { } + public PrintCommitAttributesException(int errorCode, System.Collections.ObjectModel.Collection attributesSuccessList, System.Collections.ObjectModel.Collection attributesFailList) { } + public PrintCommitAttributesException(int errorCode, string message, System.Collections.ObjectModel.Collection attributesSuccessList, System.Collections.ObjectModel.Collection attributesFailList, string objectName) { } + protected PrintCommitAttributesException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintCommitAttributesException(string message) { } + public PrintCommitAttributesException(string message, System.Exception innerException) { } + public System.Collections.ObjectModel.Collection CommittedAttributesCollection { get { throw null; } } + public System.Collections.ObjectModel.Collection FailedAttributesCollection { get { throw null; } } + public string PrintObjectName { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class PrintingCanceledException : System.Printing.PrintJobException + { + public PrintingCanceledException() { } + public PrintingCanceledException(int errorCode, string message) { } + public PrintingCanceledException(int errorCode, string message, System.Exception innerException) { } + public PrintingCanceledException(int errorCode, string message, string printQueueName, string jobName, int jobId) { } + public PrintingCanceledException(int errorCode, string message, string printQueueName, string jobName, int jobId, System.Exception innerException) { } + protected PrintingCanceledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintingCanceledException(string message) { } + public PrintingCanceledException(string message, System.Exception innerException) { } + } + public partial class PrintingNotSupportedException : System.Printing.PrintSystemException + { + public PrintingNotSupportedException() { } + protected PrintingNotSupportedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintingNotSupportedException(string message) { } + public PrintingNotSupportedException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class PrintJobException : System.Printing.PrintSystemException + { + public PrintJobException() { } + public PrintJobException(int errorCode, string message) { } + public PrintJobException(int errorCode, string message, System.Exception innerException) { } + public PrintJobException(int errorCode, string message, string printQueueName, string jobName, int jobId) { } + public PrintJobException(int errorCode, string message, string printQueueName, string jobName, int jobId, System.Exception innerException) { } + protected PrintJobException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintJobException(string message) { } + public PrintJobException(string message, System.Exception innerException) { } + public int JobId { get { throw null; } } + public string JobName { get { throw null; } } + public string PrintQueueName { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class PrintQueueException : System.Printing.PrintSystemException + { + public PrintQueueException() { } + public PrintQueueException(int errorCode, string message, string printerName) { } + public PrintQueueException(int errorCode, string message, string printerName, System.Exception innerException) { } + public PrintQueueException(int errorCode, string message, string printerName, string printerMessage) { } + protected PrintQueueException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintQueueException(string message) { } + public PrintQueueException(string message, System.Exception innerException) { } + public string PrinterName { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class PrintServerException : System.Printing.PrintSystemException + { + public PrintServerException() { } + public PrintServerException(int errorCode, string message, string serverName) { } + public PrintServerException(int errorCode, string message, string serverName, System.Exception innerException) { } + protected PrintServerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintServerException(string message) { } + public PrintServerException(string message, System.Exception innerException) { } + public string ServerName { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class PrintSystemException : System.SystemException + { + public PrintSystemException() { } + public PrintSystemException(int errorCode, string message) { } + public PrintSystemException(int errorCode, string message, System.Exception innerException) { } + public PrintSystemException(int errorCode, string message, string printerMessage) { } + protected PrintSystemException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public PrintSystemException(string message) { } + public PrintSystemException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public sealed partial class PrintTicket : System.ComponentModel.INotifyPropertyChanged + { + public PrintTicket() { } + public PrintTicket(System.IO.Stream xmlStream) { } + public System.Printing.Collation? Collation { get { throw null; } set { } } + public int? CopyCount { get { throw null; } set { } } + public System.Printing.DeviceFontSubstitution? DeviceFontSubstitution { get { throw null; } set { } } + public System.Printing.Duplexing? Duplexing { get { throw null; } set { } } + public System.Printing.InputBin? InputBin { get { throw null; } set { } } + public System.Printing.OutputColor? OutputColor { get { throw null; } set { } } + public System.Printing.OutputQuality? OutputQuality { get { throw null; } set { } } + public System.Printing.PageBorderless? PageBorderless { get { throw null; } set { } } + public System.Printing.PageMediaSize PageMediaSize { get { throw null; } set { } } + public System.Printing.PageMediaType? PageMediaType { get { throw null; } set { } } + public System.Printing.PageOrder? PageOrder { get { throw null; } set { } } + public System.Printing.PageOrientation? PageOrientation { get { throw null; } set { } } + public System.Printing.PageResolution PageResolution { get { throw null; } set { } } + public int? PageScalingFactor { get { throw null; } set { } } + public int? PagesPerSheet { get { throw null; } set { } } + public System.Printing.PagesPerSheetDirection? PagesPerSheetDirection { get { throw null; } set { } } + public System.Printing.PhotoPrintingIntent? PhotoPrintingIntent { get { throw null; } set { } } + public System.Printing.Stapling? Stapling { get { throw null; } set { } } + public System.Printing.TrueTypeFontMode? TrueTypeFontMode { get { throw null; } set { } } + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } } + public System.Printing.PrintTicket Clone() { throw null; } + public System.IO.MemoryStream GetXmlStream() { throw null; } + public void SaveTo(System.IO.Stream outStream) { } + } + public enum PrintTicketScope + { + PageScope = 0, + DocumentScope = 1, + JobScope = 2, + } + public enum Stapling + { + Unknown = 0, + SaddleStitch = 1, + StapleBottomLeft = 2, + StapleBottomRight = 3, + StapleDualLeft = 4, + StapleDualRight = 5, + StapleDualTop = 6, + StapleDualBottom = 7, + StapleTopLeft = 8, + StapleTopRight = 9, + None = 10, + } + public enum TrueTypeFontMode + { + Unknown = 0, + Automatic = 1, + DownloadAsOutlineFont = 2, + DownloadAsRasterFont = 3, + DownloadAsNativeTrueTypeFont = 4, + RenderAsBitmap = 5, + } + public partial struct ValidationResult + { + public System.Printing.ConflictStatus ConflictStatus { get { throw null; } } + public System.Printing.PrintTicket ValidatedPrintTicket { get { throw null; } } + public override bool Equals(object o) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Printing.ValidationResult a, System.Printing.ValidationResult b) { throw null; } + public static bool operator !=(System.Printing.ValidationResult a, System.Printing.ValidationResult b) { throw null; } + } +} +namespace System.Printing.Interop +{ + public enum BaseDevModeType + { + UserDefault = 0, + PrinterDefault = 1, + } + public sealed partial class PrintTicketConverter : System.IDisposable + { + public PrintTicketConverter(string deviceName, int clientPrintSchemaVersion) { } + public static int MaxPrintSchemaVersion { get { throw null; } } + public System.Printing.PrintTicket ConvertDevModeToPrintTicket(byte[] devMode) { throw null; } + public System.Printing.PrintTicket ConvertDevModeToPrintTicket(byte[] devMode, System.Printing.PrintTicketScope scope) { throw null; } + public byte[] ConvertPrintTicketToDevMode(System.Printing.PrintTicket printTicket, System.Printing.Interop.BaseDevModeType baseType) { throw null; } + public byte[] ConvertPrintTicketToDevMode(System.Printing.PrintTicket printTicket, System.Printing.Interop.BaseDevModeType baseType, System.Printing.PrintTicketScope scope) { throw null; } + public void Dispose() { } + void System.IDisposable.Dispose() { } + } +} +namespace System.Windows.Xps +{ + public partial class XpsException : System.Exception + { + public XpsException() { } + protected XpsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XpsException(string message) { } + public XpsException(string message, System.Exception innerException) { } + } + public partial class XpsPackagingException : System.Windows.Xps.XpsException + { + public XpsPackagingException() { } + protected XpsPackagingException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XpsPackagingException(string message) { } + public XpsPackagingException(string message, System.Exception innerException) { } + } + public partial class XpsSerializationException : System.Windows.Xps.XpsException + { + public XpsSerializationException() { } + protected XpsSerializationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XpsSerializationException(string message) { } + public XpsSerializationException(string message, System.Exception innerException) { } + } +} +namespace System.Windows.Xps.Packaging +{ + public partial interface IDocumentStructureProvider + { + System.Windows.Xps.Packaging.XpsStructure AddDocumentStructure(); + } + public partial interface IStoryFragmentProvider + { + System.Windows.Xps.Packaging.XpsStructure AddStoryFragment(); + } + public partial interface IXpsFixedDocumentReader : System.Windows.Xps.Packaging.IDocumentStructureProvider + { + int DocumentNumber { get; } + System.Windows.Xps.Packaging.XpsStructure DocumentStructure { get; } + System.Collections.ObjectModel.ReadOnlyCollection FixedPages { get; } + System.Printing.PrintTicket PrintTicket { get; } + System.Collections.Generic.ICollection SignatureDefinitions { get; } + System.Windows.Xps.Packaging.XpsThumbnail Thumbnail { get; } + System.Uri Uri { get; } + void AddSignatureDefinition(System.Windows.Xps.Packaging.XpsSignatureDefinition signatureDefinition); + void CommitSignatureDefinition(); + System.Windows.Xps.Packaging.IXpsFixedPageReader GetFixedPage(System.Uri pageSource); + void RemoveSignatureDefinition(System.Windows.Xps.Packaging.XpsSignatureDefinition signatureDefinition); + } + public partial interface IXpsFixedDocumentSequenceReader + { + System.Collections.ObjectModel.ReadOnlyCollection FixedDocuments { get; } + System.Printing.PrintTicket PrintTicket { get; } + System.Windows.Xps.Packaging.XpsThumbnail Thumbnail { get; } + System.Uri Uri { get; } + System.Windows.Xps.Packaging.IXpsFixedDocumentReader GetFixedDocument(System.Uri documentSource); + } + public partial interface IXpsFixedDocumentSequenceWriter + { + System.Printing.PrintTicket PrintTicket { set; } + System.Uri Uri { get; } + System.Windows.Xps.Packaging.IXpsFixedDocumentWriter AddFixedDocument(); + System.Windows.Xps.Packaging.XpsThumbnail AddThumbnail(System.Windows.Xps.Packaging.XpsImageType imageType); + void Commit(); + } + public partial interface IXpsFixedDocumentWriter : System.Windows.Xps.Packaging.IDocumentStructureProvider + { + int DocumentNumber { get; } + System.Printing.PrintTicket PrintTicket { set; } + System.Uri Uri { get; } + System.Windows.Xps.Packaging.IXpsFixedPageWriter AddFixedPage(); + System.Windows.Xps.Packaging.XpsThumbnail AddThumbnail(System.Windows.Xps.Packaging.XpsImageType imageType); + void Commit(); + } + public partial interface IXpsFixedPageReader : System.Windows.Xps.Packaging.IStoryFragmentProvider + { + System.Collections.Generic.ICollection ColorContexts { get; } + System.Collections.Generic.ICollection Fonts { get; } + System.Collections.Generic.ICollection Images { get; } + int PageNumber { get; } + System.Printing.PrintTicket PrintTicket { get; } + System.Collections.Generic.ICollection ResourceDictionaries { get; } + System.Windows.Xps.Packaging.XpsStructure StoryFragment { get; } + System.Windows.Xps.Packaging.XpsThumbnail Thumbnail { get; } + System.Uri Uri { get; } + System.Xml.XmlReader XmlReader { get; } + System.Windows.Xps.Packaging.XpsColorContext GetColorContext(System.Uri uri); + System.Windows.Xps.Packaging.XpsFont GetFont(System.Uri uri); + System.Windows.Xps.Packaging.XpsImage GetImage(System.Uri uri); + System.Windows.Xps.Packaging.XpsResource GetResource(System.Uri resourceUri); + System.Windows.Xps.Packaging.XpsResourceDictionary GetResourceDictionary(System.Uri uri); + } + public partial interface IXpsFixedPageWriter : System.Windows.Xps.Packaging.IStoryFragmentProvider + { + System.Collections.Generic.IList LinkTargetStream { get; } + int PageNumber { get; } + System.Printing.PrintTicket PrintTicket { set; } + System.Uri Uri { get; } + System.Xml.XmlWriter XmlWriter { get; } + System.Windows.Xps.Packaging.XpsColorContext AddColorContext(); + System.Windows.Xps.Packaging.XpsFont AddFont(); + System.Windows.Xps.Packaging.XpsFont AddFont(bool obfuscate); + System.Windows.Xps.Packaging.XpsFont AddFont(bool obfuscate, bool addRestrictedRelationship); + System.Windows.Xps.Packaging.XpsImage AddImage(string mimeType); + System.Windows.Xps.Packaging.XpsImage AddImage(System.Windows.Xps.Packaging.XpsImageType imageType); + System.Windows.Xps.Packaging.XpsResource AddResource(System.Type resourceType, System.Uri resourceUri); + System.Windows.Xps.Packaging.XpsResourceDictionary AddResourceDictionary(); + System.Windows.Xps.Packaging.XpsThumbnail AddThumbnail(System.Windows.Xps.Packaging.XpsImageType imageType); + void Commit(); + } + public enum PackageInterleavingOrder + { + None = 0, + ResourceFirst = 1, + ResourceLast = 2, + ImagesLast = 3, + } + public enum PackagingAction + { + None = 0, + AddingDocumentSequence = 1, + DocumentSequenceCompleted = 2, + AddingFixedDocument = 3, + FixedDocumentCompleted = 4, + AddingFixedPage = 5, + FixedPageCompleted = 6, + ResourceAdded = 7, + FontAdded = 8, + ImageAdded = 9, + XpsDocumentCommitted = 10, + } + public partial class PackagingProgressEventArgs : System.EventArgs + { + public PackagingProgressEventArgs(System.Windows.Xps.Packaging.PackagingAction action, int numberCompleted) { } + public System.Windows.Xps.Packaging.PackagingAction Action { get { throw null; } } + public int NumberCompleted { get { throw null; } } + } + public delegate void PackagingProgressEventHandler(object sender, System.Windows.Xps.Packaging.PackagingProgressEventArgs e); + public partial class SpotLocation + { + public SpotLocation() { } + public System.Uri PageUri { get { throw null; } set { } } + public double StartX { get { throw null; } set { } } + public double StartY { get { throw null; } set { } } + } + public partial class XpsColorContext : System.Windows.Xps.Packaging.XpsResource + { + internal XpsColorContext() { } + } + public partial class XpsDigitalSignature + { + public XpsDigitalSignature(System.IO.Packaging.PackageDigitalSignature packageSignature, System.Windows.Xps.Packaging.XpsDocument package) { } + public bool DocumentPropertiesRestricted { get { throw null; } } + public System.Guid? Id { get { throw null; } } + public bool IsCertificateAvailable { get { throw null; } } + public bool SignatureOriginRestricted { get { throw null; } } + public string SignatureType { get { throw null; } } + public byte[] SignatureValue { get { throw null; } } + public System.Windows.Xps.Packaging.IXpsFixedDocumentSequenceReader SignedDocumentSequence { get { throw null; } } + public System.Security.Cryptography.X509Certificates.X509Certificate SignerCertificate { get { throw null; } } + public System.DateTime SigningTime { get { throw null; } } + public System.IO.Packaging.VerifyResult Verify() { throw null; } + public System.IO.Packaging.VerifyResult Verify(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { throw null; } + public System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate() { throw null; } + public static System.Security.Cryptography.X509Certificates.X509ChainStatusFlags VerifyCertificate(System.Security.Cryptography.X509Certificates.X509Certificate certificate) { throw null; } + } + [System.FlagsAttribute] + public enum XpsDigSigPartAlteringRestrictions + { + None = 0, + CoreMetadata = 1, + Annotations = 2, + SignatureOrigin = 4, + } + public partial class XpsDocument : System.Windows.Xps.Packaging.XpsPartBase, System.IDisposable + { + public XpsDocument(System.IO.Packaging.Package package) { } + public XpsDocument(System.IO.Packaging.Package package, System.IO.Packaging.CompressionOption compressionOption) { } + public XpsDocument(System.IO.Packaging.Package package, System.IO.Packaging.CompressionOption compressionOption, string path) { } + public XpsDocument(string path, System.IO.FileAccess packageAccess) { } + public XpsDocument(string path, System.IO.FileAccess packageAccess, System.IO.Packaging.CompressionOption compressionOption) { } + public System.IO.Packaging.PackageProperties CoreDocumentProperties { get { throw null; } } + public System.Windows.Xps.Packaging.IXpsFixedDocumentSequenceReader FixedDocumentSequenceReader { get { throw null; } } + public bool IsReader { get { throw null; } } + public bool IsSignable { get { throw null; } } + public bool IsWriter { get { throw null; } } + public System.Collections.ObjectModel.ReadOnlyCollection Signatures { get { throw null; } } + public System.Windows.Xps.Packaging.XpsThumbnail Thumbnail { get { throw null; } set { } } + public System.Windows.Xps.Packaging.IXpsFixedDocumentSequenceWriter AddFixedDocumentSequence() { throw null; } + public System.Windows.Xps.Packaging.XpsThumbnail AddThumbnail(System.Windows.Xps.Packaging.XpsImageType imageType) { throw null; } + public void Close() { } + public static System.Windows.Xps.XpsDocumentWriter CreateXpsDocumentWriter(System.Windows.Xps.Packaging.XpsDocument xpsDocument) { throw null; } + protected virtual void Dispose(bool disposing) { } + public System.Windows.Documents.FixedDocumentSequence GetFixedDocumentSequence() { throw null; } + public void RemoveSignature(System.Windows.Xps.Packaging.XpsDigitalSignature signature) { } + public System.Windows.Xps.Packaging.XpsDigitalSignature SignDigitally(System.Security.Cryptography.X509Certificates.X509Certificate certificate, bool embedCertificate, System.Windows.Xps.Packaging.XpsDigSigPartAlteringRestrictions restrictions) { throw null; } + public System.Windows.Xps.Packaging.XpsDigitalSignature SignDigitally(System.Security.Cryptography.X509Certificates.X509Certificate certificate, bool embedCertificate, System.Windows.Xps.Packaging.XpsDigSigPartAlteringRestrictions restrictions, System.Guid id) { throw null; } + public System.Windows.Xps.Packaging.XpsDigitalSignature SignDigitally(System.Security.Cryptography.X509Certificates.X509Certificate certificate, bool embedCertificate, System.Windows.Xps.Packaging.XpsDigSigPartAlteringRestrictions restrictions, System.Guid id, bool testIsSignable) { throw null; } + void System.IDisposable.Dispose() { } + } + public partial class XpsFont : System.Windows.Xps.Packaging.XpsResource + { + internal XpsFont() { } + public bool IsObfuscated { get { throw null; } } + public bool IsRestricted { get { throw null; } set { } } + public static void ObfuscateFontData(byte[] fontData, System.Guid guid) { } + } + public partial class XpsImage : System.Windows.Xps.Packaging.XpsResource + { + internal XpsImage() { } + } + public enum XpsImageType + { + PngImageType = 0, + JpegImageType = 1, + TiffImageType = 2, + WdpImageType = 3, + } + public abstract partial class XpsPartBase + { + internal XpsPartBase() { } + public System.Uri Uri { get { throw null; } set { } } + } + public partial class XpsResource : System.Windows.Xps.Packaging.XpsPartBase, System.IDisposable + { + internal XpsResource() { } + public void Commit() { } + public virtual System.IO.Stream GetStream() { throw null; } + public System.Uri RelativeUri(System.Uri inUri) { throw null; } + void System.IDisposable.Dispose() { } + } + public partial class XpsResourceDictionary : System.Windows.Xps.Packaging.XpsResource + { + internal XpsResourceDictionary() { } + } + public enum XpsResourceSharing + { + ShareResources = 0, + NoResourceSharing = 1, + } + public partial class XpsSignatureDefinition + { + public XpsSignatureDefinition() { } + public System.Globalization.CultureInfo Culture { get { throw null; } set { } } + public bool HasBeenModified { get { throw null; } set { } } + public string Intent { get { throw null; } set { } } + public string RequestedSigner { get { throw null; } set { } } + public System.DateTime? SignBy { get { throw null; } set { } } + public string SigningLocale { get { throw null; } set { } } + public System.Guid? SpotId { get { throw null; } set { } } + public System.Windows.Xps.Packaging.SpotLocation SpotLocation { get { throw null; } set { } } + } + public partial class XpsStructure : System.Windows.Xps.Packaging.XpsResource + { + internal XpsStructure() { } + } + public partial class XpsThumbnail : System.Windows.Xps.Packaging.XpsResource + { + internal XpsThumbnail() { } + } +} +namespace System.Windows.Xps.Serialization +{ + public abstract partial class BasePackagingPolicy : System.IDisposable + { + protected BasePackagingPolicy() { } + public abstract System.Uri CurrentFixedDocumentUri { get; } + public abstract System.Uri CurrentFixedPageUri { get; } + public abstract System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsColorContext(string resourceId); + public abstract System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsFont(); + public abstract System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsFont(string resourceId); + public abstract System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsImage(string resourceId); + public abstract System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsResourceDictionary(string resourceId); + public abstract System.Collections.Generic.IList AcquireStreamForLinkTargets(); + public abstract System.Xml.XmlWriter AcquireXmlWriterForFixedDocument(); + public abstract System.Xml.XmlWriter AcquireXmlWriterForFixedDocumentSequence(); + public abstract System.Xml.XmlWriter AcquireXmlWriterForFixedPage(); + public abstract System.Xml.XmlWriter AcquireXmlWriterForPage(); + public abstract System.Xml.XmlWriter AcquireXmlWriterForResourceDictionary(); + public abstract void PersistPrintTicket(System.Printing.PrintTicket printTicket); + public abstract void PreCommitCurrentPage(); + public abstract void RelateResourceToCurrentPage(System.Uri targetUri, string relationshipName); + public abstract void RelateRestrictedFontToCurrentDocument(System.Uri targetUri); + public abstract void ReleaseResourceStreamForXpsColorContext(); + public abstract void ReleaseResourceStreamForXpsFont(); + public abstract void ReleaseResourceStreamForXpsFont(string resourceId); + public abstract void ReleaseResourceStreamForXpsImage(); + public abstract void ReleaseResourceStreamForXpsResourceDictionary(); + public abstract void ReleaseXmlWriterForFixedDocument(); + public abstract void ReleaseXmlWriterForFixedDocumentSequence(); + public abstract void ReleaseXmlWriterForFixedPage(); + void System.IDisposable.Dispose() { } + } + public partial class ColorTypeConverter : System.ComponentModel.ExpandableObjectConverter + { + public ColorTypeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; } + public static string SerializeColorContext(System.IServiceProvider context, System.Windows.Media.ColorContext colorContext) { throw null; } + } + [System.FlagsAttribute] + public enum FontSubsetterCommitPolicies + { + None = 0, + CommitPerPage = 1, + CommitPerDocument = 2, + CommitEntireSequence = 3, + } + public partial class FontTypeConverter : System.ComponentModel.ExpandableObjectConverter + { + public FontTypeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; } + } + public partial class ImageSourceTypeConverter : System.ComponentModel.ExpandableObjectConverter + { + public ImageSourceTypeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + [System.Security.SecurityTreatAsSafeAttribute] + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; } + } + public abstract partial class PackageSerializationManager : System.IDisposable + { + protected PackageSerializationManager() { } + public abstract void SaveAsXaml(object serializedObject); + void System.IDisposable.Dispose() { } + } + public enum PrintTicketLevel + { + None = 0, + FixedDocumentSequencePrintTicket = 1, + FixedDocumentPrintTicket = 2, + FixedPagePrintTicket = 3, + } + public enum SerializationState + { + Normal = 0, + Stop = 1, + } + public partial class XpsPackagingPolicy : System.Windows.Xps.Serialization.BasePackagingPolicy + { + public XpsPackagingPolicy(System.Windows.Xps.Packaging.XpsDocument xpsPackage) { } + public XpsPackagingPolicy(System.Windows.Xps.Packaging.XpsDocument xpsPackage, System.Windows.Xps.Packaging.PackageInterleavingOrder interleavingType) { } + public override System.Uri CurrentFixedDocumentUri { get { throw null; } } + public override System.Uri CurrentFixedPageUri { get { throw null; } } + public event System.Windows.Xps.Packaging.PackagingProgressEventHandler PackagingProgressEvent { add { } remove { } } + public override System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsColorContext(string resourceId) { throw null; } + public override System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsFont() { throw null; } + public override System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsFont(string resourceId) { throw null; } + public override System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsImage(string resourceId) { throw null; } + public override System.Windows.Xps.Serialization.XpsResourceStream AcquireResourceStreamForXpsResourceDictionary(string resourceId) { throw null; } + public override System.Collections.Generic.IList AcquireStreamForLinkTargets() { throw null; } + public override System.Xml.XmlWriter AcquireXmlWriterForFixedDocument() { throw null; } + public override System.Xml.XmlWriter AcquireXmlWriterForFixedDocumentSequence() { throw null; } + public override System.Xml.XmlWriter AcquireXmlWriterForFixedPage() { throw null; } + public override System.Xml.XmlWriter AcquireXmlWriterForPage() { throw null; } + public override System.Xml.XmlWriter AcquireXmlWriterForResourceDictionary() { throw null; } + public override void PersistPrintTicket(System.Printing.PrintTicket printTicket) { } + public override void PreCommitCurrentPage() { } + public override void RelateResourceToCurrentPage(System.Uri targetUri, string relationshipName) { } + public override void RelateRestrictedFontToCurrentDocument(System.Uri targetUri) { } + public override void ReleaseResourceStreamForXpsColorContext() { } + public override void ReleaseResourceStreamForXpsFont() { } + public override void ReleaseResourceStreamForXpsFont(string resourceId) { } + public override void ReleaseResourceStreamForXpsImage() { } + public override void ReleaseResourceStreamForXpsResourceDictionary() { } + public override void ReleaseXmlWriterForFixedDocument() { } + public override void ReleaseXmlWriterForFixedDocumentSequence() { } + public override void ReleaseXmlWriterForFixedPage() { } + } + public partial class XpsResourceStream + { + public XpsResourceStream(System.IO.Stream stream, System.Uri uri) { } + public System.IO.Stream Stream { get { throw null; } } + public System.Uri Uri { get { throw null; } } + public void Initialize() { } + } + public partial class XpsSerializationCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs + { + public XpsSerializationCompletedEventArgs(bool canceled, object state, System.Exception exception) : base (default(System.Exception), default(bool), default(object)) { } + } + public delegate void XpsSerializationCompletedEventHandler(object sender, System.Windows.Xps.Serialization.XpsSerializationCompletedEventArgs e); + public partial class XpsSerializationManager : System.Windows.Xps.Serialization.PackageSerializationManager + { + public XpsSerializationManager(System.Windows.Xps.Serialization.BasePackagingPolicy packagingPolicy, bool batchMode) { } + public bool IsBatchMode { get { throw null; } } + public event System.Windows.Xps.Serialization.XpsSerializationPrintTicketRequiredEventHandler XpsSerializationPrintTicketRequired { add { } remove { } } + public event System.Windows.Xps.Serialization.XpsSerializationProgressChangedEventHandler XpsSerializationProgressChanged { add { } remove { } } + public virtual void Commit() { } + public override void SaveAsXaml(object serializedObject) { } + public void SetFontSubsettingCountPolicy(int countPolicy) { } + public void SetFontSubsettingPolicy(System.Windows.Xps.Serialization.FontSubsetterCommitPolicies policy) { } + } + public sealed partial class XpsSerializationManagerAsync : System.Windows.Xps.Serialization.XpsSerializationManager + { + public XpsSerializationManagerAsync(System.Windows.Xps.Serialization.BasePackagingPolicy packagingPolicy, bool batchMode) : base (default(System.Windows.Xps.Serialization.BasePackagingPolicy), default(bool)) { } + public event System.Windows.Xps.Serialization.XpsSerializationCompletedEventHandler XpsSerializationCompleted { add { } remove { } } + public void CancelAsync() { } + public override void Commit() { } + public override void SaveAsXaml(object serializedObject) { } + } + public partial class XpsSerializationPrintTicketRequiredEventArgs : System.EventArgs + { + public XpsSerializationPrintTicketRequiredEventArgs(System.Windows.Xps.Serialization.PrintTicketLevel printTicketLevel, int sequence) { } + public System.Printing.PrintTicket PrintTicket { get { throw null; } set { } } + public System.Windows.Xps.Serialization.PrintTicketLevel PrintTicketLevel { get { throw null; } } + public int Sequence { get { throw null; } } + } + public delegate void XpsSerializationPrintTicketRequiredEventHandler(object sender, System.Windows.Xps.Serialization.XpsSerializationPrintTicketRequiredEventArgs e); + public partial class XpsSerializationProgressChangedEventArgs : System.ComponentModel.ProgressChangedEventArgs + { + public XpsSerializationProgressChangedEventArgs(System.Windows.Xps.Serialization.XpsWritingProgressChangeLevel writingLevel, int pageNumber, int progressPercentage, object userToken) : base (default(int), default(object)) { } + public int PageNumber { get { throw null; } } + public System.Windows.Xps.Serialization.XpsWritingProgressChangeLevel WritingLevel { get { throw null; } } + } + public delegate void XpsSerializationProgressChangedEventHandler(object sender, System.Windows.Xps.Serialization.XpsSerializationProgressChangedEventArgs e); + public sealed partial class XpsSerializerFactory : System.Windows.Documents.Serialization.ISerializerFactory + { + public XpsSerializerFactory() { } + public string DefaultFileExtension { get { throw null; } } + public string DisplayName { get { throw null; } } + public string ManufacturerName { get { throw null; } } + public System.Uri ManufacturerWebsite { get { throw null; } } + public System.Windows.Documents.Serialization.SerializerWriter CreateSerializerWriter(System.IO.Stream stream) { throw null; } + } + public enum XpsWritingProgressChangeLevel + { + None = 0, + FixedDocumentSequenceWritingProgress = 1, + FixedDocumentWritingProgress = 2, + FixedPageWritingProgress = 3, + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Input/Command/ICommand.cs b/src/Microsoft.DotNet.Wpf/src/Shared/ref/AttributesForReferenceAssemblies.cs similarity index 74% rename from src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Input/Command/ICommand.cs rename to src/Microsoft.DotNet.Wpf/src/Shared/ref/AttributesForReferenceAssemblies.cs index b684a88e8ad..7693c231138 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Input/Command/ICommand.cs +++ b/src/Microsoft.DotNet.Wpf/src/Shared/ref/AttributesForReferenceAssemblies.cs @@ -3,8 +3,9 @@ // See the LICENSE file in the project root for more information. // +// This file specifies various assembly level attributes. // using System.Runtime.CompilerServices; -[assembly:TypeForwardedTo(typeof(System.Windows.Input.ICommand))] +[assembly: ReferenceAssembly] diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj index 36ba0fe464d..cad812beaca 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/System.Windows.Input.Manipulations.csproj @@ -43,4 +43,10 @@ + + + false + + + diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj new file mode 100644 index 00000000000..dfcb8b174fc --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations-ref.csproj @@ -0,0 +1,23 @@ + + + System.Windows.Input.Manipulations + System.Windows.Input.Manipulations-ref + $(TargetGroup)-$(PackageId)/ + netcoreapp3.0 + AnyCPU;x64 + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations.cs b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations.cs new file mode 100644 index 00000000000..f4febdd71fc --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/System.Windows.Input.Manipulations/ref/System.Windows.Input.Manipulations.cs @@ -0,0 +1,140 @@ +namespace System.Windows.Input.Manipulations +{ + public sealed partial class InertiaExpansionBehavior2D : System.Windows.Input.Manipulations.InertiaParameters2D + { + public InertiaExpansionBehavior2D() { } + public float DesiredDeceleration { get { throw null; } set { } } + public float DesiredExpansionX { get { throw null; } set { } } + public float DesiredExpansionY { get { throw null; } set { } } + public float InitialRadius { get { throw null; } set { } } + public float InitialVelocityX { get { throw null; } set { } } + public float InitialVelocityY { get { throw null; } set { } } + } + public abstract partial class InertiaParameters2D + { + internal InertiaParameters2D() { } + } + public partial class InertiaProcessor2D + { + public InertiaProcessor2D() { } + public System.Windows.Input.Manipulations.InertiaExpansionBehavior2D ExpansionBehavior { get { throw null; } set { } } + public float InitialOriginX { get { throw null; } set { } } + public float InitialOriginY { get { throw null; } set { } } + public bool IsRunning { get { throw null; } } + public System.Windows.Input.Manipulations.InertiaRotationBehavior2D RotationBehavior { get { throw null; } set { } } + public System.Windows.Input.Manipulations.InertiaTranslationBehavior2D TranslationBehavior { get { throw null; } set { } } + public event System.EventHandler Completed { add { } remove { } } + public event System.EventHandler Delta { add { } remove { } } + public void Complete(long timestamp) { } + public bool Process(long timestamp) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public void SetParameters(System.Windows.Input.Manipulations.InertiaParameters2D parameters) { } + } + public sealed partial class InertiaRotationBehavior2D : System.Windows.Input.Manipulations.InertiaParameters2D + { + public InertiaRotationBehavior2D() { } + public float DesiredDeceleration { get { throw null; } set { } } + public float DesiredRotation { get { throw null; } set { } } + public float InitialVelocity { get { throw null; } set { } } + } + public sealed partial class InertiaTranslationBehavior2D : System.Windows.Input.Manipulations.InertiaParameters2D + { + public InertiaTranslationBehavior2D() { } + public float DesiredDeceleration { get { throw null; } set { } } + public float DesiredDisplacement { get { throw null; } set { } } + public float InitialVelocityX { get { throw null; } set { } } + public float InitialVelocityY { get { throw null; } set { } } + } + public partial class Manipulation2DCompletedEventArgs : System.EventArgs + { + internal Manipulation2DCompletedEventArgs() { } + public float OriginX { get { throw null; } } + public float OriginY { get { throw null; } } + public System.Windows.Input.Manipulations.ManipulationDelta2D Total { get { throw null; } } + public System.Windows.Input.Manipulations.ManipulationVelocities2D Velocities { get { throw null; } } + } + public partial class Manipulation2DDeltaEventArgs : System.EventArgs + { + internal Manipulation2DDeltaEventArgs() { } + public System.Windows.Input.Manipulations.ManipulationDelta2D Cumulative { get { throw null; } } + public System.Windows.Input.Manipulations.ManipulationDelta2D Delta { get { throw null; } } + public float OriginX { get { throw null; } } + public float OriginY { get { throw null; } } + public System.Windows.Input.Manipulations.ManipulationVelocities2D Velocities { get { throw null; } } + } + public partial class Manipulation2DStartedEventArgs : System.EventArgs + { + internal Manipulation2DStartedEventArgs() { } + public float OriginX { get { throw null; } } + public float OriginY { get { throw null; } } + } + public partial class ManipulationDelta2D + { + internal ManipulationDelta2D() { } + public float ExpansionX { get { throw null; } } + public float ExpansionY { get { throw null; } } + public float Rotation { get { throw null; } } + public float ScaleX { get { throw null; } } + public float ScaleY { get { throw null; } } + public float TranslationX { get { throw null; } } + public float TranslationY { get { throw null; } } + } + public abstract partial class ManipulationParameters2D + { + internal ManipulationParameters2D() { } + } + public sealed partial class ManipulationPivot2D : System.Windows.Input.Manipulations.ManipulationParameters2D + { + public ManipulationPivot2D() { } + public float Radius { get { throw null; } set { } } + public float X { get { throw null; } set { } } + public float Y { get { throw null; } set { } } + } + public partial class ManipulationProcessor2D + { + public ManipulationProcessor2D(System.Windows.Input.Manipulations.Manipulations2D supportedManipulations) { } + public ManipulationProcessor2D(System.Windows.Input.Manipulations.Manipulations2D supportedManipulations, System.Windows.Input.Manipulations.ManipulationPivot2D pivot) { } + public float MinimumScaleRotateRadius { get { throw null; } set { } } + public System.Windows.Input.Manipulations.ManipulationPivot2D Pivot { get { throw null; } set { } } + public System.Windows.Input.Manipulations.Manipulations2D SupportedManipulations { get { throw null; } set { } } + public event System.EventHandler Completed { add { } remove { } } + public event System.EventHandler Delta { add { } remove { } } + public event System.EventHandler Started { add { } remove { } } + public void CompleteManipulation(long timestamp) { } + public void ProcessManipulators(long timestamp, System.Collections.Generic.IEnumerable manipulators) { } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public void SetParameters(System.Windows.Input.Manipulations.ManipulationParameters2D parameters) { } + } + [System.FlagsAttribute] + public enum Manipulations2D + { + None = 0, + TranslateX = 1, + TranslateY = 2, + Translate = 3, + Scale = 4, + Rotate = 8, + All = 15, + } + public partial class ManipulationVelocities2D + { + internal ManipulationVelocities2D() { } + public static readonly System.Windows.Input.Manipulations.ManipulationVelocities2D Zero; + public float AngularVelocity { get { throw null; } } + public float ExpansionVelocityX { get { throw null; } } + public float ExpansionVelocityY { get { throw null; } } + public float LinearVelocityX { get { throw null; } } + public float LinearVelocityY { get { throw null; } } + } + public partial struct Manipulator2D + { + public Manipulator2D(int id, float x, float y) { throw null; } + public int Id { get { throw null; } set { } } + public float X { get { throw null; } set { } } + public float Y { get { throw null; } set { } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Windows.Input.Manipulations.Manipulator2D manipulator1, System.Windows.Input.Manipulations.Manipulator2D manipulator2) { throw null; } + public static bool operator !=(System.Windows.Input.Manipulations.Manipulator2D manipulator1, System.Windows.Input.Manipulations.Manipulator2D manipulator2) { throw null; } + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj index ccb87d871e7..3ccca354fd9 100644 --- a/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/System.Xaml.csproj @@ -82,7 +82,8 @@ - + + @@ -121,4 +122,9 @@ + + + false + + diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj new file mode 100644 index 00000000000..b068208c3e1 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml-ref.csproj @@ -0,0 +1,54 @@ + + + System.Xaml + System.Xaml-ref + $(TargetGroup)-$(PackageId)/ + netcoreapp3.0 + AnyCPU;x64 + $(NoWarn);0618;NU5125;0618 + $(DefineConstants);OLDRESOURCES;SYSTEM_XAML + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml.cs b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml.cs new file mode 100644 index 00000000000..33151bf7cfd --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/System.Xaml/ref/System.Xaml.cs @@ -0,0 +1,1109 @@ +namespace System.Windows.Markup +{ + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)] + [System.ObsoleteAttribute("This is not used by the XAML parser. Please look at XamlSetMarkupExtensionAttribute.")] + public partial class AcceptedMarkupExtensionExpressionTypeAttribute : System.Attribute + { + public AcceptedMarkupExtensionExpressionTypeAttribute(System.Type type) { } + public System.Type Type { get { throw null; } set { } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Method | System.AttributeTargets.Property, Inherited=true)] + public sealed partial class AmbientAttribute : System.Attribute + { + public AmbientAttribute() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Items")] + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Array))] + public partial class ArrayExtension : System.Windows.Markup.MarkupExtension + { + public ArrayExtension() { } + public ArrayExtension(System.Array elements) { } + public ArrayExtension(System.Type arrayType) { } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Content)] + public System.Collections.IList Items { get { throw null; } } + [System.Windows.Markup.ConstructorArgumentAttribute("type")] + public System.Type Type { get { throw null; } set { } } + public void AddChild(object value) { } + public void AddText(string text) { } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Property, AllowMultiple=false, Inherited=false)] + public sealed partial class ConstructorArgumentAttribute : System.Attribute + { + public ConstructorArgumentAttribute(string argumentName) { } + public string ArgumentName { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class ContentPropertyAttribute : System.Attribute + { + public ContentPropertyAttribute() { } + public ContentPropertyAttribute(string name) { } + public string Name { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)] + public sealed partial class ContentWrapperAttribute : System.Attribute + { + public ContentWrapperAttribute(System.Type contentWrapper) { } + public System.Type ContentWrapper { get { throw null; } } + public override object TypeId { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } + public partial class DateTimeValueSerializer : System.Windows.Markup.ValueSerializer + { + public DateTimeValueSerializer() { } + public override bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public override string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Method | System.AttributeTargets.Property, AllowMultiple=true)] + public sealed partial class DependsOnAttribute : System.Attribute + { + public DependsOnAttribute(string name) { } + public string Name { get { throw null; } } + public override object TypeId { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class DictionaryKeyPropertyAttribute : System.Attribute + { + public DictionaryKeyPropertyAttribute(string name) { } + public string Name { get { throw null; } } + } + public partial interface IComponentConnector + { + void Connect(int connectionId, object target); + void InitializeComponent(); + } + public partial interface INameScope + { + object FindName(string name); + void RegisterName(string name, object scopedElement); + void UnregisterName(string name); + } + public partial interface INameScopeDictionary : System.Collections.Generic.ICollection>, System.Collections.Generic.IDictionary, System.Collections.Generic.IEnumerable>, System.Collections.IEnumerable, System.Windows.Markup.INameScope + { + } + public partial interface IProvideValueTarget + { + object TargetObject { get; } + object TargetProperty { get; } + } + public partial interface IQueryAmbient + { + bool IsAmbientPropertyAvailable(string propertyName); + } + public partial interface IUriContext + { + System.Uri BaseUri { get; set; } + } + public partial interface IValueSerializerContext : System.ComponentModel.ITypeDescriptorContext, System.IServiceProvider + { + System.Windows.Markup.ValueSerializer GetValueSerializerFor(System.ComponentModel.PropertyDescriptor descriptor); + System.Windows.Markup.ValueSerializer GetValueSerializerFor(System.Type type); + } + public partial interface IXamlTypeResolver + { + System.Type Resolve(string qualifiedTypeName); + } + public abstract partial class MarkupExtension + { + protected MarkupExtension() { } + public abstract object ProvideValue(System.IServiceProvider serviceProvider); + } + [System.AttributeUsageAttribute(System.AttributeTargets.Property, AllowMultiple=true, Inherited=false)] + public sealed partial class MarkupExtensionBracketCharactersAttribute : System.Attribute + { + public MarkupExtensionBracketCharactersAttribute(char openingBracket, char closingBracket) { } + public char ClosingBracket { get { throw null; } } + public char OpeningBracket { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class MarkupExtensionReturnTypeAttribute : System.Attribute + { + public MarkupExtensionReturnTypeAttribute() { } + public MarkupExtensionReturnTypeAttribute(System.Type returnType) { } + [System.ObsoleteAttribute("The expressionType argument is not used by the XAML parser. To specify the expected return type, use MarkupExtensionReturnTypeAttribute(Type). To specify custom handling for expression types, use XamlSetMarkupExtensionAttribute.")] + public MarkupExtensionReturnTypeAttribute(System.Type returnType, System.Type expressionType) { } + [System.ObsoleteAttribute("This is not used by the XAML parser. Please look at XamlSetMarkupExtensionAttribute.")] + public System.Type ExpressionType { get { throw null; } } + public System.Type ReturnType { get { throw null; } } + } + public abstract partial class MemberDefinition + { + protected MemberDefinition() { } + public abstract string Name { get; set; } + } + public partial class NameReferenceConverter : System.ComponentModel.TypeConverter + { + public NameReferenceConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class NameScopePropertyAttribute : System.Attribute + { + public NameScopePropertyAttribute(string name) { } + public NameScopePropertyAttribute(string name, System.Type type) { } + public string Name { get { throw null; } } + public System.Type Type { get { throw null; } } + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public partial class NullExtension : System.Windows.Markup.MarkupExtension + { + public NullExtension() { } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + public partial class PropertyDefinition : System.Windows.Markup.MemberDefinition + { + public PropertyDefinition() { } + public System.Collections.Generic.IList Attributes { get { throw null; } } + [System.ComponentModel.DefaultValueAttribute(null)] + public string Modifier { get { throw null; } set { } } + public override string Name { get { throw null; } set { } } + [System.ComponentModel.TypeConverterAttribute(typeof(System.Xaml.Schema.XamlTypeTypeConverter))] + public System.Xaml.XamlType Type { get { throw null; } set { } } + } + [System.Windows.Markup.ContentPropertyAttribute("Name")] + public partial class Reference : System.Windows.Markup.MarkupExtension + { + public Reference() { } + public Reference(string name) { } + [System.Windows.Markup.ConstructorArgumentAttribute("name")] + public string Name { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)] + public sealed partial class RootNamespaceAttribute : System.Attribute + { + public RootNamespaceAttribute(string nameSpace) { } + public string Namespace { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class)] + public sealed partial class RuntimeNamePropertyAttribute : System.Attribute + { + public RuntimeNamePropertyAttribute(string name) { } + public string Name { get { throw null; } } + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(object))] + public partial class StaticExtension : System.Windows.Markup.MarkupExtension + { + public StaticExtension() { } + public StaticExtension(string member) { } + [System.Windows.Markup.ConstructorArgumentAttribute("member")] + public string Member { get { throw null; } set { } } + [System.ComponentModel.DefaultValueAttribute(null)] + public System.Type MemberType { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class TrimSurroundingWhitespaceAttribute : System.Attribute + { + public TrimSurroundingWhitespaceAttribute() { } + } + [System.Windows.Markup.MarkupExtensionReturnTypeAttribute(typeof(System.Type))] + public partial class TypeExtension : System.Windows.Markup.MarkupExtension + { + public TypeExtension() { } + public TypeExtension(string typeName) { } + public TypeExtension(System.Type type) { } + [System.ComponentModel.DefaultValueAttribute(null)] + [System.Windows.Markup.ConstructorArgumentAttribute("type")] + public System.Type Type { get { throw null; } set { } } + [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)] + public string TypeName { get { throw null; } set { } } + public override object ProvideValue(System.IServiceProvider serviceProvider) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] + public sealed partial class UidPropertyAttribute : System.Attribute + { + public UidPropertyAttribute(string name) { } + public string Name { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class UsableDuringInitializationAttribute : System.Attribute + { + public UsableDuringInitializationAttribute(bool usable) { } + public bool Usable { get { throw null; } } + } + public abstract partial class ValueSerializer + { + protected ValueSerializer() { } + public virtual bool CanConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public virtual bool CanConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public virtual object ConvertFromString(string value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public virtual string ConvertToString(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + protected System.Exception GetConvertFromException(object value) { throw null; } + protected System.Exception GetConvertToException(object value, System.Type destinationType) { throw null; } + public static System.Windows.Markup.ValueSerializer GetSerializerFor(System.ComponentModel.PropertyDescriptor descriptor) { throw null; } + public static System.Windows.Markup.ValueSerializer GetSerializerFor(System.ComponentModel.PropertyDescriptor descriptor, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public static System.Windows.Markup.ValueSerializer GetSerializerFor(System.Type type) { throw null; } + public static System.Windows.Markup.ValueSerializer GetSerializerFor(System.Type type, System.Windows.Markup.IValueSerializerContext context) { throw null; } + public virtual System.Collections.Generic.IEnumerable TypeReferences(object value, System.Windows.Markup.IValueSerializerContext context) { throw null; } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)] + public sealed partial class WhitespaceSignificantCollectionAttribute : System.Attribute + { + public WhitespaceSignificantCollectionAttribute() { } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)] + public sealed partial class XamlDeferLoadAttribute : System.Attribute + { + public XamlDeferLoadAttribute(string loaderType, string contentType) { } + public XamlDeferLoadAttribute(System.Type loaderType, System.Type contentType) { } + public System.Type ContentType { get { throw null; } } + public string ContentTypeName { get { throw null; } } + public System.Type LoaderType { get { throw null; } } + public string LoaderTypeName { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true, AllowMultiple=false)] + public sealed partial class XamlSetMarkupExtensionAttribute : System.Attribute + { + public XamlSetMarkupExtensionAttribute(string xamlSetMarkupExtensionHandler) { } + public string XamlSetMarkupExtensionHandler { get { throw null; } } + } + public partial class XamlSetMarkupExtensionEventArgs : System.Windows.Markup.XamlSetValueEventArgs + { + public XamlSetMarkupExtensionEventArgs(System.Xaml.XamlMember member, System.Windows.Markup.MarkupExtension value, System.IServiceProvider serviceProvider) : base (default(System.Xaml.XamlMember), default(object)) { } + public System.Windows.Markup.MarkupExtension MarkupExtension { get { throw null; } } + public System.IServiceProvider ServiceProvider { get { throw null; } } + public override void CallBase() { } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true, AllowMultiple=false)] + public sealed partial class XamlSetTypeConverterAttribute : System.Attribute + { + public XamlSetTypeConverterAttribute(string xamlSetTypeConverterHandler) { } + public string XamlSetTypeConverterHandler { get { throw null; } } + } + public partial class XamlSetTypeConverterEventArgs : System.Windows.Markup.XamlSetValueEventArgs + { + public XamlSetTypeConverterEventArgs(System.Xaml.XamlMember member, System.ComponentModel.TypeConverter typeConverter, object value, System.ComponentModel.ITypeDescriptorContext serviceProvider, System.Globalization.CultureInfo cultureInfo) : base (default(System.Xaml.XamlMember), default(object)) { } + public System.Globalization.CultureInfo CultureInfo { get { throw null; } } + public System.ComponentModel.ITypeDescriptorContext ServiceProvider { get { throw null; } } + public System.ComponentModel.TypeConverter TypeConverter { get { throw null; } } + public override void CallBase() { } + } + public partial class XamlSetValueEventArgs : System.EventArgs + { + public XamlSetValueEventArgs(System.Xaml.XamlMember member, object value) { } + public bool Handled { get { throw null; } set { } } + public System.Xaml.XamlMember Member { get { throw null; } } + public object Value { get { throw null; } } + public virtual void CallBase() { } + } + [System.Windows.Markup.ContentPropertyAttribute("Text")] + public sealed partial class XData + { + public XData() { } + public string Text { get { throw null; } set { } } + public object XmlReader { get { throw null; } set { } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=false)] + public sealed partial class XmlLangPropertyAttribute : System.Attribute + { + public XmlLangPropertyAttribute(string name) { } + public string Name { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)] + public sealed partial class XmlnsCompatibleWithAttribute : System.Attribute + { + public XmlnsCompatibleWithAttribute(string oldNamespace, string newNamespace) { } + public string NewNamespace { get { throw null; } } + public string OldNamespace { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)] + public sealed partial class XmlnsDefinitionAttribute : System.Attribute + { + public XmlnsDefinitionAttribute(string xmlNamespace, string clrNamespace) { } + public string AssemblyName { get { throw null; } set { } } + public string ClrNamespace { get { throw null; } } + public string XmlNamespace { get { throw null; } } + } + [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, AllowMultiple=true)] + public sealed partial class XmlnsPrefixAttribute : System.Attribute + { + public XmlnsPrefixAttribute(string xmlNamespace, string prefix) { } + public string Prefix { get { throw null; } } + public string XmlNamespace { get { throw null; } } + } +} +namespace System.Xaml +{ + public partial class AmbientPropertyValue + { + public AmbientPropertyValue(System.Xaml.XamlMember property, object value) { } + public System.Xaml.XamlMember RetrievedProperty { get { throw null; } } + public object Value { get { throw null; } } + } + public partial class AttachableMemberIdentifier : System.IEquatable + { + public AttachableMemberIdentifier(System.Type declaringType, string memberName) { } + public System.Type DeclaringType { get { throw null; } } + public string MemberName { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Xaml.AttachableMemberIdentifier other) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Xaml.AttachableMemberIdentifier left, System.Xaml.AttachableMemberIdentifier right) { throw null; } + public static bool operator !=(System.Xaml.AttachableMemberIdentifier left, System.Xaml.AttachableMemberIdentifier right) { throw null; } + public override string ToString() { throw null; } + } + public static partial class AttachablePropertyServices + { + public static void CopyPropertiesTo(object instance, System.Collections.Generic.KeyValuePair[] array, int index) { } + public static int GetAttachedPropertyCount(object instance) { throw null; } + public static bool RemoveProperty(object instance, System.Xaml.AttachableMemberIdentifier name) { throw null; } + public static void SetProperty(object instance, System.Xaml.AttachableMemberIdentifier name, object value) { } + public static bool TryGetProperty(object instance, System.Xaml.AttachableMemberIdentifier name, out object value) { throw null; } + public static bool TryGetProperty(object instance, System.Xaml.AttachableMemberIdentifier name, out T value) { throw null; } + } + public partial interface IAmbientProvider + { + System.Collections.Generic.IEnumerable GetAllAmbientValues(System.Collections.Generic.IEnumerable ceilingTypes, bool searchLiveStackOnly, System.Collections.Generic.IEnumerable types, params System.Xaml.XamlMember[] properties); + System.Collections.Generic.IEnumerable GetAllAmbientValues(System.Collections.Generic.IEnumerable ceilingTypes, params System.Xaml.XamlMember[] properties); + System.Collections.Generic.IEnumerable GetAllAmbientValues(params System.Xaml.XamlType[] types); + System.Xaml.AmbientPropertyValue GetFirstAmbientValue(System.Collections.Generic.IEnumerable ceilingTypes, params System.Xaml.XamlMember[] properties); + object GetFirstAmbientValue(params System.Xaml.XamlType[] types); + } + public partial interface IAttachedPropertyStore + { + int PropertyCount { get; } + void CopyPropertiesTo(System.Collections.Generic.KeyValuePair[] array, int index); + bool RemoveProperty(System.Xaml.AttachableMemberIdentifier attachableMemberIdentifier); + void SetProperty(System.Xaml.AttachableMemberIdentifier attachableMemberIdentifier, object value); + bool TryGetProperty(System.Xaml.AttachableMemberIdentifier attachableMemberIdentifier, out object value); + } + public partial interface IDestinationTypeProvider + { + System.Type GetDestinationType(); + } + public partial interface INamespacePrefixLookup + { + string LookupPrefix(string ns); + } + public partial interface IRootObjectProvider + { + object RootObject { get; } + } + public partial interface IXamlIndexingReader + { + int Count { get; } + int CurrentIndex { get; set; } + } + public partial interface IXamlLineInfo + { + bool HasLineInfo { get; } + int LineNumber { get; } + int LinePosition { get; } + } + public partial interface IXamlLineInfoConsumer + { + bool ShouldProvideLineInfo { get; } + void SetLineInfo(int lineNumber, int linePosition); + } + public partial interface IXamlNameProvider + { + string GetName(object value); + } + public partial interface IXamlNameResolver + { + bool IsFixupTokenAvailable { get; } + event System.EventHandler OnNameScopeInitializationComplete; + System.Collections.Generic.IEnumerable> GetAllNamesAndValuesInScope(); + object GetFixupToken(System.Collections.Generic.IEnumerable names); + object GetFixupToken(System.Collections.Generic.IEnumerable names, bool canAssignDirectly); + object Resolve(string name); + object Resolve(string name, out bool isFullyInitialized); + } + public partial interface IXamlNamespaceResolver + { + string GetNamespace(string prefix); + System.Collections.Generic.IEnumerable GetNamespacePrefixes(); + } + public partial interface IXamlObjectWriterFactory + { + System.Xaml.XamlObjectWriterSettings GetParentSettings(); + System.Xaml.XamlObjectWriter GetXamlObjectWriter(System.Xaml.XamlObjectWriterSettings settings); + } + public partial interface IXamlSchemaContextProvider + { + System.Xaml.XamlSchemaContext SchemaContext { get; } + } + public partial class NamespaceDeclaration + { + public NamespaceDeclaration(string ns, string prefix) { } + public string Namespace { get { throw null; } } + public string Prefix { get { throw null; } } + } + public partial class XamlBackgroundReader : System.Xaml.XamlReader, System.Xaml.IXamlLineInfo + { + public XamlBackgroundReader(System.Xaml.XamlReader wrappedReader) { } + public bool HasLineInfo { get { throw null; } } + public override bool IsEof { get { throw null; } } + public int LineNumber { get { throw null; } } + public int LinePosition { get { throw null; } } + public override System.Xaml.XamlMember Member { get { throw null; } } + public override System.Xaml.NamespaceDeclaration Namespace { get { throw null; } } + public override System.Xaml.XamlNodeType NodeType { get { throw null; } } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public override System.Xaml.XamlType Type { get { throw null; } } + public override object Value { get { throw null; } } + protected override void Dispose(bool disposing) { } + public override bool Read() { throw null; } + public void StartThread() { } + public void StartThread(string threadName) { } + } + public abstract partial class XamlDeferringLoader + { + protected XamlDeferringLoader() { } + public abstract object Load(System.Xaml.XamlReader xamlReader, System.IServiceProvider serviceProvider); + public abstract System.Xaml.XamlReader Save(object value, System.IServiceProvider serviceProvider); + } + public partial class XamlDirective : System.Xaml.XamlMember + { + public XamlDirective(System.Collections.Generic.IEnumerable xamlNamespaces, string name, System.Xaml.XamlType xamlType, System.Xaml.Schema.XamlValueConverter typeConverter, System.Xaml.Schema.AllowedMemberLocations allowedLocation) : base (default(string), default(System.Xaml.XamlType), default(bool)) { } + public XamlDirective(string xamlNamespace, string name) : base (default(string), default(System.Xaml.XamlType), default(bool)) { } + public System.Xaml.Schema.AllowedMemberLocations AllowedLocation { get { throw null; } } + public override int GetHashCode() { throw null; } + public override System.Collections.Generic.IList GetXamlNamespaces() { throw null; } + protected sealed override System.Reflection.ICustomAttributeProvider LookupCustomAttributeProvider() { throw null; } + protected sealed override System.Xaml.Schema.XamlValueConverter LookupDeferringLoader() { throw null; } + protected sealed override System.Collections.Generic.IList LookupDependsOn() { throw null; } + protected sealed override System.Xaml.Schema.XamlMemberInvoker LookupInvoker() { throw null; } + protected sealed override bool LookupIsAmbient() { throw null; } + protected sealed override bool LookupIsEvent() { throw null; } + protected sealed override bool LookupIsReadOnly() { throw null; } + protected sealed override bool LookupIsReadPublic() { throw null; } + protected sealed override bool LookupIsUnknown() { throw null; } + protected sealed override bool LookupIsWriteOnly() { throw null; } + protected sealed override bool LookupIsWritePublic() { throw null; } + protected sealed override System.Xaml.XamlType LookupTargetType() { throw null; } + protected sealed override System.Xaml.XamlType LookupType() { throw null; } + protected sealed override System.Xaml.Schema.XamlValueConverter LookupTypeConverter() { throw null; } + protected sealed override System.Reflection.MethodInfo LookupUnderlyingGetter() { throw null; } + protected sealed override System.Reflection.MemberInfo LookupUnderlyingMember() { throw null; } + protected sealed override System.Reflection.MethodInfo LookupUnderlyingSetter() { throw null; } + public override string ToString() { throw null; } + } + public partial class XamlDuplicateMemberException : System.Xaml.XamlException + { + public XamlDuplicateMemberException() { } + protected XamlDuplicateMemberException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlDuplicateMemberException(string message) { } + public XamlDuplicateMemberException(string message, System.Exception innerException) { } + public XamlDuplicateMemberException(System.Xaml.XamlMember member, System.Xaml.XamlType type) { } + public System.Xaml.XamlMember DuplicateMember { get { throw null; } set { } } + public System.Xaml.XamlType ParentType { get { throw null; } set { } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class XamlException : System.Exception + { + public XamlException() { } + protected XamlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlException(string message) { } + public XamlException(string message, System.Exception innerException) { } + public XamlException(string message, System.Exception innerException, int lineNumber, int linePosition) { } + public int LineNumber { get { throw null; } protected set { } } + public int LinePosition { get { throw null; } protected set { } } + public override string Message { get { throw null; } } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class XamlInternalException : System.Xaml.XamlException + { + public XamlInternalException() { } + protected XamlInternalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlInternalException(string message) { } + public XamlInternalException(string message, System.Exception innerException) { } + } + public static partial class XamlLanguage + { + public const string Xaml2006Namespace = "http://schemas.microsoft.com/winfx/2006/xaml"; + public const string Xml1998Namespace = "http://www.w3.org/XML/1998/namespace"; + public static System.Collections.ObjectModel.ReadOnlyCollection AllDirectives { get { throw null; } } + public static System.Collections.ObjectModel.ReadOnlyCollection AllTypes { get { throw null; } } + public static System.Xaml.XamlDirective Arguments { get { throw null; } } + public static System.Xaml.XamlType Array { get { throw null; } } + public static System.Xaml.XamlDirective AsyncRecords { get { throw null; } } + public static System.Xaml.XamlDirective Base { get { throw null; } } + public static System.Xaml.XamlType Boolean { get { throw null; } } + public static System.Xaml.XamlType Byte { get { throw null; } } + public static System.Xaml.XamlType Char { get { throw null; } } + public static System.Xaml.XamlDirective Class { get { throw null; } } + public static System.Xaml.XamlDirective ClassAttributes { get { throw null; } } + public static System.Xaml.XamlDirective ClassModifier { get { throw null; } } + public static System.Xaml.XamlDirective Code { get { throw null; } } + public static System.Xaml.XamlDirective ConnectionId { get { throw null; } } + public static System.Xaml.XamlType Decimal { get { throw null; } } + public static System.Xaml.XamlType Double { get { throw null; } } + public static System.Xaml.XamlDirective FactoryMethod { get { throw null; } } + public static System.Xaml.XamlDirective FieldModifier { get { throw null; } } + public static System.Xaml.XamlDirective Initialization { get { throw null; } } + public static System.Xaml.XamlType Int16 { get { throw null; } } + public static System.Xaml.XamlType Int32 { get { throw null; } } + public static System.Xaml.XamlType Int64 { get { throw null; } } + public static System.Xaml.XamlDirective Items { get { throw null; } } + public static System.Xaml.XamlDirective Key { get { throw null; } } + public static System.Xaml.XamlDirective Lang { get { throw null; } } + public static System.Xaml.XamlType Member { get { throw null; } } + public static System.Xaml.XamlDirective Members { get { throw null; } } + public static System.Xaml.XamlDirective Name { get { throw null; } } + public static System.Xaml.XamlType Null { get { throw null; } } + public static System.Xaml.XamlType Object { get { throw null; } } + public static System.Xaml.XamlDirective PositionalParameters { get { throw null; } } + public static System.Xaml.XamlType Property { get { throw null; } } + public static System.Xaml.XamlType Reference { get { throw null; } } + public static System.Xaml.XamlDirective Shared { get { throw null; } } + public static System.Xaml.XamlType Single { get { throw null; } } + public static System.Xaml.XamlDirective Space { get { throw null; } } + public static System.Xaml.XamlType Static { get { throw null; } } + public static System.Xaml.XamlType String { get { throw null; } } + public static System.Xaml.XamlDirective Subclass { get { throw null; } } + public static System.Xaml.XamlDirective SynchronousMode { get { throw null; } } + public static System.Xaml.XamlType TimeSpan { get { throw null; } } + public static System.Xaml.XamlType Type { get { throw null; } } + public static System.Xaml.XamlDirective TypeArguments { get { throw null; } } + public static System.Xaml.XamlDirective Uid { get { throw null; } } + public static System.Xaml.XamlDirective UnknownContent { get { throw null; } } + public static System.Xaml.XamlType Uri { get { throw null; } } + public static System.Collections.Generic.IList XamlNamespaces { get { throw null; } } + public static System.Xaml.XamlType XData { get { throw null; } } + public static System.Collections.Generic.IList XmlNamespaces { get { throw null; } } + } + public partial class XamlMember : System.IEquatable + { + public XamlMember(System.Reflection.EventInfo eventInfo, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlMember(System.Reflection.EventInfo eventInfo, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.Schema.XamlMemberInvoker invoker) { } + public XamlMember(System.Reflection.PropertyInfo propertyInfo, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlMember(System.Reflection.PropertyInfo propertyInfo, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.Schema.XamlMemberInvoker invoker) { } + public XamlMember(string attachablePropertyName, System.Reflection.MethodInfo getter, System.Reflection.MethodInfo setter, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlMember(string attachablePropertyName, System.Reflection.MethodInfo getter, System.Reflection.MethodInfo setter, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.Schema.XamlMemberInvoker invoker) { } + public XamlMember(string attachableEventName, System.Reflection.MethodInfo adder, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlMember(string attachableEventName, System.Reflection.MethodInfo adder, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.Schema.XamlMemberInvoker invoker) { } + public XamlMember(string name, System.Xaml.XamlType declaringType, bool isAttachable) { } + public System.Xaml.XamlType DeclaringType { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter DeferringLoader { get { throw null; } } + public System.Collections.Generic.IList DependsOn { get { throw null; } } + public System.Xaml.Schema.XamlMemberInvoker Invoker { get { throw null; } } + public bool IsAmbient { get { throw null; } } + public bool IsAttachable { get { throw null; } } + public bool IsDirective { get { throw null; } } + public bool IsEvent { get { throw null; } } + public bool IsNameValid { get { throw null; } } + public bool IsReadOnly { get { throw null; } } + public bool IsReadPublic { get { throw null; } } + public bool IsUnknown { get { throw null; } } + public bool IsWriteOnly { get { throw null; } } + public bool IsWritePublic { get { throw null; } } + public System.Collections.Generic.IReadOnlyDictionary MarkupExtensionBracketCharacters { get { throw null; } } + public string Name { get { throw null; } } + public string PreferredXamlNamespace { get { throw null; } } + public System.ComponentModel.DesignerSerializationVisibility SerializationVisibility { get { throw null; } } + public System.Xaml.XamlType TargetType { get { throw null; } } + public System.Xaml.XamlType Type { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter TypeConverter { get { throw null; } } + public System.Reflection.MemberInfo UnderlyingMember { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter ValueSerializer { get { throw null; } } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Xaml.XamlMember other) { throw null; } + public override int GetHashCode() { throw null; } + public virtual System.Collections.Generic.IList GetXamlNamespaces() { throw null; } + protected virtual System.Reflection.ICustomAttributeProvider LookupCustomAttributeProvider() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupDeferringLoader() { throw null; } + protected virtual System.Collections.Generic.IList LookupDependsOn() { throw null; } + protected virtual System.Xaml.Schema.XamlMemberInvoker LookupInvoker() { throw null; } + protected virtual bool LookupIsAmbient() { throw null; } + protected virtual bool LookupIsEvent() { throw null; } + protected virtual bool LookupIsReadOnly() { throw null; } + protected virtual bool LookupIsReadPublic() { throw null; } + protected virtual bool LookupIsUnknown() { throw null; } + protected virtual bool LookupIsWriteOnly() { throw null; } + protected virtual bool LookupIsWritePublic() { throw null; } + protected virtual System.Collections.Generic.IReadOnlyDictionary LookupMarkupExtensionBracketCharacters() { throw null; } + protected virtual System.Xaml.XamlType LookupTargetType() { throw null; } + protected virtual System.Xaml.XamlType LookupType() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupTypeConverter() { throw null; } + protected virtual System.Reflection.MethodInfo LookupUnderlyingGetter() { throw null; } + protected virtual System.Reflection.MemberInfo LookupUnderlyingMember() { throw null; } + protected virtual System.Reflection.MethodInfo LookupUnderlyingSetter() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupValueSerializer() { throw null; } + public static bool operator ==(System.Xaml.XamlMember xamlMember1, System.Xaml.XamlMember xamlMember2) { throw null; } + public static bool operator !=(System.Xaml.XamlMember xamlMember1, System.Xaml.XamlMember xamlMember2) { throw null; } + public override string ToString() { throw null; } + } + public partial class XamlNodeList + { + public XamlNodeList(System.Xaml.XamlSchemaContext schemaContext) { } + public XamlNodeList(System.Xaml.XamlSchemaContext schemaContext, int size) { } + public int Count { get { throw null; } } + public System.Xaml.XamlWriter Writer { get { throw null; } } + public void Clear() { } + public System.Xaml.XamlReader GetReader() { throw null; } + } + public partial class XamlNodeQueue + { + public XamlNodeQueue(System.Xaml.XamlSchemaContext schemaContext) { } + public int Count { get { throw null; } } + public bool IsEmpty { get { throw null; } } + public System.Xaml.XamlReader Reader { get { throw null; } } + public System.Xaml.XamlWriter Writer { get { throw null; } } + } + public enum XamlNodeType : byte + { + None = (byte)0, + StartObject = (byte)1, + GetObject = (byte)2, + EndObject = (byte)3, + StartMember = (byte)4, + EndMember = (byte)5, + Value = (byte)6, + NamespaceDeclaration = (byte)7, + } + public partial class XamlObjectEventArgs : System.EventArgs + { + public XamlObjectEventArgs(object instance) { } + public int ElementLineNumber { get { throw null; } } + public int ElementLinePosition { get { throw null; } } + public object Instance { get { throw null; } } + public System.Uri SourceBamlUri { get { throw null; } } + } + public partial class XamlObjectReader : System.Xaml.XamlReader + { + public XamlObjectReader(object instance) { } + public XamlObjectReader(object instance, System.Xaml.XamlObjectReaderSettings settings) { } + public XamlObjectReader(object instance, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlObjectReader(object instance, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlObjectReaderSettings settings) { } + public virtual object Instance { get { throw null; } } + public override bool IsEof { get { throw null; } } + public override System.Xaml.XamlMember Member { get { throw null; } } + public override System.Xaml.NamespaceDeclaration Namespace { get { throw null; } } + public override System.Xaml.XamlNodeType NodeType { get { throw null; } } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public override System.Xaml.XamlType Type { get { throw null; } } + public override object Value { get { throw null; } } + public override bool Read() { throw null; } + } + public partial class XamlObjectReaderException : System.Xaml.XamlException + { + public XamlObjectReaderException() { } + protected XamlObjectReaderException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlObjectReaderException(string message) { } + public XamlObjectReaderException(string message, System.Exception innerException) { } + } + public partial class XamlObjectReaderSettings : System.Xaml.XamlReaderSettings + { + public XamlObjectReaderSettings() { } + public bool RequireExplicitContentVisibility { get { throw null; } set { } } + } + public partial class XamlObjectWriter : System.Xaml.XamlWriter, System.Xaml.IXamlLineInfoConsumer + { + public XamlObjectWriter(System.Xaml.XamlSchemaContext schemaContext) { } + public XamlObjectWriter(System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlObjectWriterSettings settings) { } + public virtual object Result { get { throw null; } } + public System.Windows.Markup.INameScope RootNameScope { get { throw null; } } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public bool ShouldProvideLineInfo { get { throw null; } } + public void Clear() { } + protected override void Dispose(bool disposing) { } + protected virtual void OnAfterBeginInit(object value) { } + protected virtual void OnAfterEndInit(object value) { } + protected virtual void OnAfterProperties(object value) { } + protected virtual void OnBeforeProperties(object value) { } + protected virtual bool OnSetValue(object eventSender, System.Xaml.XamlMember member, object value) { throw null; } + public void SetLineInfo(int lineNumber, int linePosition) { } + public override void WriteEndMember() { } + public override void WriteEndObject() { } + public override void WriteGetObject() { } + public override void WriteNamespace(System.Xaml.NamespaceDeclaration namespaceDeclaration) { } + public override void WriteStartMember(System.Xaml.XamlMember property) { } + public override void WriteStartObject(System.Xaml.XamlType xamlType) { } + public override void WriteValue(object value) { } + } + public partial class XamlObjectWriterException : System.Xaml.XamlException + { + public XamlObjectWriterException() { } + protected XamlObjectWriterException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlObjectWriterException(string message) { } + public XamlObjectWriterException(string message, System.Exception innerException) { } + } + public partial class XamlObjectWriterSettings : System.Xaml.XamlWriterSettings + { + public XamlObjectWriterSettings() { } + public XamlObjectWriterSettings(System.Xaml.XamlObjectWriterSettings settings) { } + public System.Xaml.Permissions.XamlAccessLevel AccessLevel { get { throw null; } set { } } + public System.EventHandler AfterBeginInitHandler { get { throw null; } set { } } + public System.EventHandler AfterEndInitHandler { get { throw null; } set { } } + public System.EventHandler AfterPropertiesHandler { get { throw null; } set { } } + public System.EventHandler BeforePropertiesHandler { get { throw null; } set { } } + public System.Windows.Markup.INameScope ExternalNameScope { get { throw null; } set { } } + public bool IgnoreCanConvert { get { throw null; } set { } } + public bool PreferUnconvertedDictionaryKeys { get { throw null; } set { } } + public bool RegisterNamesOnExternalNamescope { get { throw null; } set { } } + public object RootObjectInstance { get { throw null; } set { } } + public bool SkipDuplicatePropertyCheck { get { throw null; } set { } } + public bool SkipProvideValueOnRoot { get { throw null; } set { } } + public System.Uri SourceBamlUri { get { throw null; } set { } } + public System.EventHandler XamlSetValueHandler { get { throw null; } set { } } + } + public partial class XamlParseException : System.Xaml.XamlException + { + public XamlParseException() { } + protected XamlParseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlParseException(string message) { } + public XamlParseException(string message, System.Exception innerException) { } + } + public abstract partial class XamlReader : System.IDisposable + { + protected XamlReader() { } + protected bool IsDisposed { get { throw null; } } + public abstract bool IsEof { get; } + public abstract System.Xaml.XamlMember Member { get; } + public abstract System.Xaml.NamespaceDeclaration Namespace { get; } + public abstract System.Xaml.XamlNodeType NodeType { get; } + public abstract System.Xaml.XamlSchemaContext SchemaContext { get; } + public abstract System.Xaml.XamlType Type { get; } + public abstract object Value { get; } + public void Close() { } + protected virtual void Dispose(bool disposing) { } + public abstract bool Read(); + public virtual System.Xaml.XamlReader ReadSubtree() { throw null; } + public virtual void Skip() { } + void System.IDisposable.Dispose() { } + } + public partial class XamlReaderSettings + { + public XamlReaderSettings() { } + public XamlReaderSettings(System.Xaml.XamlReaderSettings settings) { } + public bool AllowProtectedMembersOnRoot { get { throw null; } set { } } + public System.Uri BaseUri { get { throw null; } set { } } + public bool IgnoreUidsOnPropertyElements { get { throw null; } set { } } + public System.Reflection.Assembly LocalAssembly { get { throw null; } set { } } + public bool ProvideLineInfo { get { throw null; } set { } } + public bool ValuesMustBeString { get { throw null; } set { } } + } + public partial class XamlSchemaContext + { + public XamlSchemaContext() { } + public XamlSchemaContext(System.Collections.Generic.IEnumerable referenceAssemblies) { } + public XamlSchemaContext(System.Collections.Generic.IEnumerable referenceAssemblies, System.Xaml.XamlSchemaContextSettings settings) { } + public XamlSchemaContext(System.Xaml.XamlSchemaContextSettings settings) { } + public bool FullyQualifyAssemblyNamesInClrNamespaces { get { throw null; } } + public System.Collections.Generic.IList ReferenceAssemblies { get { throw null; } } + public bool SupportMarkupExtensionsWithDuplicateArity { get { throw null; } } + ~XamlSchemaContext() { } + public virtual System.Collections.Generic.IEnumerable GetAllXamlNamespaces() { throw null; } + public virtual System.Collections.Generic.ICollection GetAllXamlTypes(string xamlNamespace) { throw null; } + public virtual string GetPreferredPrefix(string xmlns) { throw null; } + protected internal System.Xaml.Schema.XamlValueConverter GetValueConverter(System.Type converterType, System.Xaml.XamlType targetType) where TConverterBase : class { throw null; } + public virtual System.Xaml.XamlDirective GetXamlDirective(string xamlNamespace, string name) { throw null; } + protected internal virtual System.Xaml.XamlType GetXamlType(string xamlNamespace, string name, params System.Xaml.XamlType[] typeArguments) { throw null; } + public virtual System.Xaml.XamlType GetXamlType(System.Type type) { throw null; } + public System.Xaml.XamlType GetXamlType(System.Xaml.Schema.XamlTypeName xamlTypeName) { throw null; } + protected internal virtual System.Reflection.Assembly OnAssemblyResolve(string assemblyName) { throw null; } + public virtual bool TryGetCompatibleXamlNamespace(string xamlNamespace, out string compatibleNamespace) { throw null; } + } + public partial class XamlSchemaContextSettings + { + public XamlSchemaContextSettings() { } + public XamlSchemaContextSettings(System.Xaml.XamlSchemaContextSettings settings) { } + public bool FullyQualifyAssemblyNamesInClrNamespaces { get { throw null; } set { } } + public bool SupportMarkupExtensionsWithDuplicateArity { get { throw null; } set { } } + } + public partial class XamlSchemaException : System.Xaml.XamlException + { + public XamlSchemaException() { } + protected XamlSchemaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlSchemaException(string message) { } + public XamlSchemaException(string message, System.Exception innerException) { } + } + public static partial class XamlServices + { + public static object Load(System.IO.Stream stream) { throw null; } + public static object Load(System.IO.TextReader textReader) { throw null; } + public static object Load(string fileName) { throw null; } + public static object Load(System.Xaml.XamlReader xamlReader) { throw null; } + public static object Load(System.Xml.XmlReader xmlReader) { throw null; } + public static object Parse(string xaml) { throw null; } + public static void Save(System.IO.Stream stream, object instance) { } + public static void Save(System.IO.TextWriter writer, object instance) { } + public static string Save(object instance) { throw null; } + public static void Save(string fileName, object instance) { } + public static void Save(System.Xaml.XamlWriter writer, object instance) { } + public static void Save(System.Xml.XmlWriter writer, object instance) { } + public static void Transform(System.Xaml.XamlReader xamlReader, System.Xaml.XamlWriter xamlWriter) { } + public static void Transform(System.Xaml.XamlReader xamlReader, System.Xaml.XamlWriter xamlWriter, bool closeWriter) { } + } + public partial class XamlType : System.IEquatable + { + protected XamlType(string typeName, System.Collections.Generic.IList typeArguments, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlType(string unknownTypeNamespace, string unknownTypeName, System.Collections.Generic.IList typeArguments, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlType(System.Type underlyingType, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlType(System.Type underlyingType, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.Schema.XamlTypeInvoker invoker) { } + public System.Collections.Generic.IList AllowedContentTypes { get { throw null; } } + public System.Xaml.XamlType BaseType { get { throw null; } } + public bool ConstructionRequiresArguments { get { throw null; } } + public System.Xaml.XamlMember ContentProperty { get { throw null; } } + public System.Collections.Generic.IList ContentWrappers { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter DeferringLoader { get { throw null; } } + public System.Xaml.Schema.XamlTypeInvoker Invoker { get { throw null; } } + public bool IsAmbient { get { throw null; } } + public bool IsArray { get { throw null; } } + public bool IsCollection { get { throw null; } } + public bool IsConstructible { get { throw null; } } + public bool IsDictionary { get { throw null; } } + public bool IsGeneric { get { throw null; } } + public bool IsMarkupExtension { get { throw null; } } + public bool IsNameScope { get { throw null; } } + public bool IsNameValid { get { throw null; } } + public bool IsNullable { get { throw null; } } + public bool IsPublic { get { throw null; } } + public bool IsUnknown { get { throw null; } } + public bool IsUsableDuringInitialization { get { throw null; } } + public bool IsWhitespaceSignificantCollection { get { throw null; } } + public bool IsXData { get { throw null; } } + public System.Xaml.XamlType ItemType { get { throw null; } } + public System.Xaml.XamlType KeyType { get { throw null; } } + public System.Xaml.XamlType MarkupExtensionReturnType { get { throw null; } } + public string Name { get { throw null; } } + public string PreferredXamlNamespace { get { throw null; } } + public System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public bool TrimSurroundingWhitespace { get { throw null; } } + public System.Collections.Generic.IList TypeArguments { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter TypeConverter { get { throw null; } } + public System.Type UnderlyingType { get { throw null; } } + public System.Xaml.Schema.XamlValueConverter ValueSerializer { get { throw null; } } + public virtual bool CanAssignTo(System.Xaml.XamlType xamlType) { throw null; } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Xaml.XamlType other) { throw null; } + public System.Xaml.XamlMember GetAliasedProperty(System.Xaml.XamlDirective directive) { throw null; } + public System.Collections.Generic.ICollection GetAllAttachableMembers() { throw null; } + public System.Collections.Generic.ICollection GetAllMembers() { throw null; } + public System.Xaml.XamlMember GetAttachableMember(string name) { throw null; } + public override int GetHashCode() { throw null; } + public System.Xaml.XamlMember GetMember(string name) { throw null; } + public System.Collections.Generic.IList GetPositionalParameters(int parameterCount) { throw null; } + public virtual System.Collections.Generic.IList GetXamlNamespaces() { throw null; } + protected virtual System.Xaml.XamlMember LookupAliasedProperty(System.Xaml.XamlDirective directive) { throw null; } + protected virtual System.Collections.Generic.IEnumerable LookupAllAttachableMembers() { throw null; } + protected virtual System.Collections.Generic.IEnumerable LookupAllMembers() { throw null; } + protected virtual System.Collections.Generic.IList LookupAllowedContentTypes() { throw null; } + protected virtual System.Xaml.XamlMember LookupAttachableMember(string name) { throw null; } + protected virtual System.Xaml.XamlType LookupBaseType() { throw null; } + protected virtual System.Xaml.Schema.XamlCollectionKind LookupCollectionKind() { throw null; } + protected virtual bool LookupConstructionRequiresArguments() { throw null; } + protected virtual System.Xaml.XamlMember LookupContentProperty() { throw null; } + protected virtual System.Collections.Generic.IList LookupContentWrappers() { throw null; } + protected virtual System.Reflection.ICustomAttributeProvider LookupCustomAttributeProvider() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupDeferringLoader() { throw null; } + protected virtual System.Xaml.Schema.XamlTypeInvoker LookupInvoker() { throw null; } + protected virtual bool LookupIsAmbient() { throw null; } + protected virtual bool LookupIsConstructible() { throw null; } + protected virtual bool LookupIsMarkupExtension() { throw null; } + protected virtual bool LookupIsNameScope() { throw null; } + protected virtual bool LookupIsNullable() { throw null; } + protected virtual bool LookupIsPublic() { throw null; } + protected virtual bool LookupIsUnknown() { throw null; } + protected virtual bool LookupIsWhitespaceSignificantCollection() { throw null; } + protected virtual bool LookupIsXData() { throw null; } + protected virtual System.Xaml.XamlType LookupItemType() { throw null; } + protected virtual System.Xaml.XamlType LookupKeyType() { throw null; } + protected virtual System.Xaml.XamlType LookupMarkupExtensionReturnType() { throw null; } + protected virtual System.Xaml.XamlMember LookupMember(string name, bool skipReadOnlyCheck) { throw null; } + protected virtual System.Collections.Generic.IList LookupPositionalParameters(int parameterCount) { throw null; } + protected virtual System.EventHandler LookupSetMarkupExtensionHandler() { throw null; } + protected virtual System.EventHandler LookupSetTypeConverterHandler() { throw null; } + protected virtual bool LookupTrimSurroundingWhitespace() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupTypeConverter() { throw null; } + protected virtual System.Type LookupUnderlyingType() { throw null; } + protected virtual bool LookupUsableDuringInitialization() { throw null; } + protected virtual System.Xaml.Schema.XamlValueConverter LookupValueSerializer() { throw null; } + public static bool operator ==(System.Xaml.XamlType xamlType1, System.Xaml.XamlType xamlType2) { throw null; } + public static bool operator !=(System.Xaml.XamlType xamlType1, System.Xaml.XamlType xamlType2) { throw null; } + public override string ToString() { throw null; } + } + public abstract partial class XamlWriter : System.IDisposable + { + protected XamlWriter() { } + protected bool IsDisposed { get { throw null; } } + public abstract System.Xaml.XamlSchemaContext SchemaContext { get; } + public void Close() { } + protected virtual void Dispose(bool disposing) { } + void System.IDisposable.Dispose() { } + public abstract void WriteEndMember(); + public abstract void WriteEndObject(); + public abstract void WriteGetObject(); + public abstract void WriteNamespace(System.Xaml.NamespaceDeclaration namespaceDeclaration); + public void WriteNode(System.Xaml.XamlReader reader) { } + public abstract void WriteStartMember(System.Xaml.XamlMember xamlMember); + public abstract void WriteStartObject(System.Xaml.XamlType type); + public abstract void WriteValue(object value); + } + public partial class XamlWriterSettings + { + public XamlWriterSettings() { } + public XamlWriterSettings(System.Xaml.XamlWriterSettings settings) { } + } + public partial class XamlXmlReader : System.Xaml.XamlReader, System.Xaml.IXamlLineInfo + { + public XamlXmlReader(System.IO.Stream stream) { } + public XamlXmlReader(System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlReader(System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(System.IO.Stream stream, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(System.IO.TextReader textReader) { } + public XamlXmlReader(System.IO.TextReader textReader, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlReader(System.IO.TextReader textReader, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(System.IO.TextReader textReader, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(string fileName) { } + public XamlXmlReader(string fileName, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlReader(string fileName, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(string fileName, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(System.Xml.XmlReader xmlReader) { } + public XamlXmlReader(System.Xml.XmlReader xmlReader, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlReader(System.Xml.XmlReader xmlReader, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlReaderSettings settings) { } + public XamlXmlReader(System.Xml.XmlReader xmlReader, System.Xaml.XamlXmlReaderSettings settings) { } + public bool HasLineInfo { get { throw null; } } + public override bool IsEof { get { throw null; } } + public int LineNumber { get { throw null; } } + public int LinePosition { get { throw null; } } + public override System.Xaml.XamlMember Member { get { throw null; } } + public override System.Xaml.NamespaceDeclaration Namespace { get { throw null; } } + public override System.Xaml.XamlNodeType NodeType { get { throw null; } } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public override System.Xaml.XamlType Type { get { throw null; } } + public override object Value { get { throw null; } } + public override bool Read() { throw null; } + } + public partial class XamlXmlReaderSettings : System.Xaml.XamlReaderSettings + { + public XamlXmlReaderSettings() { } + public XamlXmlReaderSettings(System.Xaml.XamlXmlReaderSettings settings) { } + public bool CloseInput { get { throw null; } set { } } + public bool SkipXmlCompatibilityProcessing { get { throw null; } set { } } + public string XmlLang { get { throw null; } set { } } + public bool XmlSpacePreserve { get { throw null; } set { } } + } + public partial class XamlXmlWriter : System.Xaml.XamlWriter + { + public XamlXmlWriter(System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlWriter(System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings) { } + public XamlXmlWriter(System.IO.TextWriter textWriter, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlWriter(System.IO.TextWriter textWriter, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings) { } + public XamlXmlWriter(System.Xml.XmlWriter xmlWriter, System.Xaml.XamlSchemaContext schemaContext) { } + public XamlXmlWriter(System.Xml.XmlWriter xmlWriter, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings) { } + public override System.Xaml.XamlSchemaContext SchemaContext { get { throw null; } } + public System.Xaml.XamlXmlWriterSettings Settings { get { throw null; } } + protected override void Dispose(bool disposing) { } + public void Flush() { } + public override void WriteEndMember() { } + public override void WriteEndObject() { } + public override void WriteGetObject() { } + public override void WriteNamespace(System.Xaml.NamespaceDeclaration namespaceDeclaration) { } + public override void WriteStartMember(System.Xaml.XamlMember property) { } + public override void WriteStartObject(System.Xaml.XamlType type) { } + public override void WriteValue(object value) { } + } + public partial class XamlXmlWriterException : System.Xaml.XamlException + { + public XamlXmlWriterException() { } + protected XamlXmlWriterException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public XamlXmlWriterException(string message) { } + public XamlXmlWriterException(string message, System.Exception innerException) { } + } + public partial class XamlXmlWriterSettings : System.Xaml.XamlWriterSettings + { + public XamlXmlWriterSettings() { } + public bool AssumeValidInput { get { throw null; } set { } } + public bool CloseOutput { get { throw null; } set { } } + public System.Xaml.XamlXmlWriterSettings Copy() { throw null; } + } +} +namespace System.Xaml.Schema +{ + [System.FlagsAttribute] + public enum AllowedMemberLocations + { + None = 0, + Attribute = 1, + MemberElement = 2, + Any = 3, + } + public enum ShouldSerializeResult + { + Default = 0, + True = 1, + False = 2, + } + public enum XamlCollectionKind : byte + { + None = (byte)0, + Collection = (byte)1, + Dictionary = (byte)2, + Array = (byte)3, + } + public partial class XamlMemberInvoker + { + protected XamlMemberInvoker() { } + public XamlMemberInvoker(System.Xaml.XamlMember member) { } + public System.Reflection.MethodInfo UnderlyingGetter { get { throw null; } } + public System.Reflection.MethodInfo UnderlyingSetter { get { throw null; } } + public static System.Xaml.Schema.XamlMemberInvoker UnknownInvoker { get { throw null; } } + public virtual object GetValue(object instance) { throw null; } + public virtual void SetValue(object instance, object value) { } + public virtual System.Xaml.Schema.ShouldSerializeResult ShouldSerializeValue(object instance) { throw null; } + } + public partial class XamlTypeInvoker + { + protected XamlTypeInvoker() { } + public XamlTypeInvoker(System.Xaml.XamlType type) { } + public System.EventHandler SetMarkupExtensionHandler { get { throw null; } } + public System.EventHandler SetTypeConverterHandler { get { throw null; } } + public static System.Xaml.Schema.XamlTypeInvoker UnknownInvoker { get { throw null; } } + public virtual void AddToCollection(object instance, object item) { } + public virtual void AddToDictionary(object instance, object key, object item) { } + public virtual object CreateInstance(object[] arguments) { throw null; } + public virtual System.Reflection.MethodInfo GetAddMethod(System.Xaml.XamlType contentType) { throw null; } + public virtual System.Reflection.MethodInfo GetEnumeratorMethod() { throw null; } + public virtual System.Collections.IEnumerator GetItems(object instance) { throw null; } + } + public partial class XamlTypeName + { + public XamlTypeName() { } + public XamlTypeName(string xamlNamespace, string name) { } + public XamlTypeName(string xamlNamespace, string name, System.Collections.Generic.IEnumerable typeArguments) { } + public XamlTypeName(System.Xaml.XamlType xamlType) { } + public string Name { get { throw null; } set { } } + public string Namespace { get { throw null; } set { } } + public System.Collections.Generic.IList TypeArguments { get { throw null; } } + public static System.Xaml.Schema.XamlTypeName Parse(string typeName, System.Xaml.IXamlNamespaceResolver namespaceResolver) { throw null; } + public static System.Collections.Generic.IList ParseList(string typeNameList, System.Xaml.IXamlNamespaceResolver namespaceResolver) { throw null; } + public override string ToString() { throw null; } + public static string ToString(System.Collections.Generic.IList typeNameList, System.Xaml.INamespacePrefixLookup prefixLookup) { throw null; } + public string ToString(System.Xaml.INamespacePrefixLookup prefixLookup) { throw null; } + public static bool TryParse(string typeName, System.Xaml.IXamlNamespaceResolver namespaceResolver, out System.Xaml.Schema.XamlTypeName result) { throw null; } + public static bool TryParseList(string typeNameList, System.Xaml.IXamlNamespaceResolver namespaceResolver, out System.Collections.Generic.IList result) { throw null; } + } + public partial class XamlTypeTypeConverter : System.ComponentModel.TypeConverter + { + public XamlTypeTypeConverter() { } + public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; } + public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; } + public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; } + public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; } + } + public partial class XamlValueConverter : System.IEquatable> where TConverterBase : class + { + public XamlValueConverter(System.Type converterType, System.Xaml.XamlType targetType) { } + public XamlValueConverter(System.Type converterType, System.Xaml.XamlType targetType, string name) { } + public TConverterBase ConverterInstance { get { throw null; } } + public System.Type ConverterType { get { throw null; } } + public string Name { get { throw null; } } + public System.Xaml.XamlType TargetType { get { throw null; } } + protected virtual TConverterBase CreateInstance() { throw null; } + public override bool Equals(object obj) { throw null; } + public bool Equals(System.Xaml.Schema.XamlValueConverter other) { throw null; } + public override int GetHashCode() { throw null; } + public static bool operator ==(System.Xaml.Schema.XamlValueConverter converter1, System.Xaml.Schema.XamlValueConverter converter2) { throw null; } + public static bool operator !=(System.Xaml.Schema.XamlValueConverter converter1, System.Xaml.Schema.XamlValueConverter converter2) { throw null; } + public override string ToString() { throw null; } + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj index dff7b17c88e..5cbf4a564d9 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/UIAutomationClient.csproj @@ -97,6 +97,9 @@ + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj new file mode 100644 index 00000000000..4fa610d41cc --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient-ref.csproj @@ -0,0 +1,43 @@ + + + UIAutomationClient + UIAutomationClient-ref + $(TargetGroup)-$(PackageId)/ + AnyCPU;x64 + true + $(DefineConstants);UIAUTOMATIONCLIENT + $(NoWarn);0618;CA1821 + netcoreapp3.0 + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient.cs b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient.cs new file mode 100644 index 00000000000..75ac07964da --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClient/ref/UIAutomationClient.cs @@ -0,0 +1,645 @@ +namespace System.Windows.Automation +{ + public partial class AndCondition : System.Windows.Automation.Condition + { + public AndCondition(params System.Windows.Automation.Condition[] conditions) { } + public System.Windows.Automation.Condition[] GetConditions() { throw null; } + } + public static partial class Automation + { + public static readonly System.Windows.Automation.Condition ContentViewCondition; + public static readonly System.Windows.Automation.Condition ControlViewCondition; + public static readonly System.Windows.Automation.Condition RawViewCondition; + public static void AddAutomationEventHandler(System.Windows.Automation.AutomationEvent eventId, System.Windows.Automation.AutomationElement element, System.Windows.Automation.TreeScope scope, System.Windows.Automation.AutomationEventHandler eventHandler) { } + public static void AddAutomationFocusChangedEventHandler(System.Windows.Automation.AutomationFocusChangedEventHandler eventHandler) { } + public static void AddAutomationPropertyChangedEventHandler(System.Windows.Automation.AutomationElement element, System.Windows.Automation.TreeScope scope, System.Windows.Automation.AutomationPropertyChangedEventHandler eventHandler, params System.Windows.Automation.AutomationProperty[] properties) { } + public static void AddStructureChangedEventHandler(System.Windows.Automation.AutomationElement element, System.Windows.Automation.TreeScope scope, System.Windows.Automation.StructureChangedEventHandler eventHandler) { } + public static bool Compare(int[] runtimeId1, int[] runtimeId2) { throw null; } + public static bool Compare(System.Windows.Automation.AutomationElement el1, System.Windows.Automation.AutomationElement el2) { throw null; } + public static string PatternName(System.Windows.Automation.AutomationPattern pattern) { throw null; } + public static string PropertyName(System.Windows.Automation.AutomationProperty property) { throw null; } + public static void RemoveAllEventHandlers() { } + public static void RemoveAutomationEventHandler(System.Windows.Automation.AutomationEvent eventId, System.Windows.Automation.AutomationElement element, System.Windows.Automation.AutomationEventHandler eventHandler) { } + public static void RemoveAutomationFocusChangedEventHandler(System.Windows.Automation.AutomationFocusChangedEventHandler eventHandler) { } + public static void RemoveAutomationPropertyChangedEventHandler(System.Windows.Automation.AutomationElement element, System.Windows.Automation.AutomationPropertyChangedEventHandler eventHandler) { } + public static void RemoveStructureChangedEventHandler(System.Windows.Automation.AutomationElement element, System.Windows.Automation.StructureChangedEventHandler eventHandler) { } + } + public sealed partial class AutomationElement + { + internal AutomationElement() { } + public static readonly System.Windows.Automation.AutomationProperty AcceleratorKeyProperty; + public static readonly System.Windows.Automation.AutomationProperty AccessKeyProperty; + public static readonly System.Windows.Automation.AutomationEvent AsyncContentLoadedEvent; + public static readonly System.Windows.Automation.AutomationEvent AutomationFocusChangedEvent; + public static readonly System.Windows.Automation.AutomationProperty AutomationIdProperty; + public static readonly System.Windows.Automation.AutomationEvent AutomationPropertyChangedEvent; + public static readonly System.Windows.Automation.AutomationProperty BoundingRectangleProperty; + public static readonly System.Windows.Automation.AutomationProperty ClassNameProperty; + public static readonly System.Windows.Automation.AutomationProperty ClickablePointProperty; + public static readonly System.Windows.Automation.AutomationProperty ControlTypeProperty; + public static readonly System.Windows.Automation.AutomationProperty CultureProperty; + public static readonly System.Windows.Automation.AutomationProperty FrameworkIdProperty; + public static readonly System.Windows.Automation.AutomationProperty HasKeyboardFocusProperty; + public static readonly System.Windows.Automation.AutomationProperty HelpTextProperty; + public static readonly System.Windows.Automation.AutomationProperty IsContentElementProperty; + public static readonly System.Windows.Automation.AutomationProperty IsControlElementProperty; + public static readonly System.Windows.Automation.AutomationProperty IsDockPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsEnabledProperty; + public static readonly System.Windows.Automation.AutomationProperty IsExpandCollapsePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsGridItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsGridPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsInvokePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsItemContainerPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsKeyboardFocusableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsMultipleViewPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsOffscreenProperty; + public static readonly System.Windows.Automation.AutomationProperty IsPasswordProperty; + public static readonly System.Windows.Automation.AutomationProperty IsRangeValuePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsRequiredForFormProperty; + public static readonly System.Windows.Automation.AutomationProperty IsScrollItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsScrollPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSynchronizedInputPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTableItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTablePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTextPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTogglePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTransformPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsValuePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsVirtualizedItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsWindowPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty ItemStatusProperty; + public static readonly System.Windows.Automation.AutomationProperty ItemTypeProperty; + public static readonly System.Windows.Automation.AutomationProperty LabeledByProperty; + public static readonly System.Windows.Automation.AutomationEvent LayoutInvalidatedEvent; + public static readonly System.Windows.Automation.AutomationProperty LocalizedControlTypeProperty; + public static readonly System.Windows.Automation.AutomationEvent MenuClosedEvent; + public static readonly System.Windows.Automation.AutomationEvent MenuOpenedEvent; + public static readonly System.Windows.Automation.AutomationProperty NameProperty; + public static readonly System.Windows.Automation.AutomationProperty NativeWindowHandleProperty; + public static readonly object NotSupported; + public static readonly System.Windows.Automation.AutomationProperty OrientationProperty; + public static readonly System.Windows.Automation.AutomationProperty PositionInSetProperty; + public static readonly System.Windows.Automation.AutomationProperty ProcessIdProperty; + public static readonly System.Windows.Automation.AutomationProperty RuntimeIdProperty; + public static readonly System.Windows.Automation.AutomationProperty SizeOfSetProperty; + public static readonly System.Windows.Automation.AutomationEvent StructureChangedEvent; + public static readonly System.Windows.Automation.AutomationEvent ToolTipClosedEvent; + public static readonly System.Windows.Automation.AutomationEvent ToolTipOpenedEvent; + public System.Windows.Automation.AutomationElement.AutomationElementInformation Cached { get { throw null; } } + public System.Windows.Automation.AutomationElementCollection CachedChildren { get { throw null; } } + public System.Windows.Automation.AutomationElement CachedParent { get { throw null; } } + public System.Windows.Automation.AutomationElement.AutomationElementInformation Current { get { throw null; } } + public static System.Windows.Automation.AutomationElement FocusedElement { get { throw null; } } + public static System.Windows.Automation.AutomationElement RootElement { get { throw null; } } + public override bool Equals(object obj) { throw null; } + ~AutomationElement() { } + public System.Windows.Automation.AutomationElementCollection FindAll(System.Windows.Automation.TreeScope scope, System.Windows.Automation.Condition condition) { throw null; } + public System.Windows.Automation.AutomationElement FindFirst(System.Windows.Automation.TreeScope scope, System.Windows.Automation.Condition condition) { throw null; } + public static System.Windows.Automation.AutomationElement FromHandle(System.IntPtr hwnd) { throw null; } + public static System.Windows.Automation.AutomationElement FromLocalProvider(System.Windows.Automation.Provider.IRawElementProviderSimple localImpl) { throw null; } + public static System.Windows.Automation.AutomationElement FromPoint(System.Windows.Point pt) { throw null; } + public object GetCachedPattern(System.Windows.Automation.AutomationPattern pattern) { throw null; } + public object GetCachedPropertyValue(System.Windows.Automation.AutomationProperty property) { throw null; } + public object GetCachedPropertyValue(System.Windows.Automation.AutomationProperty property, bool ignoreDefaultValue) { throw null; } + public System.Windows.Point GetClickablePoint() { throw null; } + public object GetCurrentPattern(System.Windows.Automation.AutomationPattern pattern) { throw null; } + public object GetCurrentPropertyValue(System.Windows.Automation.AutomationProperty property) { throw null; } + public object GetCurrentPropertyValue(System.Windows.Automation.AutomationProperty property, bool ignoreDefaultValue) { throw null; } + public override int GetHashCode() { throw null; } + public int[] GetRuntimeId() { throw null; } + public System.Windows.Automation.AutomationPattern[] GetSupportedPatterns() { throw null; } + public System.Windows.Automation.AutomationProperty[] GetSupportedProperties() { throw null; } + public System.Windows.Automation.AutomationElement GetUpdatedCache(System.Windows.Automation.CacheRequest request) { throw null; } + public static bool operator ==(System.Windows.Automation.AutomationElement left, System.Windows.Automation.AutomationElement right) { throw null; } + public static bool operator !=(System.Windows.Automation.AutomationElement left, System.Windows.Automation.AutomationElement right) { throw null; } + public void SetFocus() { } + public bool TryGetCachedPattern(System.Windows.Automation.AutomationPattern pattern, out object patternObject) { throw null; } + public bool TryGetClickablePoint(out System.Windows.Point pt) { throw null; } + public bool TryGetCurrentPattern(System.Windows.Automation.AutomationPattern pattern, out object patternObject) { throw null; } + public partial struct AutomationElementInformation + { + public string AcceleratorKey { get { throw null; } } + public string AccessKey { get { throw null; } } + public string AutomationId { get { throw null; } } + public System.Windows.Rect BoundingRectangle { get { throw null; } } + public string ClassName { get { throw null; } } + public System.Windows.Automation.ControlType ControlType { get { throw null; } } + public string FrameworkId { get { throw null; } } + public bool HasKeyboardFocus { get { throw null; } } + public string HelpText { get { throw null; } } + public bool IsContentElement { get { throw null; } } + public bool IsControlElement { get { throw null; } } + public bool IsEnabled { get { throw null; } } + public bool IsKeyboardFocusable { get { throw null; } } + public bool IsOffscreen { get { throw null; } } + public bool IsPassword { get { throw null; } } + public bool IsRequiredForForm { get { throw null; } } + public string ItemStatus { get { throw null; } } + public string ItemType { get { throw null; } } + public System.Windows.Automation.AutomationElement LabeledBy { get { throw null; } } + public string LocalizedControlType { get { throw null; } } + public string Name { get { throw null; } } + public int NativeWindowHandle { get { throw null; } } + public System.Windows.Automation.OrientationType Orientation { get { throw null; } } + public int ProcessId { get { throw null; } } + } + } + public partial class AutomationElementCollection : System.Collections.ICollection, System.Collections.IEnumerable + { + internal AutomationElementCollection() { } + public int Count { get { throw null; } } + public virtual bool IsSynchronized { get { throw null; } } + public System.Windows.Automation.AutomationElement this[int index] { get { throw null; } } + public virtual object SyncRoot { get { throw null; } } + public virtual void CopyTo(System.Array array, int index) { } + public void CopyTo(System.Windows.Automation.AutomationElement[] array, int index) { } + public System.Collections.IEnumerator GetEnumerator() { throw null; } + } + public enum AutomationElementMode + { + None = 0, + Full = 1, + } + public partial class AutomationFocusChangedEventArgs : System.Windows.Automation.AutomationEventArgs + { + public AutomationFocusChangedEventArgs(int idObject, int idChild) : base (default(System.Windows.Automation.AutomationEvent)) { } + public int ChildId { get { throw null; } } + public int ObjectId { get { throw null; } } + } + public delegate void AutomationFocusChangedEventHandler(object sender, System.Windows.Automation.AutomationFocusChangedEventArgs e); + public partial class BasePattern + { + internal BasePattern() { } + ~BasePattern() { } + } + public sealed partial class CacheRequest + { + public CacheRequest() { } + public System.Windows.Automation.AutomationElementMode AutomationElementMode { get { throw null; } set { } } + public static System.Windows.Automation.CacheRequest Current { get { throw null; } } + public System.Windows.Automation.Condition TreeFilter { get { throw null; } set { } } + public System.Windows.Automation.TreeScope TreeScope { get { throw null; } set { } } + public System.IDisposable Activate() { throw null; } + public void Add(System.Windows.Automation.AutomationPattern pattern) { } + public void Add(System.Windows.Automation.AutomationProperty property) { } + public System.Windows.Automation.CacheRequest Clone() { throw null; } + public void Pop() { } + public void Push() { } + } + public static partial class ClientSettings + { + public static void RegisterClientSideProviderAssembly(System.Reflection.AssemblyName assemblyName) { } + public static void RegisterClientSideProviders(System.Windows.Automation.ClientSideProviderDescription[] clientSideProviderDescription) { } + } + public partial struct ClientSideProviderDescription + { + public ClientSideProviderDescription(System.Windows.Automation.ClientSideProviderFactoryCallback clientSideProviderFactoryCallback, string className) { throw null; } + public ClientSideProviderDescription(System.Windows.Automation.ClientSideProviderFactoryCallback clientSideProviderFactoryCallback, string className, string imageName, System.Windows.Automation.ClientSideProviderMatchIndicator flags) { throw null; } + public string ClassName { get { throw null; } } + public System.Windows.Automation.ClientSideProviderFactoryCallback ClientSideProviderFactoryCallback { get { throw null; } } + public System.Windows.Automation.ClientSideProviderMatchIndicator Flags { get { throw null; } } + public string ImageName { get { throw null; } } + } + public delegate System.Windows.Automation.Provider.IRawElementProviderSimple ClientSideProviderFactoryCallback(System.IntPtr hwnd, int idChild, int idObject); + [System.FlagsAttribute] + public enum ClientSideProviderMatchIndicator + { + None = 0, + AllowSubstringMatch = 1, + DisallowBaseClassNameMatch = 2, + } + public abstract partial class Condition + { + internal Condition() { } + public static readonly System.Windows.Automation.Condition FalseCondition; + public static readonly System.Windows.Automation.Condition TrueCondition; + } + public partial class DockPattern : System.Windows.Automation.BasePattern + { + internal DockPattern() { } + public static readonly System.Windows.Automation.AutomationProperty DockPositionProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public System.Windows.Automation.DockPattern.DockPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.DockPattern.DockPatternInformation Current { get { throw null; } } + public void SetDockPosition(System.Windows.Automation.DockPosition dockPosition) { } + public partial struct DockPatternInformation + { + public System.Windows.Automation.DockPosition DockPosition { get { throw null; } } + } + } + public partial class ExpandCollapsePattern : System.Windows.Automation.BasePattern + { + internal ExpandCollapsePattern() { } + public static readonly System.Windows.Automation.AutomationProperty ExpandCollapseStateProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public System.Windows.Automation.ExpandCollapsePattern.ExpandCollapsePatternInformation Cached { get { throw null; } } + public System.Windows.Automation.ExpandCollapsePattern.ExpandCollapsePatternInformation Current { get { throw null; } } + public void Collapse() { } + public void Expand() { } + public partial struct ExpandCollapsePatternInformation + { + public System.Windows.Automation.ExpandCollapseState ExpandCollapseState { get { throw null; } } + } + } + public partial class GridItemPattern : System.Windows.Automation.BasePattern + { + internal GridItemPattern() { } + public static readonly System.Windows.Automation.AutomationProperty ColumnProperty; + public static readonly System.Windows.Automation.AutomationProperty ColumnSpanProperty; + public static readonly System.Windows.Automation.AutomationProperty ContainingGridProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowProperty; + public static readonly System.Windows.Automation.AutomationProperty RowSpanProperty; + public System.Windows.Automation.GridItemPattern.GridItemPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.GridItemPattern.GridItemPatternInformation Current { get { throw null; } } + public partial struct GridItemPatternInformation + { + public int Column { get { throw null; } } + public int ColumnSpan { get { throw null; } } + public System.Windows.Automation.AutomationElement ContainingGrid { get { throw null; } } + public int Row { get { throw null; } } + public int RowSpan { get { throw null; } } + } + } + public partial class GridPattern : System.Windows.Automation.BasePattern + { + internal GridPattern() { } + public static readonly System.Windows.Automation.AutomationProperty ColumnCountProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowCountProperty; + public System.Windows.Automation.GridPattern.GridPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.GridPattern.GridPatternInformation Current { get { throw null; } } + public System.Windows.Automation.AutomationElement GetItem(int row, int column) { throw null; } + public partial struct GridPatternInformation + { + public int ColumnCount { get { throw null; } } + public int RowCount { get { throw null; } } + } + } + public partial class InvokePattern : System.Windows.Automation.BasePattern + { + internal InvokePattern() { } + public static readonly System.Windows.Automation.AutomationEvent InvokedEvent; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public void Invoke() { } + } + public partial class ItemContainerPattern : System.Windows.Automation.BasePattern + { + internal ItemContainerPattern() { } + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public System.Windows.Automation.AutomationElement FindItemByProperty(System.Windows.Automation.AutomationElement startAfter, System.Windows.Automation.AutomationProperty property, object value) { throw null; } + } + public partial class MultipleViewPattern : System.Windows.Automation.BasePattern + { + internal MultipleViewPattern() { } + public static readonly System.Windows.Automation.AutomationProperty CurrentViewProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SupportedViewsProperty; + public System.Windows.Automation.MultipleViewPattern.MultipleViewPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.MultipleViewPattern.MultipleViewPatternInformation Current { get { throw null; } } + public string GetViewName(int viewId) { throw null; } + public void SetCurrentView(int viewId) { } + public partial struct MultipleViewPatternInformation + { + public int CurrentView { get { throw null; } } + public int[] GetSupportedViews() { throw null; } + } + } + public partial class NotCondition : System.Windows.Automation.Condition + { + public NotCondition(System.Windows.Automation.Condition condition) { } + public System.Windows.Automation.Condition Condition { get { throw null; } } + } + public partial class OrCondition : System.Windows.Automation.Condition + { + public OrCondition(params System.Windows.Automation.Condition[] conditions) { } + public System.Windows.Automation.Condition[] GetConditions() { throw null; } + } + public partial class PropertyCondition : System.Windows.Automation.Condition + { + public PropertyCondition(System.Windows.Automation.AutomationProperty property, object value) { } + public PropertyCondition(System.Windows.Automation.AutomationProperty property, object value, System.Windows.Automation.PropertyConditionFlags flags) { } + public System.Windows.Automation.PropertyConditionFlags Flags { get { throw null; } } + public System.Windows.Automation.AutomationProperty Property { get { throw null; } } + public object Value { get { throw null; } } + } + [System.FlagsAttribute] + public enum PropertyConditionFlags + { + None = 0, + IgnoreCase = 1, + } + public partial class RangeValuePattern : System.Windows.Automation.BasePattern + { + internal RangeValuePattern() { } + public static readonly System.Windows.Automation.AutomationProperty IsReadOnlyProperty; + public static readonly System.Windows.Automation.AutomationProperty LargeChangeProperty; + public static readonly System.Windows.Automation.AutomationProperty MaximumProperty; + public static readonly System.Windows.Automation.AutomationProperty MinimumProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SmallChangeProperty; + public static readonly System.Windows.Automation.AutomationProperty ValueProperty; + public System.Windows.Automation.RangeValuePattern.RangeValuePatternInformation Cached { get { throw null; } } + public System.Windows.Automation.RangeValuePattern.RangeValuePatternInformation Current { get { throw null; } } + public void SetValue(double value) { } + public partial struct RangeValuePatternInformation + { + public bool IsReadOnly { get { throw null; } } + public double LargeChange { get { throw null; } } + public double Maximum { get { throw null; } } + public double Minimum { get { throw null; } } + public double SmallChange { get { throw null; } } + public double Value { get { throw null; } } + } + } + public partial class ScrollItemPattern : System.Windows.Automation.BasePattern + { + internal ScrollItemPattern() { } + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public void ScrollIntoView() { } + } + public partial class ScrollPattern : System.Windows.Automation.BasePattern + { + internal ScrollPattern() { } + public static readonly System.Windows.Automation.AutomationProperty HorizontallyScrollableProperty; + public static readonly System.Windows.Automation.AutomationProperty HorizontalScrollPercentProperty; + public static readonly System.Windows.Automation.AutomationProperty HorizontalViewSizeProperty; + public const double NoScroll = -1; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty VerticallyScrollableProperty; + public static readonly System.Windows.Automation.AutomationProperty VerticalScrollPercentProperty; + public static readonly System.Windows.Automation.AutomationProperty VerticalViewSizeProperty; + public System.Windows.Automation.ScrollPattern.ScrollPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.ScrollPattern.ScrollPatternInformation Current { get { throw null; } } + public void Scroll(System.Windows.Automation.ScrollAmount horizontalAmount, System.Windows.Automation.ScrollAmount verticalAmount) { } + public void ScrollHorizontal(System.Windows.Automation.ScrollAmount amount) { } + public void ScrollVertical(System.Windows.Automation.ScrollAmount amount) { } + public void SetScrollPercent(double horizontalPercent, double verticalPercent) { } + public partial struct ScrollPatternInformation + { + public bool HorizontallyScrollable { get { throw null; } } + public double HorizontalScrollPercent { get { throw null; } } + public double HorizontalViewSize { get { throw null; } } + public bool VerticallyScrollable { get { throw null; } } + public double VerticalScrollPercent { get { throw null; } } + public double VerticalViewSize { get { throw null; } } + } + } + public partial class SelectionItemPattern : System.Windows.Automation.BasePattern + { + internal SelectionItemPattern() { } + public static readonly System.Windows.Automation.AutomationEvent ElementAddedToSelectionEvent; + public static readonly System.Windows.Automation.AutomationEvent ElementRemovedFromSelectionEvent; + public static readonly System.Windows.Automation.AutomationEvent ElementSelectedEvent; + public static readonly System.Windows.Automation.AutomationProperty IsSelectedProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SelectionContainerProperty; + public System.Windows.Automation.SelectionItemPattern.SelectionItemPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.SelectionItemPattern.SelectionItemPatternInformation Current { get { throw null; } } + public void AddToSelection() { } + public void RemoveFromSelection() { } + public void Select() { } + public partial struct SelectionItemPatternInformation + { + public bool IsSelected { get { throw null; } } + public System.Windows.Automation.AutomationElement SelectionContainer { get { throw null; } } + } + } + public partial class SelectionPattern : System.Windows.Automation.BasePattern + { + internal SelectionPattern() { } + public static readonly System.Windows.Automation.AutomationProperty CanSelectMultipleProperty; + public static readonly System.Windows.Automation.AutomationEvent InvalidatedEvent; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionRequiredProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SelectionProperty; + public System.Windows.Automation.SelectionPattern.SelectionPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.SelectionPattern.SelectionPatternInformation Current { get { throw null; } } + public partial struct SelectionPatternInformation + { + public bool CanSelectMultiple { get { throw null; } } + public bool IsSelectionRequired { get { throw null; } } + public System.Windows.Automation.AutomationElement[] GetSelection() { throw null; } + } + } + public partial class SynchronizedInputPattern : System.Windows.Automation.BasePattern + { + internal SynchronizedInputPattern() { } + public static readonly System.Windows.Automation.AutomationEvent InputDiscardedEvent; + public static readonly System.Windows.Automation.AutomationEvent InputReachedOtherElementEvent; + public static readonly System.Windows.Automation.AutomationEvent InputReachedTargetEvent; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public void Cancel() { } + public void StartListening(System.Windows.Automation.SynchronizedInputType inputType) { } + } + public partial class TableItemPattern : System.Windows.Automation.GridItemPattern + { + internal TableItemPattern() { } + public static readonly System.Windows.Automation.AutomationProperty ColumnHeaderItemsProperty; + public static readonly new System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowHeaderItemsProperty; + public new System.Windows.Automation.TableItemPattern.TableItemPatternInformation Cached { get { throw null; } } + public new System.Windows.Automation.TableItemPattern.TableItemPatternInformation Current { get { throw null; } } + public partial struct TableItemPatternInformation + { + public int Column { get { throw null; } } + public int ColumnSpan { get { throw null; } } + public System.Windows.Automation.AutomationElement ContainingGrid { get { throw null; } } + public int Row { get { throw null; } } + public int RowSpan { get { throw null; } } + public System.Windows.Automation.AutomationElement[] GetColumnHeaderItems() { throw null; } + public System.Windows.Automation.AutomationElement[] GetRowHeaderItems() { throw null; } + } + } + public partial class TablePattern : System.Windows.Automation.GridPattern + { + internal TablePattern() { } + public static readonly System.Windows.Automation.AutomationProperty ColumnHeadersProperty; + public static readonly new System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowHeadersProperty; + public static readonly System.Windows.Automation.AutomationProperty RowOrColumnMajorProperty; + public new System.Windows.Automation.TablePattern.TablePatternInformation Cached { get { throw null; } } + public new System.Windows.Automation.TablePattern.TablePatternInformation Current { get { throw null; } } + public partial struct TablePatternInformation + { + public int ColumnCount { get { throw null; } } + public int RowCount { get { throw null; } } + public System.Windows.Automation.RowOrColumnMajor RowOrColumnMajor { get { throw null; } } + public System.Windows.Automation.AutomationElement[] GetColumnHeaders() { throw null; } + public System.Windows.Automation.AutomationElement[] GetRowHeaders() { throw null; } + } + } + public partial class TextPattern : System.Windows.Automation.BasePattern + { + internal TextPattern() { } + public static readonly System.Windows.Automation.AutomationTextAttribute AnimationStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute BackgroundColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute BulletStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute CapStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute CultureAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontNameAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontSizeAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontWeightAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute ForegroundColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute HorizontalTextAlignmentAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationFirstLineAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationLeadingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationTrailingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsHiddenAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsItalicAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsReadOnlyAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsSubscriptAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsSuperscriptAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginBottomAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginLeadingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginTopAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginTrailingAttribute; + public static readonly object MixedAttributeValue; + public static readonly System.Windows.Automation.AutomationTextAttribute OutlineStylesAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute OverlineColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute OverlineStyleAttribute; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationTextAttribute StrikethroughColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute StrikethroughStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute TabsAttribute; + public static readonly System.Windows.Automation.AutomationEvent TextChangedEvent; + public static readonly System.Windows.Automation.AutomationTextAttribute TextFlowDirectionsAttribute; + public static readonly System.Windows.Automation.AutomationEvent TextSelectionChangedEvent; + public static readonly System.Windows.Automation.AutomationTextAttribute UnderlineColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute UnderlineStyleAttribute; + public System.Windows.Automation.Text.TextPatternRange DocumentRange { get { throw null; } } + public System.Windows.Automation.SupportedTextSelection SupportedTextSelection { get { throw null; } } + public System.Windows.Automation.Text.TextPatternRange[] GetSelection() { throw null; } + public System.Windows.Automation.Text.TextPatternRange[] GetVisibleRanges() { throw null; } + public System.Windows.Automation.Text.TextPatternRange RangeFromChild(System.Windows.Automation.AutomationElement childElement) { throw null; } + public System.Windows.Automation.Text.TextPatternRange RangeFromPoint(System.Windows.Point screenLocation) { throw null; } + } + public partial class TogglePattern : System.Windows.Automation.BasePattern + { + internal TogglePattern() { } + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty ToggleStateProperty; + public System.Windows.Automation.TogglePattern.TogglePatternInformation Cached { get { throw null; } } + public System.Windows.Automation.TogglePattern.TogglePatternInformation Current { get { throw null; } } + public void Toggle() { } + public partial struct TogglePatternInformation + { + public System.Windows.Automation.ToggleState ToggleState { get { throw null; } } + } + } + public partial class TransformPattern : System.Windows.Automation.BasePattern + { + internal TransformPattern() { } + public static readonly System.Windows.Automation.AutomationProperty CanMoveProperty; + public static readonly System.Windows.Automation.AutomationProperty CanResizeProperty; + public static readonly System.Windows.Automation.AutomationProperty CanRotateProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public System.Windows.Automation.TransformPattern.TransformPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.TransformPattern.TransformPatternInformation Current { get { throw null; } } + public void Move(double x, double y) { } + public void Resize(double width, double height) { } + public void Rotate(double degrees) { } + public partial struct TransformPatternInformation + { + public bool CanMove { get { throw null; } } + public bool CanResize { get { throw null; } } + public bool CanRotate { get { throw null; } } + } + } + public sealed partial class TreeWalker + { + public static readonly System.Windows.Automation.TreeWalker ContentViewWalker; + public static readonly System.Windows.Automation.TreeWalker ControlViewWalker; + public static readonly System.Windows.Automation.TreeWalker RawViewWalker; + public TreeWalker(System.Windows.Automation.Condition condition) { } + public System.Windows.Automation.Condition Condition { get { throw null; } } + public System.Windows.Automation.AutomationElement GetFirstChild(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement GetFirstChild(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + public System.Windows.Automation.AutomationElement GetLastChild(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement GetLastChild(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + public System.Windows.Automation.AutomationElement GetNextSibling(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement GetNextSibling(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + public System.Windows.Automation.AutomationElement GetParent(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement GetParent(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + public System.Windows.Automation.AutomationElement GetPreviousSibling(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement GetPreviousSibling(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + public System.Windows.Automation.AutomationElement Normalize(System.Windows.Automation.AutomationElement element) { throw null; } + public System.Windows.Automation.AutomationElement Normalize(System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request) { throw null; } + } + public partial class ValuePattern : System.Windows.Automation.BasePattern + { + internal ValuePattern() { } + public static readonly System.Windows.Automation.AutomationProperty IsReadOnlyProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty ValueProperty; + public System.Windows.Automation.ValuePattern.ValuePatternInformation Cached { get { throw null; } } + public System.Windows.Automation.ValuePattern.ValuePatternInformation Current { get { throw null; } } + public void SetValue(string value) { } + public partial struct ValuePatternInformation + { + public bool IsReadOnly { get { throw null; } } + public string Value { get { throw null; } } + } + } + public partial class VirtualizedItemPattern : System.Windows.Automation.BasePattern + { + internal VirtualizedItemPattern() { } + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public void Realize() { } + } + public partial class WindowPattern : System.Windows.Automation.BasePattern + { + internal WindowPattern() { } + public static readonly System.Windows.Automation.AutomationProperty CanMaximizeProperty; + public static readonly System.Windows.Automation.AutomationProperty CanMinimizeProperty; + public static readonly System.Windows.Automation.AutomationProperty IsModalProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTopmostProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationEvent WindowClosedEvent; + public static readonly System.Windows.Automation.AutomationProperty WindowInteractionStateProperty; + public static readonly System.Windows.Automation.AutomationEvent WindowOpenedEvent; + public static readonly System.Windows.Automation.AutomationProperty WindowVisualStateProperty; + public System.Windows.Automation.WindowPattern.WindowPatternInformation Cached { get { throw null; } } + public System.Windows.Automation.WindowPattern.WindowPatternInformation Current { get { throw null; } } + public void Close() { } + public void SetWindowVisualState(System.Windows.Automation.WindowVisualState state) { } + public bool WaitForInputIdle(int milliseconds) { throw null; } + public partial struct WindowPatternInformation + { + public bool CanMaximize { get { throw null; } } + public bool CanMinimize { get { throw null; } } + public bool IsModal { get { throw null; } } + public bool IsTopmost { get { throw null; } } + public System.Windows.Automation.WindowInteractionState WindowInteractionState { get { throw null; } } + public System.Windows.Automation.WindowVisualState WindowVisualState { get { throw null; } } + } + } +} +namespace System.Windows.Automation.Text +{ + public partial class TextPatternRange + { + internal TextPatternRange() { } + public System.Windows.Automation.TextPattern TextPattern { get { throw null; } } + public void AddToSelection() { } + public System.Windows.Automation.Text.TextPatternRange Clone() { throw null; } + public bool Compare(System.Windows.Automation.Text.TextPatternRange range) { throw null; } + public int CompareEndpoints(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Text.TextPatternRange targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint) { throw null; } + public void ExpandToEnclosingUnit(System.Windows.Automation.Text.TextUnit unit) { } + public System.Windows.Automation.Text.TextPatternRange FindAttribute(System.Windows.Automation.AutomationTextAttribute attribute, object value, bool backward) { throw null; } + public System.Windows.Automation.Text.TextPatternRange FindText(string text, bool backward, bool ignoreCase) { throw null; } + public object GetAttributeValue(System.Windows.Automation.AutomationTextAttribute attribute) { throw null; } + public System.Windows.Rect[] GetBoundingRectangles() { throw null; } + public System.Windows.Automation.AutomationElement[] GetChildren() { throw null; } + public System.Windows.Automation.AutomationElement GetEnclosingElement() { throw null; } + public string GetText(int maxLength) { throw null; } + public int Move(System.Windows.Automation.Text.TextUnit unit, int count) { throw null; } + public void MoveEndpointByRange(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Text.TextPatternRange targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint) { } + public int MoveEndpointByUnit(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Text.TextUnit unit, int count) { throw null; } + public void RemoveFromSelection() { } + public void ScrollIntoView(bool alignToTop) { } + public void Select() { } + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj index 3d8969b4094..419e7001702 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/UIAutomationClientSideProviders.csproj @@ -108,6 +108,9 @@ + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj new file mode 100644 index 00000000000..dd65b688744 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders-ref.csproj @@ -0,0 +1,44 @@ + + + UIAutomationClientSideProviders + UIAutomationClientSideProviders-ref + $(TargetGroup)-$(PackageId)/ + AnyCPU;x64 + $(DefineConstants);UIAUTOMATIONCLIENTSIDEPROVIDERS + $(NoWarn);0618 + true + netcoreapp3.0 + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders.cs b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders.cs new file mode 100644 index 00000000000..a9bfef3ed87 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationClientSideProviders/ref/UIAutomationClientSideProviders.cs @@ -0,0 +1,7 @@ +namespace UIAutomationClientsideProviders +{ + public static partial class UIAutomationClientSideProviders + { + public static System.Windows.Automation.ClientSideProviderDescription[] ClientSideProviderDescriptionTable; + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj index ee7bfc33eb7..dcc2ca6a212 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/UIAutomationProvider.csproj @@ -71,5 +71,8 @@ + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj new file mode 100644 index 00000000000..68544cffb2e --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider-ref.csproj @@ -0,0 +1,38 @@ + + + UIAutomationProvider + UIAutomationProvider-ref + $(TargetGroup)-$(PackageId)/ + $(NoWarn);0618 + $(DefineConstants);AUTOMATION + false + MS.Internal.Automation + SRID + AnyCPU;x64 + netcoreapp3.0 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider.cs b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider.cs new file mode 100644 index 00000000000..b5e8fcdc9e1 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationProvider/ref/UIAutomationProvider.cs @@ -0,0 +1,225 @@ +namespace System.Windows.Automation.Provider +{ + public static partial class AutomationInteropProvider + { + public const int AppendRuntimeId = 3; + public const int InvalidateLimit = 20; + public const int ItemsInvalidateLimit = 5; + public const int RootObjectId = -25; + public static bool ClientsAreListening { get { throw null; } } + public static System.Windows.Automation.Provider.IRawElementProviderSimple HostProviderFromHandle(System.IntPtr hwnd) { throw null; } + public static void RaiseAutomationEvent(System.Windows.Automation.AutomationEvent eventId, System.Windows.Automation.Provider.IRawElementProviderSimple provider, System.Windows.Automation.AutomationEventArgs e) { } + public static void RaiseAutomationPropertyChangedEvent(System.Windows.Automation.Provider.IRawElementProviderSimple element, System.Windows.Automation.AutomationPropertyChangedEventArgs e) { } + public static void RaiseStructureChangedEvent(System.Windows.Automation.Provider.IRawElementProviderSimple provider, System.Windows.Automation.StructureChangedEventArgs e) { } + public static System.IntPtr ReturnRawElementProvider(System.IntPtr hwnd, System.IntPtr wParam, System.IntPtr lParam, System.Windows.Automation.Provider.IRawElementProviderSimple el) { throw null; } + } + public partial interface IDockProvider + { + System.Windows.Automation.DockPosition DockPosition { get; } + void SetDockPosition(System.Windows.Automation.DockPosition dockPosition); + } + public partial interface IExpandCollapseProvider + { + System.Windows.Automation.ExpandCollapseState ExpandCollapseState { get; } + void Collapse(); + void Expand(); + } + public partial interface IGridItemProvider + { + int Column { get; } + int ColumnSpan { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple ContainingGrid { get; } + int Row { get; } + int RowSpan { get; } + } + public partial interface IGridProvider + { + int ColumnCount { get; } + int RowCount { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple GetItem(int row, int column); + } + public partial interface IInvokeProvider + { + void Invoke(); + } + public partial interface IItemContainerProvider + { + System.Windows.Automation.Provider.IRawElementProviderSimple FindItemByProperty(System.Windows.Automation.Provider.IRawElementProviderSimple startAfter, int propertyId, object value); + } + public partial interface IMultipleViewProvider + { + int CurrentView { get; } + int[] GetSupportedViews(); + string GetViewName(int viewId); + void SetCurrentView(int viewId); + } + public partial interface IRangeValueProvider + { + bool IsReadOnly { get; } + double LargeChange { get; } + double Maximum { get; } + double Minimum { get; } + double SmallChange { get; } + double Value { get; } + void SetValue(double value); + } + public partial interface IRawElementProviderAdviseEvents : System.Windows.Automation.Provider.IRawElementProviderSimple + { + void AdviseEventAdded(int eventId, int[] properties); + void AdviseEventRemoved(int eventId, int[] properties); + } + public partial interface IRawElementProviderFragment : System.Windows.Automation.Provider.IRawElementProviderSimple + { + System.Windows.Rect BoundingRectangle { get; } + System.Windows.Automation.Provider.IRawElementProviderFragmentRoot FragmentRoot { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetEmbeddedFragmentRoots(); + int[] GetRuntimeId(); + System.Windows.Automation.Provider.IRawElementProviderFragment Navigate(System.Windows.Automation.Provider.NavigateDirection direction); + void SetFocus(); + } + public partial interface IRawElementProviderFragmentRoot : System.Windows.Automation.Provider.IRawElementProviderFragment, System.Windows.Automation.Provider.IRawElementProviderSimple + { + System.Windows.Automation.Provider.IRawElementProviderFragment ElementProviderFromPoint(double x, double y); + System.Windows.Automation.Provider.IRawElementProviderFragment GetFocus(); + } + public partial interface IRawElementProviderHwndOverride : System.Windows.Automation.Provider.IRawElementProviderSimple + { + System.Windows.Automation.Provider.IRawElementProviderSimple GetOverrideProviderForHwnd(System.IntPtr hwnd); + } + public partial interface IRawElementProviderSimple + { + System.Windows.Automation.Provider.IRawElementProviderSimple HostRawElementProvider { get; } + System.Windows.Automation.Provider.ProviderOptions ProviderOptions { get; } + object GetPatternProvider(int patternId); + object GetPropertyValue(int propertyId); + } + public partial interface IScrollItemProvider + { + void ScrollIntoView(); + } + public partial interface IScrollProvider + { + bool HorizontallyScrollable { get; } + double HorizontalScrollPercent { get; } + double HorizontalViewSize { get; } + bool VerticallyScrollable { get; } + double VerticalScrollPercent { get; } + double VerticalViewSize { get; } + void Scroll(System.Windows.Automation.ScrollAmount horizontalAmount, System.Windows.Automation.ScrollAmount verticalAmount); + void SetScrollPercent(double horizontalPercent, double verticalPercent); + } + public partial interface ISelectionItemProvider + { + bool IsSelected { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple SelectionContainer { get; } + void AddToSelection(); + void RemoveFromSelection(); + void Select(); + } + public partial interface ISelectionProvider + { + bool CanSelectMultiple { get; } + bool IsSelectionRequired { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetSelection(); + } + public partial interface ISynchronizedInputProvider + { + void Cancel(); + void StartListening(System.Windows.Automation.SynchronizedInputType inputType); + } + public partial interface ITableItemProvider : System.Windows.Automation.Provider.IGridItemProvider + { + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetColumnHeaderItems(); + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetRowHeaderItems(); + } + public partial interface ITableProvider : System.Windows.Automation.Provider.IGridProvider + { + System.Windows.Automation.RowOrColumnMajor RowOrColumnMajor { get; } + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetColumnHeaders(); + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetRowHeaders(); + } + public partial interface ITextProvider + { + System.Windows.Automation.Provider.ITextRangeProvider DocumentRange { get; } + System.Windows.Automation.SupportedTextSelection SupportedTextSelection { get; } + System.Windows.Automation.Provider.ITextRangeProvider[] GetSelection(); + System.Windows.Automation.Provider.ITextRangeProvider[] GetVisibleRanges(); + System.Windows.Automation.Provider.ITextRangeProvider RangeFromChild(System.Windows.Automation.Provider.IRawElementProviderSimple childElement); + System.Windows.Automation.Provider.ITextRangeProvider RangeFromPoint(System.Windows.Point screenLocation); + } + public partial interface ITextRangeProvider + { + void AddToSelection(); + System.Windows.Automation.Provider.ITextRangeProvider Clone(); + bool Compare(System.Windows.Automation.Provider.ITextRangeProvider range); + int CompareEndpoints(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Provider.ITextRangeProvider targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint); + void ExpandToEnclosingUnit(System.Windows.Automation.Text.TextUnit unit); + System.Windows.Automation.Provider.ITextRangeProvider FindAttribute(int attribute, object value, bool backward); + System.Windows.Automation.Provider.ITextRangeProvider FindText(string text, bool backward, bool ignoreCase); + object GetAttributeValue(int attribute); + double[] GetBoundingRectangles(); + System.Windows.Automation.Provider.IRawElementProviderSimple[] GetChildren(); + System.Windows.Automation.Provider.IRawElementProviderSimple GetEnclosingElement(); + string GetText(int maxLength); + int Move(System.Windows.Automation.Text.TextUnit unit, int count); + void MoveEndpointByRange(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Provider.ITextRangeProvider targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint); + int MoveEndpointByUnit(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Text.TextUnit unit, int count); + void RemoveFromSelection(); + void ScrollIntoView(bool alignToTop); + void Select(); + } + public partial interface IToggleProvider + { + System.Windows.Automation.ToggleState ToggleState { get; } + void Toggle(); + } + public partial interface ITransformProvider + { + bool CanMove { get; } + bool CanResize { get; } + bool CanRotate { get; } + void Move(double x, double y); + void Resize(double width, double height); + void Rotate(double degrees); + } + public partial interface IValueProvider + { + bool IsReadOnly { get; } + string Value { get; } + void SetValue(string value); + } + public partial interface IVirtualizedItemProvider + { + void Realize(); + } + public partial interface IWindowProvider + { + System.Windows.Automation.WindowInteractionState InteractionState { get; } + bool IsModal { get; } + bool IsTopmost { get; } + bool Maximizable { get; } + bool Minimizable { get; } + System.Windows.Automation.WindowVisualState VisualState { get; } + void Close(); + void SetVisualState(System.Windows.Automation.WindowVisualState state); + bool WaitForInputIdle(int milliseconds); + } + public enum NavigateDirection + { + Parent = 0, + NextSibling = 1, + PreviousSibling = 2, + FirstChild = 3, + LastChild = 4, + } + [System.FlagsAttribute] + public enum ProviderOptions + { + ClientSideProvider = 1, + ServerSideProvider = 2, + NonClientAreaProvider = 4, + OverrideProvider = 8, + ProviderOwnsSetFocus = 16, + UseComThreading = 32, + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj index f98bfbcc86e..8d030ac2bf9 100644 --- a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/UIAutomationTypes.csproj @@ -76,6 +76,9 @@ + + false + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj new file mode 100644 index 00000000000..5215b71ae2a --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes-ref.csproj @@ -0,0 +1,39 @@ + + + UIAutomationTypes + UIAutomationTypes-ref + $(TargetGroup)-$(PackageId)/ + true + $(DefineConstants);UIAUTOMATIONTYPES + $(NoWarn);0618 + false + netcoreapp3.0 + AnyCPU;x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes.cs b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes.cs new file mode 100644 index 00000000000..622e1fbc6d6 --- /dev/null +++ b/src/Microsoft.DotNet.Wpf/src/UIAutomation/UIAutomationTypes/ref/UIAutomationTypes.cs @@ -0,0 +1,578 @@ +namespace System.Windows.Automation +{ + public sealed partial class AsyncContentLoadedEventArgs : System.Windows.Automation.AutomationEventArgs + { + public AsyncContentLoadedEventArgs(System.Windows.Automation.AsyncContentLoadedState asyncContentState, double percentComplete) : base (default(System.Windows.Automation.AutomationEvent)) { } + public System.Windows.Automation.AsyncContentLoadedState AsyncContentLoadedState { get { throw null; } } + public double PercentComplete { get { throw null; } } + } + public enum AsyncContentLoadedState + { + Beginning = 0, + Progress = 1, + Completed = 2, + } + public static partial class AutomationElementIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty AcceleratorKeyProperty; + public static readonly System.Windows.Automation.AutomationProperty AccessKeyProperty; + public static readonly System.Windows.Automation.AutomationEvent AsyncContentLoadedEvent; + public static readonly System.Windows.Automation.AutomationEvent AutomationFocusChangedEvent; + public static readonly System.Windows.Automation.AutomationProperty AutomationIdProperty; + public static readonly System.Windows.Automation.AutomationEvent AutomationPropertyChangedEvent; + public static readonly System.Windows.Automation.AutomationProperty BoundingRectangleProperty; + public static readonly System.Windows.Automation.AutomationProperty ClassNameProperty; + public static readonly System.Windows.Automation.AutomationProperty ClickablePointProperty; + public static readonly System.Windows.Automation.AutomationProperty ControllerForProperty; + public static readonly System.Windows.Automation.AutomationProperty ControlTypeProperty; + public static readonly System.Windows.Automation.AutomationProperty CultureProperty; + public static readonly System.Windows.Automation.AutomationProperty FrameworkIdProperty; + public static readonly System.Windows.Automation.AutomationProperty HasKeyboardFocusProperty; + public static readonly System.Windows.Automation.AutomationProperty HelpTextProperty; + public static readonly System.Windows.Automation.AutomationProperty IsContentElementProperty; + public static readonly System.Windows.Automation.AutomationProperty IsControlElementProperty; + public static readonly System.Windows.Automation.AutomationProperty IsDockPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsEnabledProperty; + public static readonly System.Windows.Automation.AutomationProperty IsExpandCollapsePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsGridItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsGridPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsInvokePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsItemContainerPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsKeyboardFocusableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsMultipleViewPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsOffscreenProperty; + public static readonly System.Windows.Automation.AutomationProperty IsPasswordProperty; + public static readonly System.Windows.Automation.AutomationProperty IsRangeValuePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsRequiredForFormProperty; + public static readonly System.Windows.Automation.AutomationProperty IsScrollItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsScrollPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsSynchronizedInputPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTableItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTablePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTextPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTogglePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTransformPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsValuePatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsVirtualizedItemPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty IsWindowPatternAvailableProperty; + public static readonly System.Windows.Automation.AutomationProperty ItemStatusProperty; + public static readonly System.Windows.Automation.AutomationProperty ItemTypeProperty; + public static readonly System.Windows.Automation.AutomationProperty LabeledByProperty; + public static readonly System.Windows.Automation.AutomationEvent LayoutInvalidatedEvent; + public static readonly System.Windows.Automation.AutomationEvent LiveRegionChangedEvent; + public static readonly System.Windows.Automation.AutomationProperty LiveSettingProperty; + public static readonly System.Windows.Automation.AutomationProperty LocalizedControlTypeProperty; + public static readonly System.Windows.Automation.AutomationEvent MenuClosedEvent; + public static readonly System.Windows.Automation.AutomationEvent MenuOpenedEvent; + public static readonly System.Windows.Automation.AutomationProperty NameProperty; + public static readonly System.Windows.Automation.AutomationProperty NativeWindowHandleProperty; + public static readonly object NotSupported; + public static readonly System.Windows.Automation.AutomationProperty OrientationProperty; + public static readonly System.Windows.Automation.AutomationProperty PositionInSetProperty; + public static readonly System.Windows.Automation.AutomationProperty ProcessIdProperty; + public static readonly System.Windows.Automation.AutomationProperty RuntimeIdProperty; + public static readonly System.Windows.Automation.AutomationProperty SizeOfSetProperty; + public static readonly System.Windows.Automation.AutomationEvent StructureChangedEvent; + public static readonly System.Windows.Automation.AutomationEvent ToolTipClosedEvent; + public static readonly System.Windows.Automation.AutomationEvent ToolTipOpenedEvent; + } + public partial class AutomationEvent : System.Windows.Automation.AutomationIdentifier + { + internal AutomationEvent() { } + public static System.Windows.Automation.AutomationEvent LookupById(int id) { throw null; } + } + public partial class AutomationEventArgs : System.EventArgs + { + public AutomationEventArgs(System.Windows.Automation.AutomationEvent eventId) { } + public System.Windows.Automation.AutomationEvent EventId { get { throw null; } } + } + public delegate void AutomationEventHandler(object sender, System.Windows.Automation.AutomationEventArgs e); + public partial class AutomationIdentifier : System.IComparable + { + internal AutomationIdentifier() { } + public int Id { get { throw null; } } + public string ProgrammaticName { get { throw null; } } + public int CompareTo(object obj) { throw null; } + public override bool Equals(object obj) { throw null; } + public override int GetHashCode() { throw null; } + } + public partial class AutomationPattern : System.Windows.Automation.AutomationIdentifier + { + internal AutomationPattern() { } + public static System.Windows.Automation.AutomationPattern LookupById(int id) { throw null; } + } + public partial class AutomationProperty : System.Windows.Automation.AutomationIdentifier + { + internal AutomationProperty() { } + public static System.Windows.Automation.AutomationProperty LookupById(int id) { throw null; } + } + public sealed partial class AutomationPropertyChangedEventArgs : System.Windows.Automation.AutomationEventArgs + { + public AutomationPropertyChangedEventArgs(System.Windows.Automation.AutomationProperty property, object oldValue, object newValue) : base (default(System.Windows.Automation.AutomationEvent)) { } + public object NewValue { get { throw null; } } + public object OldValue { get { throw null; } } + public System.Windows.Automation.AutomationProperty Property { get { throw null; } } + } + public delegate void AutomationPropertyChangedEventHandler(object sender, System.Windows.Automation.AutomationPropertyChangedEventArgs e); + public partial class AutomationTextAttribute : System.Windows.Automation.AutomationIdentifier + { + internal AutomationTextAttribute() { } + public static System.Windows.Automation.AutomationTextAttribute LookupById(int id) { throw null; } + } + public partial class ControlType : System.Windows.Automation.AutomationIdentifier + { + internal ControlType() { } + public static readonly System.Windows.Automation.ControlType Button; + public static readonly System.Windows.Automation.ControlType Calendar; + public static readonly System.Windows.Automation.ControlType CheckBox; + public static readonly System.Windows.Automation.ControlType ComboBox; + public static readonly System.Windows.Automation.ControlType Custom; + public static readonly System.Windows.Automation.ControlType DataGrid; + public static readonly System.Windows.Automation.ControlType DataItem; + public static readonly System.Windows.Automation.ControlType Document; + public static readonly System.Windows.Automation.ControlType Edit; + public static readonly System.Windows.Automation.ControlType Group; + public static readonly System.Windows.Automation.ControlType Header; + public static readonly System.Windows.Automation.ControlType HeaderItem; + public static readonly System.Windows.Automation.ControlType Hyperlink; + public static readonly System.Windows.Automation.ControlType Image; + public static readonly System.Windows.Automation.ControlType List; + public static readonly System.Windows.Automation.ControlType ListItem; + public static readonly System.Windows.Automation.ControlType Menu; + public static readonly System.Windows.Automation.ControlType MenuBar; + public static readonly System.Windows.Automation.ControlType MenuItem; + public static readonly System.Windows.Automation.ControlType Pane; + public static readonly System.Windows.Automation.ControlType ProgressBar; + public static readonly System.Windows.Automation.ControlType RadioButton; + public static readonly System.Windows.Automation.ControlType ScrollBar; + public static readonly System.Windows.Automation.ControlType Separator; + public static readonly System.Windows.Automation.ControlType Slider; + public static readonly System.Windows.Automation.ControlType Spinner; + public static readonly System.Windows.Automation.ControlType SplitButton; + public static readonly System.Windows.Automation.ControlType StatusBar; + public static readonly System.Windows.Automation.ControlType Tab; + public static readonly System.Windows.Automation.ControlType TabItem; + public static readonly System.Windows.Automation.ControlType Table; + public static readonly System.Windows.Automation.ControlType Text; + public static readonly System.Windows.Automation.ControlType Thumb; + public static readonly System.Windows.Automation.ControlType TitleBar; + public static readonly System.Windows.Automation.ControlType ToolBar; + public static readonly System.Windows.Automation.ControlType ToolTip; + public static readonly System.Windows.Automation.ControlType Tree; + public static readonly System.Windows.Automation.ControlType TreeItem; + public static readonly System.Windows.Automation.ControlType Window; + public string LocalizedControlType { get { throw null; } } + public System.Windows.Automation.AutomationPattern[] GetNeverSupportedPatterns() { throw null; } + public System.Windows.Automation.AutomationPattern[][] GetRequiredPatternSets() { throw null; } + public System.Windows.Automation.AutomationProperty[] GetRequiredProperties() { throw null; } + public static System.Windows.Automation.ControlType LookupById(int id) { throw null; } + } + public static partial class DockPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty DockPositionProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public enum DockPosition + { + Top = 0, + Left = 1, + Bottom = 2, + Right = 3, + Fill = 4, + None = 5, + } + public partial class ElementNotAvailableException : System.SystemException + { + public ElementNotAvailableException() { } + public ElementNotAvailableException(System.Exception innerException) { } + protected ElementNotAvailableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public ElementNotAvailableException(string message) { } + public ElementNotAvailableException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public partial class ElementNotEnabledException : System.InvalidOperationException + { + public ElementNotEnabledException() { } + protected ElementNotEnabledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public ElementNotEnabledException(string message) { } + public ElementNotEnabledException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public static partial class ExpandCollapsePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty ExpandCollapseStateProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public enum ExpandCollapseState + { + Collapsed = 0, + Expanded = 1, + PartiallyExpanded = 2, + LeafNode = 3, + } + public static partial class GridItemPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty ColumnProperty; + public static readonly System.Windows.Automation.AutomationProperty ColumnSpanProperty; + public static readonly System.Windows.Automation.AutomationProperty ContainingGridProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowProperty; + public static readonly System.Windows.Automation.AutomationProperty RowSpanProperty; + } + public static partial class GridPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty ColumnCountProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowCountProperty; + } + public static partial class InvokePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationEvent InvokedEvent; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public static partial class ItemContainerPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public static partial class MultipleViewPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty CurrentViewProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SupportedViewsProperty; + } + public partial class NoClickablePointException : System.Exception + { + public NoClickablePointException() { } + protected NoClickablePointException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public NoClickablePointException(string message) { } + public NoClickablePointException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public enum OrientationType + { + None = 0, + Horizontal = 1, + Vertical = 2, + } + public partial class ProxyAssemblyNotLoadedException : System.Exception + { + public ProxyAssemblyNotLoadedException() { } + protected ProxyAssemblyNotLoadedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + public ProxyAssemblyNotLoadedException(string message) { } + public ProxyAssemblyNotLoadedException(string message, System.Exception innerException) { } + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } + } + public static partial class RangeValuePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty IsReadOnlyProperty; + public static readonly System.Windows.Automation.AutomationProperty LargeChangeProperty; + public static readonly System.Windows.Automation.AutomationProperty MaximumProperty; + public static readonly System.Windows.Automation.AutomationProperty MinimumProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SmallChangeProperty; + public static readonly System.Windows.Automation.AutomationProperty ValueProperty; + } + public enum RowOrColumnMajor + { + RowMajor = 0, + ColumnMajor = 1, + Indeterminate = 2, + } + public enum ScrollAmount + { + LargeDecrement = 0, + SmallDecrement = 1, + NoAmount = 2, + LargeIncrement = 3, + SmallIncrement = 4, + } + public static partial class ScrollItemPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public static partial class ScrollPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty HorizontallyScrollableProperty; + public static readonly System.Windows.Automation.AutomationProperty HorizontalScrollPercentProperty; + public static readonly System.Windows.Automation.AutomationProperty HorizontalViewSizeProperty; + public const double NoScroll = -1; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty VerticallyScrollableProperty; + public static readonly System.Windows.Automation.AutomationProperty VerticalScrollPercentProperty; + public static readonly System.Windows.Automation.AutomationProperty VerticalViewSizeProperty; + } + public static partial class SelectionItemPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationEvent ElementAddedToSelectionEvent; + public static readonly System.Windows.Automation.AutomationEvent ElementRemovedFromSelectionEvent; + public static readonly System.Windows.Automation.AutomationEvent ElementSelectedEvent; + public static readonly System.Windows.Automation.AutomationProperty IsSelectedProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SelectionContainerProperty; + } + public static partial class SelectionPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty CanSelectMultipleProperty; + public static readonly System.Windows.Automation.AutomationEvent InvalidatedEvent; + public static readonly System.Windows.Automation.AutomationProperty IsSelectionRequiredProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty SelectionProperty; + } + public sealed partial class StructureChangedEventArgs : System.Windows.Automation.AutomationEventArgs + { + public StructureChangedEventArgs(System.Windows.Automation.StructureChangeType structureChangeType, int[] runtimeId) : base (default(System.Windows.Automation.AutomationEvent)) { } + public System.Windows.Automation.StructureChangeType StructureChangeType { get { throw null; } } + public int[] GetRuntimeId() { throw null; } + } + public delegate void StructureChangedEventHandler(object sender, System.Windows.Automation.StructureChangedEventArgs e); + public enum StructureChangeType + { + ChildAdded = 0, + ChildRemoved = 1, + ChildrenInvalidated = 2, + ChildrenBulkAdded = 3, + ChildrenBulkRemoved = 4, + ChildrenReordered = 5, + } + [System.FlagsAttribute] + public enum SupportedTextSelection + { + None = 0, + Single = 1, + Multiple = 2, + } + public static partial class SynchronizedInputPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationEvent InputDiscardedEvent; + public static readonly System.Windows.Automation.AutomationEvent InputReachedOtherElementEvent; + public static readonly System.Windows.Automation.AutomationEvent InputReachedTargetEvent; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public enum SynchronizedInputType + { + KeyUp = 1, + KeyDown = 2, + MouseLeftButtonUp = 4, + MouseLeftButtonDown = 8, + MouseRightButtonUp = 16, + MouseRightButtonDown = 32, + } + public static partial class TableItemPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty ColumnHeaderItemsProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowHeaderItemsProperty; + } + public static partial class TablePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty ColumnHeadersProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty RowHeadersProperty; + public static readonly System.Windows.Automation.AutomationProperty RowOrColumnMajorProperty; + } + public static partial class TextPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationTextAttribute AnimationStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute BackgroundColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute BulletStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute CapStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute CultureAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontNameAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontSizeAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute FontWeightAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute ForegroundColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute HorizontalTextAlignmentAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationFirstLineAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationLeadingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IndentationTrailingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsHiddenAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsItalicAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsReadOnlyAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsSubscriptAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute IsSuperscriptAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginBottomAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginLeadingAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginTopAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute MarginTrailingAttribute; + public static readonly object MixedAttributeValue; + public static readonly System.Windows.Automation.AutomationTextAttribute OutlineStylesAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute OverlineColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute OverlineStyleAttribute; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationTextAttribute StrikethroughColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute StrikethroughStyleAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute TabsAttribute; + public static readonly System.Windows.Automation.AutomationEvent TextChangedEvent; + public static readonly System.Windows.Automation.AutomationTextAttribute TextFlowDirectionsAttribute; + public static readonly System.Windows.Automation.AutomationEvent TextSelectionChangedEvent; + public static readonly System.Windows.Automation.AutomationTextAttribute UnderlineColorAttribute; + public static readonly System.Windows.Automation.AutomationTextAttribute UnderlineStyleAttribute; + } + public static partial class TogglePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty ToggleStateProperty; + } + public enum ToggleState + { + Off = 0, + On = 1, + Indeterminate = 2, + } + public static partial class TransformPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty CanMoveProperty; + public static readonly System.Windows.Automation.AutomationProperty CanResizeProperty; + public static readonly System.Windows.Automation.AutomationProperty CanRotateProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + [System.FlagsAttribute] + public enum TreeScope + { + Element = 1, + Children = 2, + Descendants = 4, + Subtree = 7, + Parent = 8, + Ancestors = 16, + } + public static partial class ValuePatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty IsReadOnlyProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationProperty ValueProperty; + } + public static partial class VirtualizedItemPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationPattern Pattern; + } + public sealed partial class WindowClosedEventArgs : System.Windows.Automation.AutomationEventArgs + { + public WindowClosedEventArgs(int[] runtimeId) : base (default(System.Windows.Automation.AutomationEvent)) { } + public int[] GetRuntimeId() { throw null; } + } + public enum WindowInteractionState + { + Running = 0, + Closing = 1, + ReadyForUserInteraction = 2, + BlockedByModalWindow = 3, + NotResponding = 4, + } + public static partial class WindowPatternIdentifiers + { + public static readonly System.Windows.Automation.AutomationProperty CanMaximizeProperty; + public static readonly System.Windows.Automation.AutomationProperty CanMinimizeProperty; + public static readonly System.Windows.Automation.AutomationProperty IsModalProperty; + public static readonly System.Windows.Automation.AutomationProperty IsTopmostProperty; + public static readonly System.Windows.Automation.AutomationPattern Pattern; + public static readonly System.Windows.Automation.AutomationEvent WindowClosedEvent; + public static readonly System.Windows.Automation.AutomationProperty WindowInteractionStateProperty; + public static readonly System.Windows.Automation.AutomationEvent WindowOpenedEvent; + public static readonly System.Windows.Automation.AutomationProperty WindowVisualStateProperty; + } + public enum WindowVisualState + { + Normal = 0, + Maximized = 1, + Minimized = 2, + } +} +namespace System.Windows.Automation.Text +{ + public enum AnimationStyle + { + Other = -1, + None = 0, + LasVegasLights = 1, + BlinkingBackground = 2, + SparkleText = 3, + MarchingBlackAnts = 4, + MarchingRedAnts = 5, + Shimmer = 6, + } + public enum BulletStyle + { + Other = -1, + None = 0, + HollowRoundBullet = 1, + FilledRoundBullet = 2, + HollowSquareBullet = 3, + FilledSquareBullet = 4, + DashBullet = 5, + } + public enum CapStyle + { + Other = -1, + None = 0, + SmallCap = 1, + AllCap = 2, + AllPetiteCaps = 3, + PetiteCaps = 4, + Unicase = 5, + Titling = 6, + } + [System.FlagsAttribute] + public enum FlowDirections + { + Default = 0, + RightToLeft = 1, + BottomToTop = 2, + Vertical = 4, + } + public enum HorizontalTextAlignment + { + Left = 0, + Centered = 1, + Right = 2, + Justified = 3, + } + [System.FlagsAttribute] + public enum OutlineStyles + { + None = 0, + Outline = 1, + Shadow = 2, + Engraved = 4, + Embossed = 8, + } + public enum TextDecorationLineStyle + { + Other = -1, + None = 0, + Single = 1, + WordsOnly = 2, + Double = 3, + Dot = 4, + Dash = 5, + DashDot = 6, + DashDotDot = 7, + Wavy = 8, + ThickSingle = 9, + DoubleWavy = 11, + ThickWavy = 12, + LongDash = 13, + ThickDash = 14, + ThickDashDot = 15, + ThickDashDotDot = 16, + ThickDot = 17, + ThickLongDash = 18, + } + public enum TextPatternRangeEndpoint + { + Start = 0, + End = 1, + } + public enum TextUnit + { + Character = 0, + Format = 1, + Word = 2, + Line = 3, + Paragraph = 4, + Page = 5, + Document = 6, + } +} diff --git a/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj b/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj index b35ba34cc3a..94200a498dd 100644 --- a/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj +++ b/src/Microsoft.DotNet.Wpf/src/WindowsBase/WindowsBase.csproj @@ -473,6 +473,9 @@ + + false +