├── .gitattributes ├── .gitignore ├── CoreWindowInterop ├── AccountsSettingsPaneInterop.cs ├── AppServiceInterop.cs ├── CastingInterop.cs ├── DragDropInterop.cs ├── EfsWRTInterop.cs ├── HolographicSpaceInterop.cs ├── InputPaneInterop.cs ├── PlayToManagerInterop.cs ├── Print3DManagerInterop.cs ├── PrintManagerInterop.cs ├── RadialControllerInterop.cs ├── SpatialInteractionManagerInterop.cs ├── SystemMediaTransportControlsInterop.cs ├── UIViewSettingsInterop.cs ├── UWPInterop.csproj ├── UserActivityInterop.cs ├── UserConsentVerifierInterop.cs ├── WebAuthenticationCoreManagerInterop.cs ├── Windows.Data.PDF.Interop.cs └── Windows.Devices.AllJoyn.Interop.cs ├── LICENSE ├── README.md ├── UWPInterop.sln └── WindowsFormsApp1 ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── WindowsFormsApp1.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/.gitignore -------------------------------------------------------------------------------- /CoreWindowInterop/AccountsSettingsPaneInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/AccountsSettingsPaneInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/AppServiceInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/AppServiceInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/CastingInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/CastingInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/DragDropInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/DragDropInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/EfsWRTInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/EfsWRTInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/HolographicSpaceInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/HolographicSpaceInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/InputPaneInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/InputPaneInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/PlayToManagerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/PlayToManagerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/Print3DManagerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/Print3DManagerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/PrintManagerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/PrintManagerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/RadialControllerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/RadialControllerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/SpatialInteractionManagerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/SpatialInteractionManagerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/SystemMediaTransportControlsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/SystemMediaTransportControlsInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/UIViewSettingsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/UIViewSettingsInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/UWPInterop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/UWPInterop.csproj -------------------------------------------------------------------------------- /CoreWindowInterop/UserActivityInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/UserActivityInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/UserConsentVerifierInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/UserConsentVerifierInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/WebAuthenticationCoreManagerInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/WebAuthenticationCoreManagerInterop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/Windows.Data.PDF.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/Windows.Data.PDF.Interop.cs -------------------------------------------------------------------------------- /CoreWindowInterop/Windows.Devices.AllJoyn.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/CoreWindowInterop/Windows.Devices.AllJoyn.Interop.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/README.md -------------------------------------------------------------------------------- /UWPInterop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/UWPInterop.sln -------------------------------------------------------------------------------- /WindowsFormsApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/App.config -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Form1.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Form1.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Form1.resx -------------------------------------------------------------------------------- /WindowsFormsApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Program.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Properties/Resources.resx -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WindowsFormsApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/Properties/Settings.settings -------------------------------------------------------------------------------- /WindowsFormsApp1/WindowsFormsApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamBraden/WindowsInteropWrappers/HEAD/WindowsFormsApp1/WindowsFormsApp1.csproj --------------------------------------------------------------------------------