Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notcoffee418/advancedimagecontrol
WPF Image control with Pan and Zoom
https://github.com/notcoffee418/advancedimagecontrol
image wpf xaml
Last synced: 18 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-29T20:35:06.000Z (about 1 year ago)
- Last Synced: 2024-05-01T14:58:05.268Z (10 months ago)
- Topics: image, wpf, xaml
- Language: C#
- Homepage:
- Size: 184 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced Image Control for WPF
[![NuGet](https://img.shields.io/nuget/v/AdvancedImageControl.svg)](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```