gitextract_n7bu3m8j/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── codeql-analysis.yml ├── .gitignore ├── .markdownlint.json ├── CHANGELOG.md ├── Cyotek.Windows.Forms.ImageBox/ │ ├── Cyotek.Windows.Forms.ImageBox.csproj │ ├── Cyotek.Windows.Forms.ImageBox.nuspec │ ├── ImageBox.cs │ ├── ImageBoxActionSources.cs │ ├── ImageBoxBorderStyle.cs │ ├── ImageBoxCancelEventArgs.cs │ ├── ImageBoxGridDisplayMode.cs │ ├── ImageBoxGridScale.cs │ ├── ImageBoxMouseWheelMessageFilter.cs │ ├── ImageBoxMouseWheelMode.cs │ ├── ImageBoxNativeMethods.cs │ ├── ImageBoxPanDirection.cs │ ├── ImageBoxPanMode.cs │ ├── ImageBoxPanStyle.cs │ ├── ImageBoxSelectionMode.cs │ ├── ImageBoxSizeMode.cs │ ├── ImageBoxZoomActions.cs │ ├── ImageBoxZoomEventArgs.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ScrollControl.cs │ ├── ScrollProperties.cs │ ├── VirtualScrollableControl.cs │ ├── ZoomLevelCollection.cs │ ├── ZoomLevelCollectionConverter.cs │ └── cyopublic.snk ├── Cyotek.Windows.Forms.ImageBox.Demo/ │ ├── AboutDialog.cs │ ├── AboutDialog.designer.cs │ ├── AboutDialog.resx │ ├── AnimatedGifDemoForm.Designer.cs │ ├── AnimatedGifDemoForm.cs │ ├── AnimatedGifDemoForm.resx │ ├── BaseForm.Designer.cs │ ├── BaseForm.cs │ ├── BaseForm.resx │ ├── Cyotek.Windows.Forms.ImageBox.Demo.csproj │ ├── DisposedImageDemoForm.Designer.cs │ ├── DisposedImageDemoForm.cs │ ├── DisposedImageDemoForm.resx │ ├── DragHandle.cs │ ├── DragHandleAnchor.cs │ ├── DragHandleCollection.cs │ ├── DragTestForm.Designer.cs │ ├── DragTestForm.cs │ ├── DragTestForm.resx │ ├── EventsListBox.cs │ ├── FilteredPropertyGrid.cs │ ├── GeneralDemoForm.Designer.cs │ ├── GeneralDemoForm.cs │ ├── GeneralDemoForm.resx │ ├── GroupBox.cs │ ├── ImageBoxEx.cs │ ├── MainMenuForm.cs │ ├── MainMenuForm.designer.cs │ ├── MainMenuForm.resx │ ├── MiniMapDemoForm.cs │ ├── MiniMapDemoForm.designer.cs │ ├── MiniMapDemoForm.resx │ ├── OpenUrlDialog.Designer.cs │ ├── OpenUrlDialog.cs │ ├── OpenUrlDialog.resx │ ├── PanStylesDemoForm.Designer.cs │ ├── PanStylesDemoForm.cs │ ├── PanStylesDemoForm.resx │ ├── PixelGridForm.Designer.cs │ ├── PixelGridForm.cs │ ├── PixelGridForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── PropertyGrid.cs │ ├── ResizableSelectionDemoForm.Designer.cs │ ├── ResizableSelectionDemoForm.cs │ ├── ResizableSelectionDemoForm.resx │ ├── Resources/ │ │ └── markdownpad-github.css │ ├── ScaledAdornmentsDemoForm.Designer.cs │ ├── ScaledAdornmentsDemoForm.cs │ ├── ScaledAdornmentsDemoForm.resx │ ├── SizeModeDemoForm.Designer.cs │ ├── SizeModeDemoForm.cs │ ├── SizeModeDemoForm.resx │ ├── SwitchImageDuringZoomDemoForm.Designer.cs │ ├── SwitchImageDuringZoomDemoForm.cs │ ├── SwitchImageDuringZoomDemoForm.resx │ ├── TextDemoForm.Designer.cs │ ├── TextDemoForm.cs │ ├── TextDemoForm.resx │ ├── VirtualModeDemonstrationForm.Designer.cs │ ├── VirtualModeDemonstrationForm.cs │ ├── VirtualModeDemonstrationForm.resx │ ├── app.manifest │ ├── cyopublic.snk │ └── packages.config ├── Cyotek.Windows.Forms.ImageBox.Design/ │ ├── Cyotek.Windows.Forms.ImageBox.Design.csproj │ ├── ImageBoxDesigner.cs │ └── Properties/ │ └── AssemblyInfo.cs ├── Cyotek.Windows.Forms.ImageBox.sln ├── LICENSE.txt ├── README.md ├── acknowledgements.md ├── build.cmd ├── nuget.config └── res/ ├── PanAll.cur ├── icon-16.pdn └── icon-32.pdn