├── .gitignore ├── LICENSE.txt ├── README.md ├── Samples ├── AeroGlass │ ├── CS │ │ ├── AeroGlassDemo.sln │ │ ├── WindowsFormsGlassDemo │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── WindowsFormsGlassDemo.csproj │ │ └── WpfGlassDemo │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.cs │ │ │ └── WpfGlassDemo.csproj │ └── VB │ │ ├── AeroGlassDemo.sln │ │ ├── WindowsFormsGlassDemo │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Program.vb │ │ └── WindowsFormsGlassDemo.vbproj │ │ └── WpfGlassDemo │ │ ├── Application.xaml │ │ ├── Application.xaml.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ ├── Window1.xaml.vb │ │ └── WpfGlassDemo.vbproj ├── AppRestartRecoveryDemo │ ├── CS │ │ ├── AppRestartRecoveryDemo.csproj │ │ ├── AppRestartRecoveryDemo.sln │ │ ├── CurrentFile.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── VB │ │ ├── AppRestartRecoveryDemo.sln │ │ ├── AppRestartRecoveryDemo.vbproj │ │ ├── CurrentFile.vb │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── Program.vb ├── CollectiveSample │ ├── CollectiveSample.sln │ └── CollectiveSample10.sln ├── DirectX │ ├── CS │ │ ├── AllDirectXCSharpSamples │ │ │ └── AllDirectXCSharpSamples.sln │ │ ├── DXGI │ │ │ └── EnumAdapters │ │ │ │ ├── EnumAdapters.csproj │ │ │ │ ├── EnumAdapters.sln │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Direct2D │ │ │ ├── ChartDemo │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── ChartDemo.csproj │ │ │ │ ├── ChartDemo.sln │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ │ ├── D2DShapes │ │ │ │ ├── BitmapShape.cs │ │ │ │ ├── BitmapUtilities.cs │ │ │ │ ├── D2DShapes.csproj │ │ │ │ ├── D2DShapesControl.cs │ │ │ │ ├── D2DShapesControlWithButtons.Designer.cs │ │ │ │ ├── D2DShapesControlWithButtons.cs │ │ │ │ ├── D2DShapesControlWithButtons.resx │ │ │ │ ├── DrawingShape.cs │ │ │ │ ├── EllipseShape.cs │ │ │ │ ├── GDIEllipsesShape.cs │ │ │ │ ├── GeometryShape.cs │ │ │ │ ├── LayerShape.cs │ │ │ │ ├── LineShape.cs │ │ │ │ ├── MeshShape.cs │ │ │ │ ├── Peacock.jpg │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RectangleShape.cs │ │ │ │ ├── RoundRectangleShape.cs │ │ │ │ ├── TextLayoutShape.cs │ │ │ │ └── TextShape.cs │ │ │ ├── Paint2D │ │ │ │ ├── BitmapShape.cs │ │ │ │ ├── BitmapUtilities.cs │ │ │ │ ├── BrushDialog.Designer.cs │ │ │ │ ├── BrushDialog.cs │ │ │ │ ├── BrushDialog.resx │ │ │ │ ├── DrawingShape.cs │ │ │ │ ├── EllipseShape.cs │ │ │ │ ├── FontEnumComboBox.cs │ │ │ │ ├── GeometryShape.cs │ │ │ │ ├── LineShape.cs │ │ │ │ ├── Paint2D.csproj │ │ │ │ ├── Paint2D.sln │ │ │ │ ├── Paint2DForm.Designer.cs │ │ │ │ ├── Paint2DForm.cs │ │ │ │ ├── Paint2DForm.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── RectangleShape.cs │ │ │ │ ├── RoundRectangleShape.cs │ │ │ │ ├── TextDialog.Designer.cs │ │ │ │ ├── TextDialog.cs │ │ │ │ ├── TextDialog.resx │ │ │ │ └── TextShape.cs │ │ │ ├── RandomShapes │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── RandomShapesDemo.csproj │ │ │ │ ├── RandomShapesDemo.sln │ │ │ │ ├── Window.Designer.cs │ │ │ │ ├── Window.cs │ │ │ │ └── Window.resx │ │ │ └── TextInlineImage │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── BitmapUtilities.cs │ │ │ │ ├── ImageInlineObject.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── TextInlineImage.csproj │ │ │ │ ├── TextInlineImage.sln │ │ │ │ ├── Window1.xaml │ │ │ │ ├── Window1.xaml.cs │ │ │ │ └── img1.jpg │ │ ├── Direct2D_3D │ │ │ ├── D2D_D3D_Interop │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── BitmapUtilities.cs │ │ │ │ ├── D2D_D3D_Interop.csproj │ │ │ │ ├── D2D_D3D_Interop.sln │ │ │ │ ├── D3DStructs.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Window1.xaml │ │ │ │ ├── Window1.xaml.cs │ │ │ │ ├── app.config │ │ │ │ ├── dxgisample.fx │ │ │ │ ├── dxgisample.fxo │ │ │ │ └── tulip.jpg │ │ │ └── SciFiTextDemo │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── D3DStructs.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── SciFiText.fx │ │ │ │ ├── SciFiText.fxo │ │ │ │ ├── SciFiTextDemo.csproj │ │ │ │ ├── SciFiTextDemo.sln │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ ├── Direct3D10 │ │ │ ├── MeshBrowser │ │ │ │ ├── MeshBrowser.csproj │ │ │ │ ├── MeshBrowser.sln │ │ │ │ ├── MeshBrowserForm.Designer.cs │ │ │ │ ├── MeshBrowserForm.cs │ │ │ │ ├── MeshBrowserForm.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── directx.ico │ │ │ ├── TextureSwap │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Resources │ │ │ │ │ ├── airplane 2.x │ │ │ │ │ ├── bihull.bmp │ │ │ │ │ └── wings.bmp │ │ │ │ ├── TextureSwap.csproj │ │ │ │ ├── TextureSwap.sln │ │ │ │ ├── TexturizerDemo.xaml │ │ │ │ └── TexturizerDemo.xaml.cs │ │ │ ├── Tutorial09 │ │ │ │ ├── D3D10Tutorial09_WPF │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── D3D10Tutorial09_WPF.csproj │ │ │ │ │ ├── Media │ │ │ │ │ │ └── Tiger │ │ │ │ │ │ │ ├── tiger.bmp │ │ │ │ │ │ │ └── tiger.x │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ │ ├── TutorialWindow.xaml.cs │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial09_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial09_WinFormsControl.csproj │ │ │ │ │ ├── Media │ │ │ │ │ │ └── Tiger │ │ │ │ │ │ │ ├── tiger.bmp │ │ │ │ │ │ │ └── tiger.x │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ └── Tutorial09.sln │ │ │ ├── Tutorials │ │ │ │ ├── D3D10Tutorial01_WPF │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── D3D10Tutorial01_WPF.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ │ ├── TutorialWindow.xaml.cs │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial01_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial01_WinFormsControl.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial01_WinFormsWindow │ │ │ │ │ ├── D3D10Tutorial01_WinFormsWindow.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial02_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial02_WinFormsControl.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial02.fx │ │ │ │ │ ├── Tutorial02.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial04_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial04_WinFormsControl.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial04.fx │ │ │ │ │ ├── Tutorial04.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial05_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial05_WinFormsControl.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial05.fx │ │ │ │ │ ├── Tutorial05.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial06_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial06_WinFormsControl.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial06.fx │ │ │ │ │ ├── Tutorial06.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── directx.ico │ │ │ │ ├── D3D10Tutorial07_WPF │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── D3D10Tutorial07_WPF.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial07.fx │ │ │ │ │ ├── Tutorial07.fxo │ │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ │ ├── TutorialWindow.xaml.cs │ │ │ │ │ ├── seafloor.dds │ │ │ │ │ └── seafloor.png │ │ │ │ ├── D3D10Tutorial07_WinFormsControl │ │ │ │ │ ├── D3D10Tutorial07_WinFormsControl.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial07.fx │ │ │ │ │ ├── Tutorial07.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ ├── directx.ico │ │ │ │ │ └── seafloor.png │ │ │ │ ├── D3D10Tutorial07_WinFormsWindow │ │ │ │ │ ├── D3D10Tutorial07_WinFormsWindow.csproj │ │ │ │ │ ├── D3DStructs.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Tutorial07.fx │ │ │ │ │ ├── Tutorial07.fxo │ │ │ │ │ ├── TutorialWindow.Designer.cs │ │ │ │ │ ├── TutorialWindow.cs │ │ │ │ │ ├── TutorialWindow.resx │ │ │ │ │ └── seafloor.png │ │ │ │ └── D3D10Tutorials.sln │ │ │ └── WindowsFlag │ │ │ │ ├── D3DStructs.cs │ │ │ │ ├── Effects.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── Window.Designer.cs │ │ │ │ ├── Window.cs │ │ │ │ ├── Window.resx │ │ │ │ ├── WindowsFlag.csproj │ │ │ │ ├── WindowsFlag.fx │ │ │ │ ├── WindowsFlag.fxo │ │ │ │ ├── WindowsFlag.sln │ │ │ │ └── directx.ico │ │ ├── Direct3D11 │ │ │ └── Tutorials │ │ │ │ ├── D3D11Tutorial02_WPF │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Render.hlsl │ │ │ │ ├── Render.ps │ │ │ │ ├── Render.vs │ │ │ │ ├── Tutorial02_WPF.csproj │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ │ │ ├── D3D11Tutorial02_WinFormsControl │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Render.hlsl │ │ │ │ ├── Render.ps │ │ │ │ ├── Render.vs │ │ │ │ └── Tutorial02_WinFormsControl.csproj │ │ │ │ ├── D3D11Tutorial02_WinFormsWindow │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Render.hlsl │ │ │ │ ├── Render.ps │ │ │ │ ├── Render.vs │ │ │ │ └── Tutorial02_WinFormsWindow.csproj │ │ │ │ └── D3D11Tutorials.sln │ │ └── UtilitiesLibrary │ │ │ ├── D3DUtilities │ │ │ ├── Camera │ │ │ │ └── Camera.cs │ │ │ ├── Direct3DUtilities.csproj │ │ │ ├── Math │ │ │ │ ├── Matrix.cs │ │ │ │ └── MatrixUtilities.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Shaders │ │ │ │ └── Shaders.cs │ │ │ └── Texture │ │ │ │ └── TextureLoader.cs │ │ │ └── MeshLoader │ │ │ ├── AirplaneMesh.cs │ │ │ ├── MeshLoader.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Texturizer.cs │ │ │ ├── XMesh.cs │ │ │ ├── XMesh.fx │ │ │ ├── XMesh.fxo │ │ │ ├── XMeshLoader.XDataObject.cs │ │ │ ├── XMeshLoader.cs │ │ │ └── XMeshManager.cs │ ├── UtilitiesLibrary │ │ ├── Controls │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── DirectControl.cpp │ │ │ ├── DirectControl.h │ │ │ ├── DirectHost.cpp │ │ │ ├── DirectHost.h │ │ │ ├── DirectXControls.vcproj │ │ │ ├── RenderControl.cpp │ │ │ ├── RenderControl.h │ │ │ ├── RenderHost.cpp │ │ │ ├── RenderHost.h │ │ │ ├── Stdafx.cpp │ │ │ └── Stdafx.h │ │ └── D3DX10Helpers │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── D3DX10Helpers.cpp │ │ │ ├── D3DX10Helpers.h │ │ │ ├── Direct3DX10.vcproj │ │ │ ├── Stdafx.cpp │ │ │ └── Stdafx.h │ └── VB │ │ ├── AllDirectXVBSamples │ │ └── AllDirectXVBSamples.sln │ │ ├── DXGI │ │ └── EnumAdapters │ │ │ ├── EnumAdapters.sln │ │ │ ├── EnumAdapters.vbproj │ │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ │ └── Program.vb │ │ ├── Direct2D │ │ ├── ChartDemo │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── ChartDemo.sln │ │ │ ├── ChartDemo.vbproj │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ │ ├── D2DShapes │ │ │ ├── BitmapShape.vb │ │ │ ├── BitmapUtilities.vb │ │ │ ├── D2DShapes.vbproj │ │ │ ├── D2DShapesControl.vb │ │ │ ├── D2DShapesControlWithButtons.Designer.vb │ │ │ ├── D2DShapesControlWithButtons.resx │ │ │ ├── D2DShapesControlWithButtons.vb │ │ │ ├── DrawingShape.vb │ │ │ ├── EllipseShape.vb │ │ │ ├── GDIEllipsesShape.vb │ │ │ ├── GeometryShape.vb │ │ │ ├── LayerShape.vb │ │ │ ├── LineShape.vb │ │ │ ├── MeshShape.vb │ │ │ ├── My Project │ │ │ │ └── AssemblyInfo.vb │ │ │ ├── Peacock.jpg │ │ │ ├── RectangleShape.vb │ │ │ ├── RoundRectangleShape.vb │ │ │ ├── TextLayoutShape.vb │ │ │ └── TextShape.vb │ │ ├── Paint2D │ │ │ ├── BitmapShape.vb │ │ │ ├── BitmapUtilities.vb │ │ │ ├── BrushDialog.Designer.vb │ │ │ ├── BrushDialog.resx │ │ │ ├── BrushDialog.vb │ │ │ ├── DrawingShape.vb │ │ │ ├── EllipseShape.vb │ │ │ ├── FontEnumComboBox.vb │ │ │ ├── GeometryShape.vb │ │ │ ├── LineShape.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Paint2D.sln │ │ │ ├── Paint2D.vbproj │ │ │ ├── Paint2DForm.Designer.vb │ │ │ ├── Paint2DForm.resx │ │ │ ├── Paint2DForm.vb │ │ │ ├── Program.vb │ │ │ ├── RectangleShape.vb │ │ │ ├── Resources │ │ │ │ ├── Resource.Designer.vb │ │ │ │ ├── Resource.resx │ │ │ │ └── arrow1.png │ │ │ ├── RoundRectangleShape.vb │ │ │ ├── TextDialog.Designer.vb │ │ │ ├── TextDialog.resx │ │ │ ├── TextDialog.vb │ │ │ └── TextShape.vb │ │ ├── RandomShapes │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── RandomShapesDemo.sln │ │ │ ├── RandomShapesDemo.vbproj │ │ │ ├── Window.Designer.vb │ │ │ ├── Window.resx │ │ │ └── Window.vb │ │ └── TextInlineImage │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── BitmapUtilities.vb │ │ │ ├── ImageInlineObject.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── TextInlineImage.sln │ │ │ ├── TextInlineImage.vbproj │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.vb │ │ │ └── img1.jpg │ │ ├── Direct2D_3D │ │ ├── D2D_D3D_Interop │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── BitmapUtilities.vb │ │ │ ├── D2D_D3D_Interop.sln │ │ │ ├── D2D_D3D_Interop.vbproj │ │ │ ├── D3DStructs.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.vb │ │ │ ├── app.config │ │ │ ├── dxgisample.fx │ │ │ ├── dxgisample.fxo │ │ │ └── tulip.jpg │ │ └── SciFiTextDemo │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── D3DStructs.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SciFiText.fx │ │ │ ├── SciFiText.fxo │ │ │ ├── SciFiTextDemo.sln │ │ │ ├── SciFiTextDemo.vbproj │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ │ ├── Direct3D10 │ │ ├── MeshBrowser │ │ │ ├── MeshBrowser.sln │ │ │ ├── MeshBrowser.vbproj │ │ │ ├── MeshBrowserForm.Designer.vb │ │ │ ├── MeshBrowserForm.resx │ │ │ ├── MeshBrowserForm.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ └── directx.ico │ │ ├── TextureSwap │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ │ ├── airplane 2.x │ │ │ │ ├── bihull.bmp │ │ │ │ └── wings.bmp │ │ │ ├── TextureSwap.sln │ │ │ ├── TextureSwap.vbproj │ │ │ ├── TexturizerDemo.xaml │ │ │ └── TexturizerDemo.xaml.vb │ │ ├── Tutorial09 │ │ │ ├── D3D10Tutorial09_WPF │ │ │ │ ├── Application.xaml │ │ │ │ ├── Application.xaml.vb │ │ │ │ ├── D3D10Tutorial09_WPF.vbproj │ │ │ │ ├── Media │ │ │ │ │ └── Tiger │ │ │ │ │ │ ├── tiger.bmp │ │ │ │ │ │ └── tiger.x │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ ├── TutorialWindow.xaml.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial09_WinFormsControl │ │ │ │ ├── D3D10Tutorial09_WinFormsControl.vbproj │ │ │ │ ├── Media │ │ │ │ │ └── Tiger │ │ │ │ │ │ ├── tiger.bmp │ │ │ │ │ │ └── tiger.x │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ └── Tutorial09.sln │ │ ├── Tutorials │ │ │ ├── D3D10Tutorial01_WPF │ │ │ │ ├── Application.xaml │ │ │ │ ├── Application.xaml.vb │ │ │ │ ├── D3D10Tutorial01_WPF.vbproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ ├── TutorialWindow.xaml.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial01_WinFormsControl │ │ │ │ ├── D3D10Tutorial01_WinFormsControl.vbproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial01_WinFormsWindow │ │ │ │ ├── D3D10Tutorial01_WinFormsWindow.vbproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial02_WinFormsControl │ │ │ │ ├── D3D10Tutorial02_WinFormsControl.vbproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial02.fx │ │ │ │ ├── Tutorial02.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial04_WinFormsControl │ │ │ │ ├── D3D10Tutorial04_WinFormsControl.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial04.fx │ │ │ │ ├── Tutorial04.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial05_WinFormsControl │ │ │ │ ├── D3D10Tutorial05_WinFormsControl.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial05.fx │ │ │ │ ├── Tutorial05.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial06_WinFormsControl │ │ │ │ ├── D3D10Tutorial06_WinFormsControl.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial06.fx │ │ │ │ ├── Tutorial06.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── directx.ico │ │ │ ├── D3D10Tutorial07_WPF │ │ │ │ ├── Application.xaml │ │ │ │ ├── Application.xaml.vb │ │ │ │ ├── D3D10Tutorial07_WPF.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Tutorial07.fx │ │ │ │ ├── Tutorial07.fxo │ │ │ │ ├── TutorialWindow.xaml │ │ │ │ ├── TutorialWindow.xaml.vb │ │ │ │ └── seafloor.png │ │ │ ├── D3D10Tutorial07_WinFormsControl │ │ │ │ ├── D3D10Tutorial07_WinFormsControl.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial07.fx │ │ │ │ ├── Tutorial07.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ ├── directx.ico │ │ │ │ └── seafloor.png │ │ │ ├── D3D10Tutorial07_WinFormsWindow │ │ │ │ ├── D3D10Tutorial07_WinFormsWindow.vbproj │ │ │ │ ├── D3DStructs.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Program.vb │ │ │ │ ├── Tutorial07.fx │ │ │ │ ├── Tutorial07.fxo │ │ │ │ ├── TutorialWindow.Designer.vb │ │ │ │ ├── TutorialWindow.resx │ │ │ │ ├── TutorialWindow.vb │ │ │ │ └── seafloor.png │ │ │ └── D3D10Tutorials.sln │ │ └── WindowsFlag │ │ │ ├── D3DStructs.vb │ │ │ ├── Effects.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Window.Designer.vb │ │ │ ├── Window.resx │ │ │ ├── Window.vb │ │ │ ├── WindowsFlag.fx │ │ │ ├── WindowsFlag.fxo │ │ │ ├── WindowsFlag.sln │ │ │ ├── WindowsFlag.vbproj │ │ │ └── directx.ico │ │ ├── Direct3D11 │ │ └── Tutorials │ │ │ ├── D3D11Tutorial02_WPF │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Render.hlsl │ │ │ ├── Render.ps │ │ │ ├── Render.vs │ │ │ ├── Tutorial02_WPF.vbproj │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ │ │ ├── D3D11Tutorial02_WinFormsControl │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Render.hlsl │ │ │ ├── Render.ps │ │ │ ├── Render.vs │ │ │ └── Tutorial02_WinFormsControl.vbproj │ │ │ ├── D3D11Tutorial02_WinFormsWindow │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Render.hlsl │ │ │ ├── Render.ps │ │ │ ├── Render.vs │ │ │ └── Tutorial02_WinFormsWindow.vbproj │ │ │ └── D3D11Tutorials.sln │ │ └── UtilitiesLibrary │ │ ├── D3DUtilities │ │ ├── Camera │ │ │ └── Camera.vb │ │ ├── Direct3DUtilities.vbproj │ │ ├── Math │ │ │ ├── Matrix.vb │ │ │ └── MatrixUtilities.vb │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ └── Texture │ │ │ └── TextureLoader.vb │ │ └── MeshLoader │ │ ├── AirplaneMesh.vb │ │ ├── MeshLoader.vbproj │ │ ├── My Project │ │ └── AssemblyInfo.vb │ │ ├── Texturizer.vb │ │ ├── XMesh.fx │ │ ├── XMesh.fxo │ │ ├── XMesh.vb │ │ ├── XMeshLoader.XDataObject.vb │ │ ├── XMeshLoader.vb │ │ └── XMeshManager.vb ├── ExplorerBrowser │ ├── CS │ │ ├── ExplorerBrowser.sln │ │ ├── WPF │ │ │ └── WPFExplorerBrowserDemo │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── ExplorerBrowserTestWindow.xaml │ │ │ │ ├── ExplorerBrowserTestWindow.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ └── WPFExplorerBrowserDemo.csproj │ │ └── WinForms │ │ │ ├── ExplorerBrowserDemo.csproj │ │ │ ├── ExplorerBrowserTestForm.Designer.cs │ │ │ ├── ExplorerBrowserTestForm.cs │ │ │ ├── ExplorerBrowserTestForm.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── VB │ │ ├── ExplorerBrowser.sln │ │ ├── WPF │ │ └── WPFExplorerBrowserDemo │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── ExplorerBrowserTestWindow.xaml │ │ │ ├── ExplorerBrowserTestWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── WPFExplorerBrowserDemo.vbproj │ │ └── WinForms │ │ ├── ExplorerBrowserDemo.vbproj │ │ ├── ExplorerBrowserTestForm.Designer.vb │ │ ├── ExplorerBrowserTestForm.resx │ │ ├── ExplorerBrowserTestForm.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── Program.vb ├── ExtendedLinguisticServices │ ├── ELSDemo │ │ ├── CS │ │ │ ├── ELSSamples.csproj │ │ │ ├── ELSSamples.sln │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── VB │ │ │ ├── ELSSamples.sln │ │ │ ├── ELSSamples.vbproj │ │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ │ └── Program.vb │ └── Transliterator │ │ ├── CS │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ScrollbarTextBox.cs │ │ ├── Transliterator.Designer.cs │ │ ├── Transliterator.cs │ │ ├── Transliterator.csproj │ │ ├── Transliterator.resx │ │ ├── Transliterator.sln │ │ └── sample.txt │ │ └── VB │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Program.vb │ │ ├── ScrollbarTextBox.vb │ │ ├── Transliterator.Designer.vb │ │ ├── Transliterator.resx │ │ ├── Transliterator.sln │ │ ├── Transliterator.vb │ │ ├── Transliterator.vbproj │ │ └── sample.txt ├── HandlerSamples │ ├── HandlerSamples.csproj │ ├── HandlerSamples.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.txt │ ├── SampleFile.xyz │ ├── SampleFile.xyz2 │ ├── ThumbnailProviderDemo.cs │ ├── ThumbnailProviderDemo2.cs │ ├── WPFPreviewHandlerDemo.cs │ ├── WinformsPreviewHandlerDemo.cs │ ├── WpfPreviewHandlerDemoControl.xaml │ ├── WpfPreviewHandlerDemoControl.xaml.cs │ └── XyzFileDefinition.cs ├── NetworkDemo │ ├── CS │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── NetworkDemo.csproj │ │ ├── NetworkDemo.sln │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs │ └── VB │ │ ├── Application.xaml │ │ ├── Application.xaml.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── NetworkDemo.sln │ │ ├── NetworkDemo.vbproj │ │ ├── Window1.xaml │ │ └── Window1.xaml.vb ├── PowerMgmtDemo │ ├── CS │ │ ├── PowerMgmtDemo.sln │ │ └── PowerMgmtDemo │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MyPowerSettings.cs │ │ │ ├── PowerMgmtDemo.csproj │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.cs │ │ │ ├── YesNoConverter.cs │ │ │ ├── powercfg.ico │ │ │ ├── powercfg.png │ │ │ └── properties │ │ │ ├── assemblyinfo.cs │ │ │ ├── resources.designer.cs │ │ │ ├── resources.resx │ │ │ ├── settings.designer.cs │ │ │ └── settings.settings │ └── VB │ │ ├── PowerMgmtDemo.sln │ │ └── PowerMgmtDemo │ │ ├── Application.xaml │ │ ├── Application.xaml.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── MyPowerSettings.vb │ │ ├── PowerMgmtDemo.vbproj │ │ ├── Window1.xaml │ │ ├── Window1.xaml.vb │ │ ├── YesNoConverter.vb │ │ ├── powercfg.ico │ │ └── powercfg.png ├── Sensors │ ├── CS │ │ ├── AccelerationMeasurement │ │ │ ├── AccelerationBar.Designer.cs │ │ │ ├── AccelerationBar.cs │ │ │ ├── AccelerationMeasurement.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.settings │ │ │ │ └── Settings2.Designer.cs │ │ │ └── app.manifest │ │ ├── AmbientLightMeasurement │ │ │ ├── AmbientLightMeasurement.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.settings │ │ │ │ └── Settings2.Designer.cs │ │ │ └── app.manifest │ │ └── SensorsSamples.sln │ └── VB │ │ ├── AccelerationMeasurement │ │ ├── AccelerationBar.Designer.vb │ │ ├── AccelerationBar.vb │ │ ├── AccelerationMeasurement.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ ├── Program.vb │ │ └── app.manifest │ │ ├── AmbientLightMeasurement │ │ ├── AmbientLightMeasurement.vbproj │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ ├── Program.vb │ │ └── app.manifest │ │ └── SensorsSamples.sln ├── Shell │ ├── CommonFileDialogsDemo │ │ ├── CS │ │ │ ├── CommonFileDialogsDemo.sln │ │ │ └── CommonFileDialogsDemo │ │ │ │ ├── CommonFileDialogsDemo.csproj │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── Sample Files │ │ │ │ ├── test.docx │ │ │ │ └── test.jpg │ │ │ │ ├── SubItemsForm.Designer.cs │ │ │ │ ├── SubItemsForm.cs │ │ │ │ └── SubItemsForm.resx │ │ └── VB │ │ │ ├── CommonFileDialogsDemo.sln │ │ │ └── CommonFileDialogsDemo │ │ │ ├── CommonFileDialogsDemo.vbproj │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Sample Files │ │ │ ├── test.docx │ │ │ └── test.jpg │ │ │ ├── SubItemsForm.Designer.vb │ │ │ ├── SubItemsForm.resx │ │ │ └── SubItemsForm.vb │ ├── CustomCommonFileDialogsDemo │ │ ├── CS │ │ │ ├── CustomFileDialogsDemo.csproj │ │ │ ├── CustomFileDialogsDemo.sln │ │ │ ├── myapp.xaml │ │ │ ├── myapp.xaml.cs │ │ │ ├── properties │ │ │ │ ├── assemblyinfo.cs │ │ │ │ ├── resources.designer.cs │ │ │ │ ├── resources.resx │ │ │ │ ├── settings.designer.cs │ │ │ │ └── settings.settings │ │ │ ├── window1.xaml │ │ │ └── window1.xaml.cs │ │ └── VB │ │ │ ├── CustomFileDialogsDemo.sln │ │ │ ├── CustomFileDialogsDemo.vbproj │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── MyApp.xaml │ │ │ ├── MyApp.xaml.vb │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ ├── DragAndDrop │ │ ├── CS │ │ │ └── WPF │ │ │ │ ├── ShellObjectDragAndDrop.sln │ │ │ │ └── ShellObjectDragAndDrop │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── DragAndDropWindow.xaml │ │ │ │ ├── DragAndDropWindow.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ └── ShellObjectDragAndDropDemo.csproj │ │ └── VB │ │ │ └── WPF │ │ │ ├── ShellObjectDragAndDrop.sln │ │ │ └── ShellObjectDragAndDrop │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── DragAndDropWindow.xaml │ │ │ ├── DragAndDropWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── ShellObjectDragAndDropDemo.vbproj │ ├── KnownFoldersBrowser │ │ ├── CS │ │ │ ├── KnownFoldersBrowser.sln │ │ │ └── KnownFoldersBrowser │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── KnownFoldersBrowser.csproj │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ └── VB │ │ │ ├── KnownFoldersBrowser.sln │ │ │ └── KnownFoldersBrowser │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── KnownFoldersBrowser.vbproj │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ ├── PicturePropertiesEditor │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Controls │ │ │ │ ├── RatingControl.xaml │ │ │ │ ├── RatingControl.xaml.cs │ │ │ │ └── ZOrderStackPanel.cs │ │ │ ├── PicturePropertiesEditor.csproj │ │ │ ├── PicturePropertiesEditor.sln │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.cs │ │ │ └── app.manifest │ │ └── VB │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── Controls │ │ │ ├── RatingControl.xaml │ │ │ ├── RatingControl.xaml.vb │ │ │ └── ZOrderStackPanel.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── PicturePropertiesEditor.sln │ │ │ ├── PicturePropertiesEditor.vbproj │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.vb │ │ │ └── app.manifest │ ├── PropertyEditDemo │ │ ├── CS │ │ │ └── PropertyEdit │ │ │ │ ├── PropertyEdit.cs │ │ │ │ ├── PropertyEdit.csproj │ │ │ │ └── PropertyEdit.sln │ │ └── VB │ │ │ └── PropertyEdit │ │ │ ├── PropertyEdit.sln │ │ │ ├── PropertyEdit.vb │ │ │ └── PropertyEdit.vbproj │ ├── SearchApplication │ │ ├── CS │ │ │ └── SearchApp │ │ │ │ ├── AdvancedSearch.xaml │ │ │ │ ├── AdvancedSearch.xaml.cs │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Controls │ │ │ │ ├── RatingControl.xaml │ │ │ │ ├── RatingControl.xaml.cs │ │ │ │ └── SearchTextBox.cs │ │ │ │ ├── GlassHelper.cs │ │ │ │ ├── Images │ │ │ │ ├── Back_Button_256.png │ │ │ │ ├── Find_Search.ico │ │ │ │ ├── Find_Search_64.png │ │ │ │ ├── Forward_Button_256.png │ │ │ │ ├── Help-32.png │ │ │ │ ├── clear.png │ │ │ │ ├── search.png │ │ │ │ └── search_adv.png │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── SearchApp.csproj │ │ │ │ ├── SearchApp.sln │ │ │ │ ├── Themes │ │ │ │ ├── Generic.xaml │ │ │ │ └── GlassButton.xaml │ │ │ │ ├── Window1.xaml │ │ │ │ ├── Window1.xaml.cs │ │ │ │ ├── app.config │ │ │ │ └── app.manifest │ │ └── VB │ │ │ └── SearchApp │ │ │ ├── AdvancedSearch.xaml │ │ │ ├── AdvancedSearch.xaml.vb │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── Controls │ │ │ ├── RatingControl.xaml │ │ │ ├── RatingControl.xaml.vb │ │ │ └── SearchTextBox.vb │ │ │ ├── GlassHelper.vb │ │ │ ├── Images │ │ │ ├── Back_Button_256.png │ │ │ ├── Find_Search.ico │ │ │ ├── Find_Search_64.png │ │ │ ├── Forward_Button_256.png │ │ │ ├── Help-32.png │ │ │ ├── clear.png │ │ │ ├── search.png │ │ │ └── search_adv.png │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SearchApp.sln │ │ │ ├── SearchApp.vbproj │ │ │ ├── Themes │ │ │ ├── Generic.xaml │ │ │ └── GlassButton.xaml │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.vb │ │ │ ├── app.config │ │ │ └── app.manifest │ ├── ShellHierarchyTreeDemo │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── ShellHierarchyTreeDemo.csproj │ │ │ ├── ShellHierarchyTreeDemo.sln │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.cs │ │ └── VB │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── ShellHierarchyTreeDemo.sln │ │ │ ├── ShellHierarchyTreeDemo.vbproj │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ ├── ShellThumbnailBrowserDemo │ │ ├── CS │ │ │ ├── ThumbnailBrowserDemo.sln │ │ │ └── ThumbnailBrowserDemo │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── ShellThumbnailBrowserDemo.csproj │ │ │ │ ├── ThumbnailBrowser.Designer.cs │ │ │ │ ├── ThumbnailBrowser.cs │ │ │ │ ├── ThumbnailBrowser.ico │ │ │ │ └── ThumbnailBrowser.resx │ │ └── VB │ │ │ ├── ThumbnailBrowserDemo.sln │ │ │ └── ThumbnailBrowserDemo │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── ShellThumbnailBrowserDemo.vbproj │ │ │ ├── ThumbnailBrowser.Designer.vb │ │ │ ├── ThumbnailBrowser.ico │ │ │ ├── ThumbnailBrowser.resx │ │ │ └── ThumbnailBrowser.vb │ ├── StarBackupUsingLibraries │ │ ├── CS │ │ │ ├── App.xaml │ │ │ ├── BackupProcessPage.xaml │ │ │ ├── BackupProcessPage.xaml.cs │ │ │ ├── Icons │ │ │ │ └── BackupRestore.ico │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── StarBackup.sln │ │ │ ├── StarBackupHelper.cs │ │ │ ├── StarBackupMain.xaml │ │ │ ├── StarBackupMain.xaml.cs │ │ │ ├── StarBackupUsingLibraries.csproj │ │ │ ├── StartBackupPage.xaml │ │ │ ├── StartBackupPage.xaml.cs │ │ │ ├── Wizard │ │ │ │ ├── WizardDialogBox.xaml │ │ │ │ ├── WizardDialogBox.xaml.cs │ │ │ │ ├── WizardLauncher.cs │ │ │ │ ├── WizardResult.cs │ │ │ │ ├── WizardReturnEventArgs.cs │ │ │ │ └── WizardReturnEventHandler.cs │ │ │ ├── commandlinkwpf.xaml │ │ │ └── commandlinkwpf.xaml.cs │ │ └── VB │ │ │ ├── Application.xaml │ │ │ ├── BackupProcessPage.xaml │ │ │ ├── BackupProcessPage.xaml.vb │ │ │ ├── Icons │ │ │ └── BackupRestore.ico │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ │ ├── StarBackup.sln │ │ │ ├── StarBackupHelper.vb │ │ │ ├── StarBackupMain.xaml │ │ │ ├── StarBackupMain.xaml.vb │ │ │ ├── StarBackupUsingLibraries.vbproj │ │ │ ├── StartBackupPage.xaml │ │ │ ├── StartBackupPage.xaml.vb │ │ │ ├── Wizard │ │ │ ├── WizardDialogBox.xaml │ │ │ ├── WizardDialogBox.xaml.vb │ │ │ ├── WizardLauncher.vb │ │ │ ├── WizardResult.vb │ │ │ ├── WizardReturnEventArgs.vb │ │ │ └── WizardReturnEventHandler.vb │ │ │ ├── commandlinkwpf.xaml │ │ │ └── commandlinkwpf.xaml.vb │ ├── StockIconsDemo │ │ ├── CS │ │ │ ├── StockIconsDemo.sln │ │ │ └── StockIconsDemo │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── StockIconsDemo.csproj │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ └── VB │ │ │ ├── StockIconsDemo.sln │ │ │ └── StockIconsDemo │ │ │ ├── Application.xaml │ │ │ ├── Application.xaml.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── StockIconsDemo.vbproj │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.vb │ ├── TabbedThumbnailDemo │ │ ├── CS │ │ │ └── Winforms │ │ │ │ ├── FavoritesWindow.Designer.cs │ │ │ │ ├── FavoritesWindow.cs │ │ │ │ ├── FavoritesWindow.resx │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── Resources │ │ │ │ ├── copy.ico │ │ │ │ ├── cut.ico │ │ │ │ ├── nextArrow.ico │ │ │ │ ├── paste.ico │ │ │ │ ├── prevArrow.ico │ │ │ │ ├── refresh.ico │ │ │ │ └── selectAll.ico │ │ │ │ ├── TabbedThumbnailDemoWinforms.csproj │ │ │ │ └── TabbedThumbnailDemoWinforms.sln │ │ └── VB │ │ │ └── Winforms │ │ │ ├── FavoritesWindow.Designer.vb │ │ │ ├── FavoritesWindow.resx │ │ │ ├── FavoritesWindow.vb │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── Resources │ │ │ ├── Resources.resx │ │ │ ├── copy.ico │ │ │ ├── cut.ico │ │ │ ├── nextArrow.ico │ │ │ ├── paste.ico │ │ │ ├── prevArrow.ico │ │ │ ├── refresh.ico │ │ │ └── selectAll.ico │ │ │ ├── TabbedThumbnailDemoWinforms.sln │ │ │ └── TabbedThumbnailDemoWinforms.vbproj │ ├── TaskbarDemo │ │ ├── CS │ │ │ ├── RegistrationHelper │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RegistrationHelper.csproj │ │ │ │ └── RegistrationHelperMain.cs │ │ │ ├── TaskbarDemo.sln │ │ │ └── TaskbarDemo │ │ │ │ ├── ChildDocument.Designer.cs │ │ │ │ ├── ChildDocument.cs │ │ │ │ ├── ChildDocument.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── RegistrationHelper.cs │ │ │ │ ├── Resources │ │ │ │ ├── Green.ico │ │ │ │ ├── Red.ico │ │ │ │ ├── Taskbar.ico │ │ │ │ └── Yellow.ico │ │ │ │ ├── TaskbarDemo.csproj │ │ │ │ ├── TaskbarDemoMainForm.Designer.cs │ │ │ │ ├── TaskbarDemoMainForm.cs │ │ │ │ ├── TaskbarDemoMainForm.resx │ │ │ │ └── app.manifest │ │ └── VB │ │ │ ├── RegistrationHelper │ │ │ ├── My Project │ │ │ │ └── AssemblyInfo.vb │ │ │ ├── RegistrationHelper.vbproj │ │ │ └── RegistrationHelperMain.vb │ │ │ ├── TaskbarDemo.sln │ │ │ └── TaskbarDemo │ │ │ ├── ChildDocument.Designer.vb │ │ │ ├── ChildDocument.resx │ │ │ ├── ChildDocument.vb │ │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Program.vb │ │ │ ├── RegistrationHelper.vb │ │ │ ├── Resources │ │ │ ├── Green.ico │ │ │ ├── Red.ico │ │ │ ├── Taskbar.ico │ │ │ └── Yellow.ico │ │ │ ├── TaskbarDemo.vbproj │ │ │ ├── TaskbarDemoMainForm.Designer.vb │ │ │ ├── TaskbarDemoMainForm.resx │ │ │ ├── TaskbarDemoMainForm.vb │ │ │ └── app.manifest │ └── ThumbnailToolbarDemo │ │ ├── CS │ │ ├── WPF │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Icons │ │ │ │ ├── first.ico │ │ │ │ ├── last.ico │ │ │ │ ├── nextArrow.ico │ │ │ │ └── prevArrow.ico │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── ThumbnailToolbarDemoWPF.csproj │ │ │ ├── ThumbnailToolbarDemoWPF.sln │ │ │ ├── Window1.xaml │ │ │ ├── Window1.xaml.cs │ │ │ └── app.manifest │ │ └── Winforms │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ ├── first.ico │ │ │ ├── last.ico │ │ │ ├── nextArrow.ico │ │ │ └── prevArrow.ico │ │ │ ├── ThumbnailToolbarDemoWinforms.csproj │ │ │ ├── ThumbnailToolbarDemoWinforms.sln │ │ │ └── app.manifest │ │ └── VB │ │ ├── WPF │ │ ├── Application.xaml │ │ ├── Application.xaml.vb │ │ ├── Icons │ │ │ ├── first.ico │ │ │ ├── last.ico │ │ │ ├── nextArrow.ico │ │ │ └── prevArrow.ico │ │ ├── My Project │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── ThumbnailToolbarDemoWPF.sln │ │ ├── ThumbnailToolbarDemoWPF.vbproj │ │ ├── Window1.xaml │ │ ├── Window1.xaml.vb │ │ └── app.manifest │ │ └── Winforms │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Program.vb │ │ ├── Resources │ │ ├── first.ico │ │ ├── last.ico │ │ ├── nextArrow.ico │ │ └── prevArrow.ico │ │ ├── ThumbnailToolbarDemoWinforms.sln │ │ ├── ThumbnailToolbarDemoWinforms.vbproj │ │ └── app.manifest ├── ShellObjectWatcherSampleWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ShellObjectWatcherSampleWPF.csproj │ └── ShellObjectWatcherSampleWPF.sln └── TaskDialogDemo │ ├── CS │ ├── TaskDialogDemo.sln │ └── TaskDialogDemo │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TaskDialogDemo.csproj │ │ ├── TestHarness.Designer.cs │ │ ├── TestHarness.cs │ │ ├── TestHarness.resx │ │ └── app.manifest │ └── VB │ ├── TaskDialogDemo.sln │ └── TaskDialogDemo │ ├── My Project │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── Program.vb │ ├── TaskDialogDemo.vbproj │ ├── TestHarness.Designer.vb │ ├── TestHarness.resx │ ├── TestHarness.vb │ └── app.manifest ├── Tests ├── Core │ ├── CoreTests.csproj │ ├── NetworkList │ │ └── NetworkListManagerTests.cs │ ├── PowerManagement │ │ ├── BatteryStateTests.cs │ │ └── PowerManagerTests.cs │ └── PropertySystem │ │ ├── PropVariantTests.cs │ │ └── PropertyKeyTests.cs ├── ExtendedLinguisticServices │ ├── ExtendedLinguisticServicesTests.csproj │ ├── LinguisticExceptionTests.cs │ └── MappingServiceTests.cs ├── Sensors │ ├── Metadata │ │ └── SensorDescriptionAttributeTests.cs │ ├── Sensors │ │ ├── Light │ │ │ ├── AmbientLightSensorTests.cs │ │ │ └── LuminousIntensityTests.cs │ │ ├── Motion │ │ │ └── Accelerometer3DTests.cs │ │ └── UnknownSensorTests.cs │ └── SensorsTests.csproj ├── Shell │ ├── KnownFolders │ │ ├── KnownFolderHelperTests.cs │ │ └── KnownFoldersTests.cs │ ├── PropertySystem │ │ └── PropertySystemTests.cs │ ├── ShellObjectWatcher │ │ └── ShellObjectWatcherTests.cs │ ├── ShellTests.csproj │ └── StockIcons │ │ └── StockIconsTests.cs ├── ShellExtensionTests │ ├── PreviewHandlers │ │ ├── PreviewHandlerTestSamples.cs │ │ ├── PreviewHandlerTests.cs │ │ ├── WinFormsPreviewHandlerSampleForm.Designer.cs │ │ ├── WinFormsPreviewHandlerSampleForm.cs │ │ └── WinFormsPreviewHandlerSampleForm.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ShellExtensionTests.csproj │ └── ThumbnailProviders │ │ ├── ThumbnailProviderTestSamples.cs │ │ └── ThumbnailProviderTests.cs ├── Tests README.txt ├── Tests.sln ├── Tests.xunit └── Tests10.sln └── WindowsAPICodePack ├── Core ├── AppRestartRecovery │ ├── ApplicationRecoveryException.cs │ ├── ApplicationRestartRecoveryManager.cs │ ├── RecoveryData.cs │ ├── RecoverySettings.cs │ ├── RestartRestrictions.cs │ └── RestartSettings.cs ├── Core.csproj ├── CustomDictionary.xml ├── Dialogs │ ├── Common │ │ ├── DialogControl.cs │ │ ├── DialogControlCollection.cs │ │ ├── DialogsDefaults.cs │ │ └── IDialogControlHost.cs │ └── TaskDialogs │ │ ├── TaskDialog.cs │ │ ├── TaskDialogBar.cs │ │ ├── TaskDialogButton.cs │ │ ├── TaskDialogButtonBase.cs │ │ ├── TaskDialogClosingEventArgs.cs │ │ ├── TaskDialogCommandLink.cs │ │ ├── TaskDialogControl.cs │ │ ├── TaskDialogDefaults.cs │ │ ├── TaskDialogExpandedInfoMode.cs │ │ ├── TaskDialogHyperlinkClickedEventArgs.cs │ │ ├── TaskDialogProgressBar.cs │ │ ├── TaskDialogProgressBarState.cs │ │ ├── TaskDialogRadioButton.cs │ │ ├── TaskDialogResult.cs │ │ ├── TaskDialogStandardButton.cs │ │ ├── TaskDialogStandardIcon.cs │ │ ├── TaskDialogStartupLocation.cs │ │ └── TaskDialogTickEventArgs.cs ├── GlobalSuppressions.cs ├── Interop │ ├── AppRestartRecovery │ │ └── AppRestartRecoveryNativeMethods.cs │ ├── CoreErrorHelper.cs │ ├── CoreHelpers.cs │ ├── CoreNativeMethods.cs │ ├── Dialogs │ │ └── DialogShowState.cs │ ├── NetworkList │ │ ├── INetwork.cs │ │ ├── INetworkConnection.cs │ │ ├── INetworkListManager.cs │ │ └── NetworkListManagerClass.cs │ ├── PowerManagement │ │ └── PowerManagementNativeMethods.cs │ ├── TaskDialogs │ │ ├── NativeTaskDialog.cs │ │ ├── NativeTaskDialogSettings.cs │ │ └── TaskDialogNativeMethods.cs │ └── WindowMessage.cs ├── NetworkList │ ├── Network.cs │ ├── NetworkCollection.cs │ ├── NetworkConnection.cs │ ├── NetworkConnectionCollection.cs │ ├── NetworkListEnums.cs │ └── NetworkListManager.cs ├── PowerManagement │ ├── BatteryState.cs │ ├── EventManager.cs │ ├── ExecutionState.cs │ ├── MessageManager.cs │ ├── PersonalityGuids.cs │ ├── Power.cs │ ├── PowerManager.cs │ ├── PowerManagerException.cs │ ├── PowerPersonality.cs │ └── PowerSource.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertySystem │ ├── PropVariant.cs │ ├── PropVariantNativeMethods.cs │ └── PropertyKey.cs ├── Resources │ ├── LocalizedMessages.Designer.cs │ └── LocalizedMessages.resx └── SafeHandles │ ├── SafeIconHandle.cs │ ├── SafeRegionHandle.cs │ ├── SafeWindowHandle.cs │ └── ZeroInvalidHandle.cs ├── DirectX ├── DirectX.sln └── DirectX │ ├── AllTypes.h │ ├── AssemblyInfo.cpp │ ├── AutoIUnknown.cpp │ ├── AutoIUnknown.h │ ├── AutoPointer.cpp │ ├── AutoPointer.h │ ├── CodeAnalysisDictionary.xml │ ├── CommonEnums.h │ ├── CommonUtils.cpp │ ├── CommonUtils.h │ ├── Convert.cpp │ ├── Convert.h │ ├── DXGI │ ├── DXGIAdapter.cpp │ ├── DXGIAdapter.h │ ├── DXGIAdapter1.cpp │ ├── DXGIAdapter1.h │ ├── DXGIDevice.cpp │ ├── DXGIDevice.h │ ├── DXGIDevice1.cpp │ ├── DXGIDevice1.h │ ├── DXGIDeviceSubObject.cpp │ ├── DXGIDeviceSubObject.h │ ├── DXGIEnums.h │ ├── DXGIException.cpp │ ├── DXGIException.h │ ├── DXGIFactory.cpp │ ├── DXGIFactory.h │ ├── DXGIFactory1.cpp │ ├── DXGIFactory1.h │ ├── DXGIKeyedMutex.cpp │ ├── DXGIKeyedMutex.h │ ├── DXGIObject.cpp │ ├── DXGIObject.h │ ├── DXGIOutput.cpp │ ├── DXGIOutput.h │ ├── DXGIResource.cpp │ ├── DXGIResource.h │ ├── DXGIStructs.cpp │ ├── DXGIStructs.h │ ├── DXGISurface.cpp │ ├── DXGISurface.h │ ├── DXGISurface1.cpp │ ├── DXGISurface1.h │ ├── DXGISwapChain.cpp │ └── DXGISwapChain.h │ ├── Direct2D │ ├── D2DCommon.h │ ├── D2DCustom.cpp │ ├── D2DEnums.h │ ├── D2DException.h │ ├── D2DGeometrySink.cpp │ ├── D2DGeometrySink.h │ ├── D2DInterfaces.cpp │ ├── D2DInterfaces.h │ ├── D2DInteropTypes.h │ ├── D2DPointAndTangent.h │ ├── D2DStructs.cpp │ ├── D2DStructs.h │ ├── D2DTessellationSink.cpp │ └── D2DTessellationSink.h │ ├── Direct3D10 │ ├── D3D10Asynchronous.cpp │ ├── D3D10Asynchronous.h │ ├── D3D10BlendState.cpp │ ├── D3D10BlendState.h │ ├── D3D10BlendState1.cpp │ ├── D3D10BlendState1.h │ ├── D3D10Blob.cpp │ ├── D3D10Blob.h │ ├── D3D10Buffer.cpp │ ├── D3D10Buffer.h │ ├── D3D10CheckCounterData.h │ ├── D3D10Counter.cpp │ ├── D3D10Counter.h │ ├── D3D10Debug.cpp │ ├── D3D10Debug.h │ ├── D3D10DepthStencilState.cpp │ ├── D3D10DepthStencilState.h │ ├── D3D10DepthStencilView.cpp │ ├── D3D10DepthStencilView.h │ ├── D3D10Device.cpp │ ├── D3D10Device.h │ ├── D3D10Device1.cpp │ ├── D3D10Device1.h │ ├── D3D10DeviceChild.cpp │ ├── D3D10DeviceChild.h │ ├── D3D10Effect.cpp │ ├── D3D10Effect.h │ ├── D3D10EffectBlendVariable.cpp │ ├── D3D10EffectBlendVariable.h │ ├── D3D10EffectConstantBuffer.cpp │ ├── D3D10EffectConstantBuffer.h │ ├── D3D10EffectDepthStencilVariable.cpp │ ├── D3D10EffectDepthStencilVariable.h │ ├── D3D10EffectDepthStencilViewVariable.cpp │ ├── D3D10EffectDepthStencilViewVariable.h │ ├── D3D10EffectMatrixVariable.cpp │ ├── D3D10EffectMatrixVariable.h │ ├── D3D10EffectPass.cpp │ ├── D3D10EffectPass.h │ ├── D3D10EffectPool.cpp │ ├── D3D10EffectPool.h │ ├── D3D10EffectRasterizerVariable.cpp │ ├── D3D10EffectRasterizerVariable.h │ ├── D3D10EffectRenderTargetViewVariable.cpp │ ├── D3D10EffectRenderTargetViewVariable.h │ ├── D3D10EffectSamplerVariable.cpp │ ├── D3D10EffectSamplerVariable.h │ ├── D3D10EffectScalarVariable.cpp │ ├── D3D10EffectScalarVariable.h │ ├── D3D10EffectShaderResourceVariable.cpp │ ├── D3D10EffectShaderResourceVariable.h │ ├── D3D10EffectShaderVariable.cpp │ ├── D3D10EffectShaderVariable.h │ ├── D3D10EffectStringVariable.cpp │ ├── D3D10EffectStringVariable.h │ ├── D3D10EffectTechnique.cpp │ ├── D3D10EffectTechnique.h │ ├── D3D10EffectType.cpp │ ├── D3D10EffectType.h │ ├── D3D10EffectVariable.cpp │ ├── D3D10EffectVariable.h │ ├── D3D10EffectVectorVariable.cpp │ ├── D3D10EffectVectorVariable.h │ ├── D3D10Enums.h │ ├── D3D10GeometryShader.cpp │ ├── D3D10GeometryShader.h │ ├── D3D10GeometryShaderPipelineStage.cpp │ ├── D3D10GeometryShaderPipelineStage.h │ ├── D3D10Include.cpp │ ├── D3D10Include.h │ ├── D3D10InfoQueue.cpp │ ├── D3D10InfoQueue.h │ ├── D3D10InputAssemblerPipelineStage.cpp │ ├── D3D10InputAssemblerPipelineStage.h │ ├── D3D10InputLayout.cpp │ ├── D3D10InputLayout.h │ ├── D3D10Multithread.cpp │ ├── D3D10Multithread.h │ ├── D3D10OutputMergerBlendState.h │ ├── D3D10OutputMergerPipelineStage.cpp │ ├── D3D10OutputMergerPipelineStage.h │ ├── D3D10OutputMergerRenderTargets.h │ ├── D3D10PipelineStage.cpp │ ├── D3D10PipelineStage.h │ ├── D3D10PixelShader.cpp │ ├── D3D10PixelShader.h │ ├── D3D10PixelShaderPipelineStage.cpp │ ├── D3D10PixelShaderPipelineStage.h │ ├── D3D10Predicate.cpp │ ├── D3D10Predicate.h │ ├── D3D10Query.cpp │ ├── D3D10Query.h │ ├── D3D10RasterizerPipelineStage.cpp │ ├── D3D10RasterizerPipelineStage.h │ ├── D3D10RasterizerState.cpp │ ├── D3D10RasterizerState.h │ ├── D3D10RenderTargetView.cpp │ ├── D3D10RenderTargetView.h │ ├── D3D10Resource.cpp │ ├── D3D10Resource.h │ ├── D3D10SamplerState.cpp │ ├── D3D10SamplerState.h │ ├── D3D10ShaderReflection.cpp │ ├── D3D10ShaderReflection.h │ ├── D3D10ShaderReflection1.cpp │ ├── D3D10ShaderReflection1.h │ ├── D3D10ShaderReflectionConstantBuffer.cpp │ ├── D3D10ShaderReflectionConstantBuffer.h │ ├── D3D10ShaderReflectionType.cpp │ ├── D3D10ShaderReflectionType.h │ ├── D3D10ShaderReflectionVariable.cpp │ ├── D3D10ShaderReflectionVariable.h │ ├── D3D10ShaderResourceView.cpp │ ├── D3D10ShaderResourceView.h │ ├── D3D10ShaderResourceView1.cpp │ ├── D3D10ShaderResourceView1.h │ ├── D3D10StateBlock.cpp │ ├── D3D10StateBlock.h │ ├── D3D10StateBlockMask.cpp │ ├── D3D10StateBlockMask.h │ ├── D3D10StreamOutputPipelineStage.cpp │ ├── D3D10StreamOutputPipelineStage.h │ ├── D3D10Structs.cpp │ ├── D3D10Structs.h │ ├── D3D10SwitchToRef.cpp │ ├── D3D10SwitchToRef.h │ ├── D3D10Texture1D.cpp │ ├── D3D10Texture1D.h │ ├── D3D10Texture2D.cpp │ ├── D3D10Texture2D.h │ ├── D3D10Texture3D.cpp │ ├── D3D10Texture3D.h │ ├── D3D10VertexShader.cpp │ ├── D3D10VertexShader.h │ ├── D3D10VertexShaderPipelineStage.cpp │ ├── D3D10VertexShaderPipelineStage.h │ ├── D3D10View.cpp │ └── D3D10View.h │ ├── Direct3D11 │ ├── D3D11Asynchronous.cpp │ ├── D3D11Asynchronous.h │ ├── D3D11BlendState.cpp │ ├── D3D11BlendState.h │ ├── D3D11Buffer.cpp │ ├── D3D11Buffer.h │ ├── D3D11CheckCounterData.h │ ├── D3D11ClassInstance.cpp │ ├── D3D11ClassInstance.h │ ├── D3D11ClassLinkage.cpp │ ├── D3D11ClassLinkage.h │ ├── D3D11CommandList.cpp │ ├── D3D11CommandList.h │ ├── D3D11ComputeShader.cpp │ ├── D3D11ComputeShader.h │ ├── D3D11ComputeShaderPipelineStage.cpp │ ├── D3D11ComputeShaderPipelineStage.h │ ├── D3D11Counter.cpp │ ├── D3D11Counter.h │ ├── D3D11Debug.cpp │ ├── D3D11Debug.h │ ├── D3D11DepthStencilState.cpp │ ├── D3D11DepthStencilState.h │ ├── D3D11DepthStencilView.cpp │ ├── D3D11DepthStencilView.h │ ├── D3D11Device.cpp │ ├── D3D11Device.h │ ├── D3D11DeviceChild.cpp │ ├── D3D11DeviceChild.h │ ├── D3D11DeviceContext.cpp │ ├── D3D11DeviceContext.h │ ├── D3D11DomainShader.cpp │ ├── D3D11DomainShader.h │ ├── D3D11DomainShaderPipelineStage.cpp │ ├── D3D11DomainShaderPipelineStage.h │ ├── D3D11Enums.h │ ├── D3D11GeometryShader.cpp │ ├── D3D11GeometryShader.h │ ├── D3D11GeometryShaderPipelineStage.cpp │ ├── D3D11GeometryShaderPipelineStage.h │ ├── D3D11HullShader.cpp │ ├── D3D11HullShader.h │ ├── D3D11HullShaderPipelineStage.cpp │ ├── D3D11HullShaderPipelineStage.h │ ├── D3D11InfoQueue.cpp │ ├── D3D11InfoQueue.h │ ├── D3D11InputAssemblerPipelineStage.cpp │ ├── D3D11InputAssemblerPipelineStage.h │ ├── D3D11InputLayout.cpp │ ├── D3D11InputLayout.h │ ├── D3D11OutputMergerBlendState.h │ ├── D3D11OutputMergerPipelineStage.cpp │ ├── D3D11OutputMergerPipelineStage.h │ ├── D3D11OutputMergerRenderTargets.h │ ├── D3D11PipelineStage.cpp │ ├── D3D11PipelineStage.h │ ├── D3D11PixelShader.cpp │ ├── D3D11PixelShader.h │ ├── D3D11PixelShaderPipelineStage.cpp │ ├── D3D11PixelShaderPipelineStage.h │ ├── D3D11Predicate.cpp │ ├── D3D11Predicate.h │ ├── D3D11Query.cpp │ ├── D3D11Query.h │ ├── D3D11RasterizerPipelineStage.cpp │ ├── D3D11RasterizerPipelineStage.h │ ├── D3D11RasterizerState.cpp │ ├── D3D11RasterizerState.h │ ├── D3D11RenderTargetView.cpp │ ├── D3D11RenderTargetView.h │ ├── D3D11Resource.cpp │ ├── D3D11Resource.h │ ├── D3D11SamplerState.cpp │ ├── D3D11SamplerState.h │ ├── D3D11ShaderAndClasses.h │ ├── D3D11ShaderResourceView.cpp │ ├── D3D11ShaderResourceView.h │ ├── D3D11StreamOutputPipelineStage.cpp │ ├── D3D11StreamOutputPipelineStage.h │ ├── D3D11Structs.h │ ├── D3D11SwitchToRef.cpp │ ├── D3D11SwitchToRef.h │ ├── D3D11Texture1D.cpp │ ├── D3D11Texture1D.h │ ├── D3D11Texture2D.cpp │ ├── D3D11Texture2D.h │ ├── D3D11Texture3D.cpp │ ├── D3D11Texture3D.h │ ├── D3D11UnorderedAccessView.cpp │ ├── D3D11UnorderedAccessView.h │ ├── D3D11VertexShader.cpp │ ├── D3D11VertexShader.h │ ├── D3D11VertexShaderPipelineStage.cpp │ ├── D3D11VertexShaderPipelineStage.h │ ├── D3D11View.cpp │ └── D3D11View.h │ ├── Direct3DCommon │ ├── D3DCommonEnums.h │ ├── D3DCommonStructs.h │ ├── Direct3DException.cpp │ └── Direct3DException.h │ ├── DirectHelpers.cpp │ ├── DirectHelpers.h │ ├── DirectObject.cpp │ ├── DirectObject.h │ ├── DirectUnknown.cpp │ ├── DirectUnknown.h │ ├── DirectWrite │ ├── DWriteEnums.h │ ├── DWriteFactory.cpp │ ├── DWriteFactory.h │ ├── DWriteFont.cpp │ ├── DWriteFont.h │ ├── DWriteFontFace.cpp │ ├── DWriteFontFace.h │ ├── DWriteFontFamily.cpp │ ├── DWriteFontFamily.h │ ├── DWriteFontFamilyCollection.cpp │ ├── DWriteFontFamilyCollection.h │ ├── DWriteInlineObject.cpp │ ├── DWriteInlineObject.h │ ├── DWriteRenderingParams.cpp │ ├── DWriteRenderingParams.h │ ├── DWriteStructs.cpp │ ├── DWriteStructs.h │ ├── DWriteTextFormat.cpp │ ├── DWriteTextFormat.h │ ├── DWriteTextLayout.cpp │ ├── DWriteTextLayout.h │ ├── DWriteTypography.cpp │ ├── DWriteTypography.h │ ├── DWriteUtils.cpp │ ├── DWriteUtils.h │ ├── ICustomInlineObject.cpp │ └── ICustomInlineObject.h │ ├── DirectX.vcproj │ ├── DirectXException.h │ ├── GlobalSuppressions.cpp │ ├── LibraryLoader.cpp │ ├── LibraryLoader.h │ ├── Stdafx.cpp │ ├── Stdafx.h │ ├── Validate.cpp │ ├── Validate.h │ └── WIC │ ├── WICBitmap.cpp │ ├── WICBitmap.h │ ├── WICBitmapDecoder.cpp │ ├── WICBitmapDecoder.h │ ├── WICBitmapFrameDecode.cpp │ ├── WICBitmapFrameDecode.h │ ├── WICBitmapLock.cpp │ ├── WICBitmapLock.h │ ├── WICBitmapSource.cpp │ ├── WICBitmapSource.h │ ├── WICContainerFormats.h │ ├── WICEnums.h │ ├── WICException.h │ ├── WICFormatConverter.cpp │ ├── WICFormatConverter.h │ ├── WICImagingFactory.cpp │ ├── WICImagingFactory.h │ ├── WICPixelFormats.h │ ├── WICStreamWrapper.cpp │ ├── WICStreamWrapper.h │ └── WICStructs.h ├── ExtendedLinguisticServices ├── CustomDictionary.xml ├── ExtendedLinguisticServices.csproj ├── GlobalSuppressions.cs ├── IMappingFormatter.cs ├── InteropTools.cs ├── LinguisticException.cs ├── MappingActionAsyncResult.cs ├── MappingAsyncResult.cs ├── MappingAvailableServices.cs ├── MappingDataRange.cs ├── MappingEnumOptions.cs ├── MappingPropertyBag.cs ├── MappingRecognizeAsyncResult.cs ├── MappingResultState.cs ├── MappingService.cs ├── NullTerminatedStringFormatter.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── LocalizedMessages.Designer.cs │ └── LocalizedMessages.resx ├── ServiceCache.cs ├── StringArrayFormatter.cs ├── StringFormatter.cs ├── Win32NativeMethods.cs └── Win32Structs.cs ├── Sensors ├── CustomDictionary.xml ├── GlobalSuppressions.cs ├── Interop │ ├── ISensor.cs │ ├── ISensorCollection.cs │ ├── ISensorDataReport.cs │ ├── ISensorManager.cs │ ├── ISensorManagerEnums.cs │ ├── ISensorManagerEvents.cs │ ├── PortableDevice.cs │ └── SensorNativeMethods.cs ├── Metadata │ ├── EventInterest.cs │ ├── SensorCategories.cs │ ├── SensorConnection.cs │ ├── SensorDescriptionAttribute.cs │ ├── SensorPropertyKeys.cs │ ├── SensorState.cs │ └── SensorTypes.cs ├── ObjectModel │ ├── Sensor.cs │ ├── SensorData.cs │ ├── SensorList.cs │ ├── SensorManager.cs │ ├── SensorPlatformException.cs │ └── SensorReport.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── LocalizedMessages.Designer.cs │ └── LocalizedMessages.resx ├── Sensors.csproj ├── Sensors.sln ├── Sensors │ ├── Light │ │ └── AmbientLightSensor.cs │ ├── Motion │ │ └── Accelerometer3D.cs │ └── UnknownSensor.cs └── SensorsObjectModel.cd ├── Shell ├── Common │ ├── DefaultShellImageSizes.cs │ ├── EnumUnknown.cs │ ├── EventHandlerExtensionMethods.cs │ ├── IconReference.cs │ ├── NativePoint.cs │ ├── NativeRect.cs │ ├── SearchCondition.cs │ ├── SearchConditionFactory.cs │ ├── ShellEnums.cs │ ├── ShellException.cs │ ├── ShellFile.cs │ ├── ShellFileSystemFolder.cs │ ├── ShellFolder.cs │ ├── ShellFolderItems.cs │ ├── ShellHelper.cs │ ├── ShellItemArray.cs │ ├── ShellLibrary.cs │ ├── ShellLink.cs │ ├── ShellNonFileSystemFolder.cs │ ├── ShellNonFileSystemItem.cs │ ├── ShellObject.cs │ ├── ShellObjectCollection.cs │ ├── ShellObjectContainer.cs │ ├── ShellObjectFactory.cs │ ├── ShellSavedSearchCollection.cs │ ├── ShellSearchCollection.cs │ ├── ShellSearchConnector.cs │ ├── ShellSearchFolder.cs │ ├── ShellThumbnail.cs │ ├── ShellThumbnailEnums.cs │ └── SortColumn.cs ├── CommonFileDialogs │ ├── CommonFileDialog.cs │ ├── CommonFileDialogButton.cs │ ├── CommonFileDialogCheckBox.cs │ ├── CommonFileDialogComboBox.cs │ ├── CommonFileDialogControl.cs │ ├── CommonFileDialogControlCollection.cs │ ├── CommonFileDialogFilter.cs │ ├── CommonFileDialogFilterCollection.cs │ ├── CommonFileDialogFolderChangeEventArgs.cs │ ├── CommonFileDialogGroupBox.cs │ ├── CommonFileDialogLabel.cs │ ├── CommonFileDialogMenu.cs │ ├── CommonFileDialogProminentControl.cs │ ├── CommonFileDialogRadioButtonList.cs │ ├── CommonFileDialogResult.cs │ ├── CommonFileDialogSeperator.cs │ ├── CommonFileDialogStandardFilters.cs │ ├── CommonFileDialogTextBox.cs │ ├── CommonOpenFileDialog.cs │ ├── CommonSaveFileDialog.cs │ └── ICommonFileDialogIndexedControls.cs ├── Controls │ ├── CommandLinkWPF.xaml │ ├── CommandLinkWPF.xaml.cs │ └── CommandLinkWinforms.cs ├── CustomDictionary.xml ├── Design │ ├── ShellObjects.cd │ └── ShellThumbnailClassDiagram.cd ├── DesktopWindowManager │ ├── DesktopWindowManagerNativeMethods.cs │ ├── GlassEvents.cs │ ├── GlassForm.cs │ └── GlassWindow.cs ├── ExplorerBrowser │ ├── CommonControlException.cs │ ├── ExplorerBrowser.WPF.xaml │ ├── ExplorerBrowser.WPF.xaml.cs │ ├── ExplorerBrowser.cs │ ├── ExplorerBrowserContentOptions.cs │ ├── ExplorerBrowserDiagram.cd │ ├── ExplorerBrowserEnums.cs │ ├── ExplorerBrowserEvents.cs │ ├── ExplorerBrowserPaneVisibility.cs │ ├── ExplorerBrowserViewEvents.cs │ ├── NavigationLog.cs │ ├── NavigationLogEnums.cs │ ├── NavigationLogEvents.cs │ └── NavigationOptions.cs ├── GlobalSuppressions.cs ├── Interop │ ├── Common │ │ ├── IntPtrExtensions.cs │ │ ├── ShellCOMClasses.cs │ │ ├── ShellCOMGuids.cs │ │ ├── ShellCOMInterfaces.cs │ │ ├── ShellNativeMethods.cs │ │ ├── ShellNativeStructs.cs │ │ └── WindowUtilities.cs │ ├── Dialogs │ │ ├── DialogsCOMClasses.cs │ │ └── DialogsCOMInterfaces.cs │ ├── ExplorerBrowser │ │ ├── ExplorerBrowserCOMGuids.cs │ │ ├── ExplorerBrowserCOMInterfaces.cs │ │ └── ExplorerBrowserNativeMethods.cs │ ├── KnownFolders │ │ ├── KnownFoldersCOMGuids.cs │ │ ├── KnownFoldersCOMInterfaces.cs │ │ └── KnownFoldersNativeMethods.cs │ ├── PropertySystem │ │ ├── PropertySystemCOMInterfaces.cs │ │ └── PropertySystemNativeMethods.cs │ ├── ShellExtensions │ │ └── HandlerNativeMethods.cs │ ├── ShellObjectWatcher │ │ └── ShellObjectWatcherNativeMethods.cs │ ├── StockIcons │ │ └── StockIconsNativeMethods.cs │ └── Taskbar │ │ ├── TabbedThumbnailNativeMethods.cs │ │ ├── TaskbarCOMInterfaces.cs │ │ └── TaskbarNativeMethods.cs ├── KnownFolders │ ├── DefinitionOptions.cs │ ├── FileSystemKnownFolder.cs │ ├── FolderCategory.cs │ ├── FolderProperties.cs │ ├── FolderTypes.cs │ ├── FoldersIdentifiers.cs │ ├── IKnownFolder.cs │ ├── KnownFolderHelper.cs │ ├── KnownFolderSettings.cs │ ├── KnownFolders.cs │ ├── NonFileSystemKnownFolder.cs │ ├── RedirectionCapabilities.cs │ └── RetrievalOptions.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertySystem │ ├── IShellProperty.cs │ ├── PropertySystemException.cs │ ├── ShellProperties.cs │ ├── ShellProperty.cs │ ├── ShellPropertyCollection.cs │ ├── ShellPropertyDescription.cs │ ├── ShellPropertyDescriptionsCache.cs │ ├── ShellPropertyEnumType.cs │ ├── ShellPropertyEnums.cs │ ├── ShellPropertyFactory.cs │ ├── ShellPropertyWriter.cs │ ├── StronglyTypedProperties.cs │ ├── SystemProperties.cs │ └── WindowProperties.cs ├── Resources │ ├── LocalizedMessages.Designer.cs │ └── LocalizedMessages.resx ├── Shell.csproj ├── ShellObjectWatcher │ ├── ChangeNotifyEventManager.cs │ ├── ChangeNotifyLock.cs │ ├── MessageListener.cs │ ├── MessageListenerFilter.cs │ ├── ShellObjectNotificationEventArgs.cs │ ├── ShellObjectWatcher.cs │ └── ShellObjectWatcherEnums.cs ├── StockIcons │ ├── StockIcon.cs │ ├── StockIconEnums.cs │ └── StockIcons.cs └── Taskbar │ ├── JumpList.cs │ ├── JumpListCustomCategory.cs │ ├── JumpListCustomCategoryCollection.cs │ ├── JumpListItem.cs │ ├── JumpListItemCollection.cs │ ├── JumpListLink.cs │ ├── JumpListSeparator.cs │ ├── TabbedThumbnail.cs │ ├── TabbedThumbnailBitmapRequestedEventArgs.cs │ ├── TabbedThumbnailClosedEventArgs.cs │ ├── TabbedThumbnailEventArgs.cs │ ├── TabbedThumbnailManager.cs │ ├── TabbedThumbnailProxyWindow.cs │ ├── TabbedThumbnailScreenCapture.cs │ ├── TaskbarEnums.cs │ ├── TaskbarInterfaces.cs │ ├── TaskbarList.cs │ ├── TaskbarManager.cs │ ├── TaskbarWindow.cs │ ├── TaskbarWindowManager.cs │ ├── ThumbnailButton.cs │ ├── ThumbnailButtonClickedEventArgs.cs │ ├── ThumbnailToolbarManager.cs │ ├── ThumbnailToolbarProxyWindow.cs │ └── UserRemovedJumpListItemsEventArg.cs ├── ShellExtensions ├── CustomDictionary.xml ├── GlobalSuppressions.cs ├── Interop │ └── HandlerNativeMethods.cs ├── PreviewHandlers │ ├── ManagedInitializationInterfaces.cs │ ├── PreviewHandler.cs │ ├── PreviewHandlerAttribute.cs │ ├── WinformsPreviewHandler.cs │ └── WpfPreviewHandler.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── LocalizedMessages.Designer.cs │ └── LocalizedMessages.resx ├── ShellExtensions.csproj ├── StorageStream.cs └── ThumbnailProviders │ ├── ManagedInitializationInterfaces.cs │ ├── ThumbnailProvider.cs │ └── ThumbnailProviderAttribute.cs ├── WindowsAPICodePack.sln └── WindowsAPICodePack10.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/README.md -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/AeroGlassDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/AeroGlassDemo.sln -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.Designer.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WindowsFormsGlassDemo/Form1.resx -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WindowsFormsGlassDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WindowsFormsGlassDemo/Program.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/App.xaml -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/App.xaml.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/AeroGlass/CS/WpfGlassDemo/WpfGlassDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/CS/WpfGlassDemo/WpfGlassDemo.csproj -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/AeroGlassDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/AeroGlassDemo.sln -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.Designer.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.resx -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WindowsFormsGlassDemo/Form1.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WindowsFormsGlassDemo/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WindowsFormsGlassDemo/Program.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/Application.xaml -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/AeroGlass/VB/WpfGlassDemo/WpfGlassDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AeroGlass/VB/WpfGlassDemo/WpfGlassDemo.vbproj -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/AppRestartRecoveryDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/AppRestartRecoveryDemo.sln -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/CurrentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/CurrentFile.cs -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Form1.Designer.cs -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Form1.cs -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Form1.resx -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Program.cs -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/CS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/CS/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/AppRestartRecoveryDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/AppRestartRecoveryDemo.sln -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/CurrentFile.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/CurrentFile.vb -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/Form1.Designer.vb -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/Form1.resx -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/Form1.vb -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/AppRestartRecoveryDemo/VB/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/AppRestartRecoveryDemo/VB/Program.vb -------------------------------------------------------------------------------- /Samples/CollectiveSample/CollectiveSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/CollectiveSample/CollectiveSample.sln -------------------------------------------------------------------------------- /Samples/CollectiveSample/CollectiveSample10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/CollectiveSample/CollectiveSample10.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/DXGI/EnumAdapters/EnumAdapters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/DXGI/EnumAdapters/EnumAdapters.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/DXGI/EnumAdapters/EnumAdapters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/DXGI/EnumAdapters/EnumAdapters.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/DXGI/EnumAdapters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/DXGI/EnumAdapters/Program.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/App.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/ChartDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/ChartDemo.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/ChartDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/ChartDemo.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/ChartDemo/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/ChartDemo/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/BitmapShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/BitmapShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/BitmapUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/BitmapUtilities.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/D2DShapes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/D2DShapes.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/D2DShapesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/D2DShapesControl.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/DrawingShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/DrawingShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/EllipseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/EllipseShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/GDIEllipsesShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/GDIEllipsesShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/GeometryShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/GeometryShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/LayerShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/LayerShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/LineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/LineShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/MeshShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/MeshShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/Peacock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/Peacock.jpg -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/RectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/RectangleShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/RoundRectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/RoundRectangleShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/TextLayoutShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/TextLayoutShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/D2DShapes/TextShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/D2DShapes/TextShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/BitmapShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/BitmapShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/BitmapUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/BitmapUtilities.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.Designer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/BrushDialog.resx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/DrawingShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/DrawingShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/EllipseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/EllipseShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/FontEnumComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/FontEnumComboBox.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/GeometryShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/GeometryShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/LineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/LineShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Paint2D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Paint2D.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Paint2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Paint2D.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.Designer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Paint2DForm.resx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/Program.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/RectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/RectangleShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/RoundRectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/RoundRectangleShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.Designer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/TextDialog.resx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/Paint2D/TextShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/Paint2D/TextShape.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/RandomShapes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/RandomShapes/Program.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/RandomShapes/Window.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/RandomShapes/Window.Designer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/RandomShapes/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/RandomShapes/Window.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/RandomShapes/Window.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/RandomShapes/Window.resx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/TextInlineImage/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/TextInlineImage/App.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/TextInlineImage/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/TextInlineImage/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/TextInlineImage/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/TextInlineImage/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/TextInlineImage/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/TextInlineImage/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D/TextInlineImage/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D/TextInlineImage/img1.jpg -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/App.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/D3DStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/D3DStructs.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/app.config -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/dxgisample.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/dxgisample.fx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/tulip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/D2D_D3D_Interop/tulip.jpg -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/App.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/D3DStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/D3DStructs.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/SciFiText.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/SciFiText.fx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/SciFiText.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/SciFiText.fxo -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct2D_3D/SciFiTextDemo/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowser.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowser.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/MeshBrowser/MeshBrowserForm.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/MeshBrowser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/MeshBrowser/Program.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/MeshBrowser/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/MeshBrowser/directx.ico -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/TextureSwap/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/TextureSwap/App.xaml -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/TextureSwap/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/TextureSwap/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/TextureSwap/TextureSwap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/TextureSwap/TextureSwap.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/TextureSwap/TextureSwap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/TextureSwap/TextureSwap.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/Tutorial09/Tutorial09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/Tutorial09/Tutorial09.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/Tutorials/D3D10Tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/Tutorials/D3D10Tutorials.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/D3DStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/D3DStructs.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/Effects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/Effects.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/Program.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.Designer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/Window.resx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.csproj -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.fx -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.fxo -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/WindowsFlag.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D10/WindowsFlag/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D10/WindowsFlag/directx.ico -------------------------------------------------------------------------------- /Samples/DirectX/CS/Direct3D11/Tutorials/D3D11Tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/Direct3D11/Tutorials/D3D11Tutorials.sln -------------------------------------------------------------------------------- /Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/Texturizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/Texturizer.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.cs -------------------------------------------------------------------------------- /Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.fx -------------------------------------------------------------------------------- /Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/CS/UtilitiesLibrary/MeshLoader/XMesh.fxo -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/AssemblyInfo.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/DirectControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/DirectControl.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/DirectControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/DirectControl.h -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/DirectHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/DirectHost.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/DirectHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/DirectHost.h -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/RenderControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/RenderControl.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/RenderControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/RenderControl.h -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/RenderHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/RenderHost.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/RenderHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/RenderHost.h -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/Stdafx.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/Controls/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/Controls/Stdafx.h -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/D3DX10Helpers/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/D3DX10Helpers/Stdafx.cpp -------------------------------------------------------------------------------- /Samples/DirectX/UtilitiesLibrary/D3DX10Helpers/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/UtilitiesLibrary/D3DX10Helpers/Stdafx.h -------------------------------------------------------------------------------- /Samples/DirectX/VB/DXGI/EnumAdapters/EnumAdapters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/DXGI/EnumAdapters/EnumAdapters.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/DXGI/EnumAdapters/EnumAdapters.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/DXGI/EnumAdapters/EnumAdapters.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/DXGI/EnumAdapters/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/DXGI/EnumAdapters/Program.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/Application.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/ChartDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/ChartDemo.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/ChartDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/ChartDemo.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/ChartDemo/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/ChartDemo/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/BitmapShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/BitmapShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/BitmapUtilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/BitmapUtilities.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/D2DShapes.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/D2DShapes.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/D2DShapesControl.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/D2DShapesControl.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/DrawingShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/DrawingShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/EllipseShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/EllipseShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/GDIEllipsesShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/GDIEllipsesShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/GeometryShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/GeometryShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/LayerShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/LayerShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/LineShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/LineShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/MeshShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/MeshShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/Peacock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/Peacock.jpg -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/RectangleShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/RectangleShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/RoundRectangleShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/RoundRectangleShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/TextLayoutShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/TextLayoutShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/D2DShapes/TextShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/D2DShapes/TextShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/BitmapShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/BitmapShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/BitmapUtilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/BitmapUtilities.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.Designer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/BrushDialog.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/DrawingShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/DrawingShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/EllipseShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/EllipseShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/FontEnumComboBox.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/FontEnumComboBox.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/GeometryShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/GeometryShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/LineShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/LineShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Paint2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Paint2D.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Paint2D.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Paint2D.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.Designer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Paint2DForm.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Program.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/RectangleShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/RectangleShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Resources/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Resources/Resource.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/Resources/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/Resources/arrow1.png -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/RoundRectangleShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/RoundRectangleShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.Designer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/TextDialog.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/Paint2D/TextShape.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/Paint2D/TextShape.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/RandomShapes/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/RandomShapes/Program.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/RandomShapes/Window.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/RandomShapes/Window.Designer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/RandomShapes/Window.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/RandomShapes/Window.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/RandomShapes/Window.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/RandomShapes/Window.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/TextInlineImage/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/TextInlineImage/Application.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/TextInlineImage/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/TextInlineImage/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/TextInlineImage/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/TextInlineImage/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D/TextInlineImage/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D/TextInlineImage/img1.jpg -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/D3DStructs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/D3DStructs.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/app.config -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/dxgisample.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/dxgisample.fx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/tulip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/D2D_D3D_Interop/tulip.jpg -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/D3DStructs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/D3DStructs.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/SciFiText.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/SciFiText.fx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/SciFiText.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/SciFiText.fxo -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct2D_3D/SciFiTextDemo/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowser.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowser.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowser.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowserForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/MeshBrowser/MeshBrowserForm.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/MeshBrowser/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/MeshBrowser/Program.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/MeshBrowser/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/MeshBrowser/directx.ico -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/TextureSwap/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/TextureSwap/Application.xaml -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/TextureSwap/TextureSwap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/TextureSwap/TextureSwap.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/TextureSwap/TextureSwap.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/TextureSwap/TextureSwap.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/Tutorial09/Tutorial09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/Tutorial09/Tutorial09.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/Tutorials/D3D10Tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/Tutorials/D3D10Tutorials.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/D3DStructs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/D3DStructs.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/Effects.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/Effects.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/Program.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.Designer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.resx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/Window.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.fx -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.fxo -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/WindowsFlag.vbproj -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D10/WindowsFlag/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D10/WindowsFlag/directx.ico -------------------------------------------------------------------------------- /Samples/DirectX/VB/Direct3D11/Tutorials/D3D11Tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/Direct3D11/Tutorials/D3D11Tutorials.sln -------------------------------------------------------------------------------- /Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/Texturizer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/Texturizer.vb -------------------------------------------------------------------------------- /Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.fx -------------------------------------------------------------------------------- /Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.fxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.fxo -------------------------------------------------------------------------------- /Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/DirectX/VB/UtilitiesLibrary/MeshLoader/XMesh.vb -------------------------------------------------------------------------------- /Samples/ExplorerBrowser/CS/ExplorerBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExplorerBrowser/CS/ExplorerBrowser.sln -------------------------------------------------------------------------------- /Samples/ExplorerBrowser/CS/WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExplorerBrowser/CS/WinForms/Program.cs -------------------------------------------------------------------------------- /Samples/ExplorerBrowser/VB/ExplorerBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExplorerBrowser/VB/ExplorerBrowser.sln -------------------------------------------------------------------------------- /Samples/ExplorerBrowser/VB/WinForms/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExplorerBrowser/VB/WinForms/Program.vb -------------------------------------------------------------------------------- /Samples/ExtendedLinguisticServices/ELSDemo/CS/ELSSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExtendedLinguisticServices/ELSDemo/CS/ELSSamples.sln -------------------------------------------------------------------------------- /Samples/ExtendedLinguisticServices/ELSDemo/CS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExtendedLinguisticServices/ELSDemo/CS/Program.cs -------------------------------------------------------------------------------- /Samples/ExtendedLinguisticServices/ELSDemo/VB/ELSSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExtendedLinguisticServices/ELSDemo/VB/ELSSamples.sln -------------------------------------------------------------------------------- /Samples/ExtendedLinguisticServices/ELSDemo/VB/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ExtendedLinguisticServices/ELSDemo/VB/Program.vb -------------------------------------------------------------------------------- /Samples/HandlerSamples/HandlerSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/HandlerSamples.csproj -------------------------------------------------------------------------------- /Samples/HandlerSamples/HandlerSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/HandlerSamples.sln -------------------------------------------------------------------------------- /Samples/HandlerSamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/Readme.txt -------------------------------------------------------------------------------- /Samples/HandlerSamples/SampleFile.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/SampleFile.xyz -------------------------------------------------------------------------------- /Samples/HandlerSamples/SampleFile.xyz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/SampleFile.xyz2 -------------------------------------------------------------------------------- /Samples/HandlerSamples/ThumbnailProviderDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/ThumbnailProviderDemo.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/ThumbnailProviderDemo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/ThumbnailProviderDemo2.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/WPFPreviewHandlerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/WPFPreviewHandlerDemo.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/WinformsPreviewHandlerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/WinformsPreviewHandlerDemo.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/WpfPreviewHandlerDemoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/WpfPreviewHandlerDemoControl.xaml -------------------------------------------------------------------------------- /Samples/HandlerSamples/WpfPreviewHandlerDemoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/WpfPreviewHandlerDemoControl.xaml.cs -------------------------------------------------------------------------------- /Samples/HandlerSamples/XyzFileDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/HandlerSamples/XyzFileDefinition.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/App.xaml -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/App.xaml.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/NetworkDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/NetworkDemo.csproj -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/NetworkDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/NetworkDemo.sln -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Window1.xaml -------------------------------------------------------------------------------- /Samples/NetworkDemo/CS/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/CS/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/Application.xaml -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/My Project/Resources.resx -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/My Project/Settings.settings -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/NetworkDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/NetworkDemo.sln -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/NetworkDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/NetworkDemo.vbproj -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/Window1.xaml -------------------------------------------------------------------------------- /Samples/NetworkDemo/VB/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/NetworkDemo/VB/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo.sln -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/App.xaml -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/App.xaml.cs -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/MyPowerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/MyPowerSettings.cs -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/PowerMgmtDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/PowerMgmtDemo.csproj -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/YesNoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/YesNoConverter.cs -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/powercfg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/powercfg.ico -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/CS/PowerMgmtDemo/powercfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/CS/PowerMgmtDemo/powercfg.png -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo.sln -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Application.xaml -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/MyPowerSettings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/MyPowerSettings.vb -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/PowerMgmtDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/PowerMgmtDemo.vbproj -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/YesNoConverter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/YesNoConverter.vb -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/powercfg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/powercfg.ico -------------------------------------------------------------------------------- /Samples/PowerMgmtDemo/VB/PowerMgmtDemo/powercfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/PowerMgmtDemo/VB/PowerMgmtDemo/powercfg.png -------------------------------------------------------------------------------- /Samples/Sensors/CS/AccelerationMeasurement/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AccelerationMeasurement/Form1.Designer.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AccelerationMeasurement/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AccelerationMeasurement/Form1.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AccelerationMeasurement/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AccelerationMeasurement/Form1.resx -------------------------------------------------------------------------------- /Samples/Sensors/CS/AccelerationMeasurement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AccelerationMeasurement/Program.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AccelerationMeasurement/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AccelerationMeasurement/app.manifest -------------------------------------------------------------------------------- /Samples/Sensors/CS/AmbientLightMeasurement/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AmbientLightMeasurement/Form1.Designer.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AmbientLightMeasurement/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AmbientLightMeasurement/Form1.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AmbientLightMeasurement/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AmbientLightMeasurement/Form1.resx -------------------------------------------------------------------------------- /Samples/Sensors/CS/AmbientLightMeasurement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AmbientLightMeasurement/Program.cs -------------------------------------------------------------------------------- /Samples/Sensors/CS/AmbientLightMeasurement/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/AmbientLightMeasurement/app.manifest -------------------------------------------------------------------------------- /Samples/Sensors/CS/SensorsSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/CS/SensorsSamples.sln -------------------------------------------------------------------------------- /Samples/Sensors/VB/AccelerationMeasurement/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AccelerationMeasurement/Form1.Designer.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AccelerationMeasurement/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AccelerationMeasurement/Form1.resx -------------------------------------------------------------------------------- /Samples/Sensors/VB/AccelerationMeasurement/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AccelerationMeasurement/Form1.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AccelerationMeasurement/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AccelerationMeasurement/Program.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AccelerationMeasurement/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AccelerationMeasurement/app.manifest -------------------------------------------------------------------------------- /Samples/Sensors/VB/AmbientLightMeasurement/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AmbientLightMeasurement/Form1.Designer.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AmbientLightMeasurement/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AmbientLightMeasurement/Form1.resx -------------------------------------------------------------------------------- /Samples/Sensors/VB/AmbientLightMeasurement/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AmbientLightMeasurement/Form1.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AmbientLightMeasurement/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AmbientLightMeasurement/Program.vb -------------------------------------------------------------------------------- /Samples/Sensors/VB/AmbientLightMeasurement/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/AmbientLightMeasurement/app.manifest -------------------------------------------------------------------------------- /Samples/Sensors/VB/SensorsSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Sensors/VB/SensorsSamples.sln -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/CS/myapp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/CS/myapp.xaml -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/CS/myapp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/CS/myapp.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/CS/window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/CS/window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/CS/window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/CS/window1.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/VB/MyApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/VB/MyApp.xaml -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/VB/MyApp.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/VB/MyApp.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/VB/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/VB/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/CustomCommonFileDialogsDemo/VB/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/CustomCommonFileDialogsDemo/VB/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/DragAndDrop/CS/WPF/ShellObjectDragAndDrop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/DragAndDrop/CS/WPF/ShellObjectDragAndDrop.sln -------------------------------------------------------------------------------- /Samples/Shell/DragAndDrop/VB/WPF/ShellObjectDragAndDrop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/DragAndDrop/VB/WPF/ShellObjectDragAndDrop.sln -------------------------------------------------------------------------------- /Samples/Shell/KnownFoldersBrowser/CS/KnownFoldersBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/KnownFoldersBrowser/CS/KnownFoldersBrowser.sln -------------------------------------------------------------------------------- /Samples/Shell/KnownFoldersBrowser/VB/KnownFoldersBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/KnownFoldersBrowser/VB/KnownFoldersBrowser.sln -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/CS/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/CS/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/CS/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/CS/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/CS/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/CS/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/CS/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/CS/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/VB/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/VB/Application.xaml -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/VB/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/VB/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/VB/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/VB/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/VB/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/VB/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/PicturePropertiesEditor/VB/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/PicturePropertiesEditor/VB/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/GlassHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/GlassHelper.cs -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/SearchApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/SearchApp.sln -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/app.config -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/CS/SearchApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/CS/SearchApp/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/GlassHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/GlassHelper.vb -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/SearchApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/SearchApp.sln -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/app.config -------------------------------------------------------------------------------- /Samples/Shell/SearchApplication/VB/SearchApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/SearchApplication/VB/SearchApp/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/CS/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/CS/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/CS/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/CS/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/CS/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/CS/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/VB/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/VB/Application.xaml -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/VB/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/VB/Application.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/VB/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/VB/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/ShellHierarchyTreeDemo/VB/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ShellHierarchyTreeDemo/VB/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/CS/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/CS/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/CS/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/CS/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/CS/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/CS/StarBackup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/CS/StarBackup.sln -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/VB/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/VB/Application.xaml -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/VB/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/VB/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/VB/MainWindow.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/VB/MainWindow.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/StarBackupUsingLibraries/VB/StarBackup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StarBackupUsingLibraries/VB/StarBackup.sln -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/CS/StockIconsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/CS/StockIconsDemo.sln -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/CS/StockIconsDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/CS/StockIconsDemo/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/CS/StockIconsDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/CS/StockIconsDemo/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/CS/StockIconsDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/CS/StockIconsDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/VB/StockIconsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/VB/StockIconsDemo.sln -------------------------------------------------------------------------------- /Samples/Shell/StockIconsDemo/VB/StockIconsDemo/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/StockIconsDemo/VB/StockIconsDemo/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Form1.cs -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Form1.resx -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/CS/Winforms/Program.cs -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Form1.resx -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Form1.vb -------------------------------------------------------------------------------- /Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TabbedThumbnailDemo/VB/Winforms/Program.vb -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo.sln -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/ChildDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/ChildDocument.cs -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/ChildDocument.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/ChildDocument.resx -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Program.cs -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Resources/Green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Resources/Green.ico -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Resources/Red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/Resources/Red.ico -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/TaskbarDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/TaskbarDemo.csproj -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/CS/TaskbarDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/CS/TaskbarDemo/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo.sln -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/ChildDocument.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/ChildDocument.resx -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/ChildDocument.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/ChildDocument.vb -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Program.vb -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Resources/Green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Resources/Green.ico -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Resources/Red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/Resources/Red.ico -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/TaskbarDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/TaskbarDemo.vbproj -------------------------------------------------------------------------------- /Samples/Shell/TaskbarDemo/VB/TaskbarDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/TaskbarDemo/VB/TaskbarDemo/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/App.xaml -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Icons/first.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Icons/first.ico -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Icons/last.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Icons/last.ico -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/Window1.xaml.cs -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/WPF/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/WPF/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Form1.cs -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Form1.resx -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/Program.cs -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/CS/Winforms/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Application.xaml -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Icons/first.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Icons/first.ico -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Icons/last.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Icons/last.ico -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Window1.xaml -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Window1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/Window1.xaml.vb -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/WPF/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/WPF/app.manifest -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Form1.resx -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Form1.vb -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/Program.vb -------------------------------------------------------------------------------- /Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/Shell/ThumbnailToolbarDemo/VB/Winforms/app.manifest -------------------------------------------------------------------------------- /Samples/ShellObjectWatcherSampleWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ShellObjectWatcherSampleWPF/App.xaml -------------------------------------------------------------------------------- /Samples/ShellObjectWatcherSampleWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ShellObjectWatcherSampleWPF/App.xaml.cs -------------------------------------------------------------------------------- /Samples/ShellObjectWatcherSampleWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ShellObjectWatcherSampleWPF/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/ShellObjectWatcherSampleWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/ShellObjectWatcherSampleWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/CS/TaskDialogDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/CS/TaskDialogDemo.sln -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/CS/TaskDialogDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/CS/TaskDialogDemo/Program.cs -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/CS/TaskDialogDemo/TestHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/CS/TaskDialogDemo/TestHarness.cs -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/CS/TaskDialogDemo/TestHarness.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/CS/TaskDialogDemo/TestHarness.resx -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/CS/TaskDialogDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/CS/TaskDialogDemo/app.manifest -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/VB/TaskDialogDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/VB/TaskDialogDemo.sln -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/VB/TaskDialogDemo/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/VB/TaskDialogDemo/Program.vb -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/VB/TaskDialogDemo/TestHarness.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/VB/TaskDialogDemo/TestHarness.resx -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/VB/TaskDialogDemo/TestHarness.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/VB/TaskDialogDemo/TestHarness.vb -------------------------------------------------------------------------------- /Samples/TaskDialogDemo/VB/TaskDialogDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Samples/TaskDialogDemo/VB/TaskDialogDemo/app.manifest -------------------------------------------------------------------------------- /Tests/Core/CoreTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/CoreTests.csproj -------------------------------------------------------------------------------- /Tests/Core/NetworkList/NetworkListManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/NetworkList/NetworkListManagerTests.cs -------------------------------------------------------------------------------- /Tests/Core/PowerManagement/BatteryStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/PowerManagement/BatteryStateTests.cs -------------------------------------------------------------------------------- /Tests/Core/PowerManagement/PowerManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/PowerManagement/PowerManagerTests.cs -------------------------------------------------------------------------------- /Tests/Core/PropertySystem/PropVariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/PropertySystem/PropVariantTests.cs -------------------------------------------------------------------------------- /Tests/Core/PropertySystem/PropertyKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Core/PropertySystem/PropertyKeyTests.cs -------------------------------------------------------------------------------- /Tests/ExtendedLinguisticServices/LinguisticExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/ExtendedLinguisticServices/LinguisticExceptionTests.cs -------------------------------------------------------------------------------- /Tests/ExtendedLinguisticServices/MappingServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/ExtendedLinguisticServices/MappingServiceTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/Metadata/SensorDescriptionAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/Metadata/SensorDescriptionAttributeTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/Sensors/Light/AmbientLightSensorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/Sensors/Light/AmbientLightSensorTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/Sensors/Light/LuminousIntensityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/Sensors/Light/LuminousIntensityTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/Sensors/Motion/Accelerometer3DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/Sensors/Motion/Accelerometer3DTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/Sensors/UnknownSensorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/Sensors/UnknownSensorTests.cs -------------------------------------------------------------------------------- /Tests/Sensors/SensorsTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Sensors/SensorsTests.csproj -------------------------------------------------------------------------------- /Tests/Shell/KnownFolders/KnownFolderHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/KnownFolders/KnownFolderHelperTests.cs -------------------------------------------------------------------------------- /Tests/Shell/KnownFolders/KnownFoldersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/KnownFolders/KnownFoldersTests.cs -------------------------------------------------------------------------------- /Tests/Shell/PropertySystem/PropertySystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/PropertySystem/PropertySystemTests.cs -------------------------------------------------------------------------------- /Tests/Shell/ShellObjectWatcher/ShellObjectWatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/ShellObjectWatcher/ShellObjectWatcherTests.cs -------------------------------------------------------------------------------- /Tests/Shell/ShellTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/ShellTests.csproj -------------------------------------------------------------------------------- /Tests/Shell/StockIcons/StockIconsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Shell/StockIcons/StockIconsTests.cs -------------------------------------------------------------------------------- /Tests/ShellExtensionTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/ShellExtensionTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/ShellExtensionTests/ShellExtensionTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/ShellExtensionTests/ShellExtensionTests.csproj -------------------------------------------------------------------------------- /Tests/Tests README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Tests README.txt -------------------------------------------------------------------------------- /Tests/Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Tests.sln -------------------------------------------------------------------------------- /Tests/Tests.xunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Tests.xunit -------------------------------------------------------------------------------- /Tests/Tests10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/Tests/Tests10.sln -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/AppRestartRecovery/RecoveryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/AppRestartRecovery/RecoveryData.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Core.csproj -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/CustomDictionary.xml -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Dialogs/Common/DialogControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Dialogs/Common/DialogControl.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Dialogs/Common/DialogsDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Dialogs/Common/DialogsDefaults.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Dialogs/Common/IDialogControlHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Dialogs/Common/IDialogControlHost.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialog.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialogBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Dialogs/TaskDialogs/TaskDialogBar.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/CoreErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/CoreErrorHelper.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/CoreHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/CoreHelpers.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/CoreNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/CoreNativeMethods.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/Dialogs/DialogShowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/Dialogs/DialogShowState.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/NetworkList/INetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/NetworkList/INetwork.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Interop/WindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Interop/WindowMessage.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/NetworkList/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/NetworkList/Network.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/NetworkList/NetworkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/NetworkList/NetworkCollection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/NetworkList/NetworkConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/NetworkList/NetworkConnection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/NetworkList/NetworkListEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/NetworkList/NetworkListEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/NetworkList/NetworkListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/NetworkList/NetworkListManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/BatteryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/BatteryState.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/EventManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/ExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/ExecutionState.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/MessageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/MessageManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/PersonalityGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/PersonalityGuids.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/Power.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/PowerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/PowerManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/PowerPersonality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/PowerPersonality.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PowerManagement/PowerSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PowerManagement/PowerSource.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PropertySystem/PropVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PropertySystem/PropVariant.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/PropertySystem/PropertyKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/PropertySystem/PropertyKey.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/Resources/LocalizedMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/Resources/LocalizedMessages.resx -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/SafeHandles/SafeIconHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/SafeHandles/SafeIconHandle.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/SafeHandles/SafeRegionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/SafeHandles/SafeRegionHandle.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/SafeHandles/SafeWindowHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/SafeHandles/SafeWindowHandle.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Core/SafeHandles/ZeroInvalidHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Core/SafeHandles/ZeroInvalidHandle.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX.sln -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AllTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AllTypes.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AssemblyInfo.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AutoIUnknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AutoIUnknown.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AutoIUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AutoIUnknown.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AutoPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AutoPointer.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/AutoPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/AutoPointer.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/CommonEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/CommonEnums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/CommonUtils.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/CommonUtils.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Convert.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Convert.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter1.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIAdapter1.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice1.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIDevice1.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIEnums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIException.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIException.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory1.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIFactory1.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIKeyedMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIKeyedMutex.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIKeyedMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIKeyedMutex.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIObject.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIObject.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIOutput.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIOutput.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIResource.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIResource.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIStructs.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGIStructs.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface1.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISurface1.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISwapChain.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DXGI/DXGISwapChain.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DCommon.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DCustom.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DEnums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DException.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DInterfaces.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DStructs.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct2D/D2DStructs.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Blob.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Blob.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Buffer.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Counter.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Debug.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Debug.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Device.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Device1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Device1.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Effect.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Enums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Include.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Query.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Query.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10Structs.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10View.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D10/D3D10View.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Buffer.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Counter.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Debug.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Debug.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Device.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Enums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Query.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Query.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11Structs.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11View.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Direct3D11/D3D11View.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectHelpers.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectHelpers.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectObject.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectObject.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectUnknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectUnknown.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectUnknown.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteEnums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteFont.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectWrite/DWriteUtils.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectX.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectX.vcproj -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/DirectXException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/DirectXException.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/GlobalSuppressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/GlobalSuppressions.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/LibraryLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/LibraryLoader.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/LibraryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/LibraryLoader.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Stdafx.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Stdafx.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Validate.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/Validate.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmap.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmap.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapDecoder.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapDecoder.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapLock.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapLock.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapSource.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICBitmapSource.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICContainerFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICContainerFormats.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICEnums.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICException.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICFormatConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICFormatConverter.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICImagingFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICImagingFactory.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICImagingFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICImagingFactory.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICPixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICPixelFormats.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICStreamWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICStreamWrapper.cpp -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICStreamWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICStreamWrapper.h -------------------------------------------------------------------------------- /WindowsAPICodePack/DirectX/DirectX/WIC/WICStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/DirectX/DirectX/WIC/WICStructs.h -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/CustomDictionary.xml -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/GlobalSuppressions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensor.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensorCollection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensorDataReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensorDataReport.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensorManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensorManagerEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensorManagerEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/ISensorManagerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/ISensorManagerEvents.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/PortableDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/PortableDevice.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Interop/SensorNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Interop/SensorNativeMethods.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/EventInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/EventInterest.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/SensorCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/SensorCategories.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/SensorConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/SensorConnection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/SensorPropertyKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/SensorPropertyKeys.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/SensorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/SensorState.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Metadata/SensorTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Metadata/SensorTypes.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/ObjectModel/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/ObjectModel/Sensor.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/ObjectModel/SensorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/ObjectModel/SensorData.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/ObjectModel/SensorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/ObjectModel/SensorList.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/ObjectModel/SensorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/ObjectModel/SensorManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/ObjectModel/SensorReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/ObjectModel/SensorReport.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Resources/LocalizedMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Resources/LocalizedMessages.resx -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Sensors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Sensors.csproj -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Sensors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Sensors.sln -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Sensors/Motion/Accelerometer3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Sensors/Motion/Accelerometer3D.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/Sensors/UnknownSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/Sensors/UnknownSensor.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Sensors/SensorsObjectModel.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Sensors/SensorsObjectModel.cd -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/DefaultShellImageSizes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/DefaultShellImageSizes.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/EnumUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/EnumUnknown.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/IconReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/IconReference.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/NativePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/NativePoint.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/NativeRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/NativeRect.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/SearchCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/SearchCondition.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/SearchConditionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/SearchConditionFactory.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellException.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellFile.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellFileSystemFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellFileSystemFolder.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellFolder.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellFolderItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellFolderItems.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellHelper.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellItemArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellItemArray.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellLibrary.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellLink.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellNonFileSystemFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellNonFileSystemFolder.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellNonFileSystemItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellNonFileSystemItem.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellObject.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellObjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellObjectCollection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellObjectContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellObjectContainer.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellObjectFactory.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellSearchCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellSearchCollection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellSearchConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellSearchConnector.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellSearchFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellSearchFolder.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellThumbnail.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/ShellThumbnailEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/ShellThumbnailEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Common/SortColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Common/SortColumn.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Controls/CommandLinkWPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Controls/CommandLinkWPF.xaml -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Controls/CommandLinkWPF.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Controls/CommandLinkWPF.xaml.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Controls/CommandLinkWinforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Controls/CommandLinkWinforms.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/CustomDictionary.xml -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Design/ShellObjects.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Design/ShellObjects.cd -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/DesktopWindowManager/GlassEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/DesktopWindowManager/GlassEvents.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/DesktopWindowManager/GlassForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/DesktopWindowManager/GlassForm.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/DesktopWindowManager/GlassWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/DesktopWindowManager/GlassWindow.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLog.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/GlobalSuppressions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Interop/Common/ShellCOMClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Interop/Common/ShellCOMClasses.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Interop/Common/ShellCOMGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Interop/Common/ShellCOMGuids.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Interop/Common/WindowUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Interop/Common/WindowUtilities.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/DefinitionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/DefinitionOptions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/FolderCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/FolderCategory.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/FolderProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/FolderProperties.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/FolderTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/FolderTypes.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/IKnownFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/IKnownFolder.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/KnownFolderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/KnownFolderHelper.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/KnownFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/KnownFolders.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/KnownFolders/RetrievalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/KnownFolders/RetrievalOptions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/PropertySystem/IShellProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/PropertySystem/IShellProperty.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/PropertySystem/ShellProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/PropertySystem/ShellProperties.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/PropertySystem/ShellProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/PropertySystem/ShellProperty.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Resources/LocalizedMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Resources/LocalizedMessages.resx -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Shell.csproj -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/StockIcons/StockIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/StockIcons/StockIcon.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/StockIcons/StockIconEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/StockIcons/StockIconEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/StockIcons/StockIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/StockIcons/StockIcons.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpList.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpListCustomCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpListCustomCategory.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpListItem.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpListItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpListItemCollection.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpListLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpListLink.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/JumpListSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/JumpListSeparator.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TabbedThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TabbedThumbnail.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TabbedThumbnailManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TabbedThumbnailManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarEnums.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarInterfaces.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarList.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarWindow.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/TaskbarWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/TaskbarWindowManager.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/Shell/Taskbar/ThumbnailButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/Shell/Taskbar/ThumbnailButton.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/ShellExtensions/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/ShellExtensions/CustomDictionary.xml -------------------------------------------------------------------------------- /WindowsAPICodePack/ShellExtensions/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/ShellExtensions/GlobalSuppressions.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/ShellExtensions/ShellExtensions.csproj -------------------------------------------------------------------------------- /WindowsAPICodePack/ShellExtensions/StorageStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/ShellExtensions/StorageStream.cs -------------------------------------------------------------------------------- /WindowsAPICodePack/WindowsAPICodePack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/WindowsAPICodePack.sln -------------------------------------------------------------------------------- /WindowsAPICodePack/WindowsAPICodePack10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbarros/WindowsAPICodePack/HEAD/WindowsAPICodePack/WindowsAPICodePack10.sln --------------------------------------------------------------------------------