https://github.com/notcoffee418/advancedimagecontrol
WPF Image control with Pan and Zoom
https://github.com/notcoffee418/advancedimagecontrol
image wpf xaml
Last synced: about 2 months ago
JSON representation
WPF Image control with Pan and Zoom
- Host: GitHub
- URL: https://github.com/notcoffee418/advancedimagecontrol
- Owner: NotCoffee418
- License: mit
- Created: 2024-01-29T19:57:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T20:35:06.000Z (over 2 years ago)
- Last Synced: 2025-10-08T11:44:03.746Z (9 months ago)
- Topics: image, wpf, xaml
- Language: C#
- Homepage:
- Size: 184 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced Image Control for WPF
[](https://www.nuget.org/packages/AdvancedImageControl/)
## Features
- Inherit from `Image` control, supporting all it's features
- Panning and zooming
## Usage
Install the [NuGet package](https://www.nuget.org/packages/AdvancedImageControl/):
```powershell
Install-Package AdvancedImageControl
```
Add the following namespace to your XAML file:
```
xmlns:aic="clr-namespace:AdvancedImageControl;assembly=AdvancedImageControl"
```
Then you can use the control like this:
```xml
```