clovett / VirtualCanvas

A WPF control that provides a nice 2-dimentional virtual canvas using efficient QuadTree index

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VirtualCanvas

This project contains a WPF control that provides a nice 2-dimensional virtual canvas using an efficient QuadTree index and a demo that shows how to use it.

See Demo Video

The demo creates a whopping 100,000 objects that are represented visually as simple shapes in WPF like Ellipse, Rectangle, and Polygon. These shapes are spread out over a large 100,000 x 100,000 pixel canvas and the VirtualCanvas makes this perform nicely as you scroll through the data.

You could imagine that creating 100,000 WPF shapes would take a long time and use a lot of memory, but with VirtualCanvas the memory usage is the very reasonable.

This is what it looks like, notice the scroll bar thumbs are tiny which shows you that the canvas is huge but scrolling performance is smooth no matter where you scroll to.

You can drag the left mouse button to pan the view, you can select a shape with mouse click and you can move the selected shape by dragging it.

screen

About

A WPF control that provides a nice 2-dimentional virtual canvas using efficient QuadTree index

License:MIT License


Languages

Language:C# 100.0%