RELEASE 2.0.1
+ Added GraphArea::AddCustomChildControl() and GraphArea::RemoveCustomChildControl() methods to make the possibility to add any custom controls that are not vertex or edge.
+ Added ZoomControl::ToContentRectangle() method which translates screen rectangle coordinates to content rectangle coordinates
+ Added correct endpoints rendering for parallel edges on a rectangular vertex shape (thanks ro bleibold)
+ Added some hooks for ZoomControl to notify Presenter::RenderTransform on scale/translation changes. Now bindings to that property are correctly refreshed.
+ Added additional handling of custom objects in GraphArea (eg. clearing)
+ Added dependency property for GraphArea::LogicCore
+ Added new property GraphArea::EnableVisualPropsRecovery. Gets or sets if visual properties such as edge dash style or vertex shape should be automaticaly reapplied to visuals when graph is regenerated.
Turning this off can save a bit of performance if you don't use custom values.
+ Added new property GraphArea::EnableVisualPropsApply. Gets or sets if visual properties such as edge dash style or vertex shape should be automaticaly applied to newly added visuals which are added using AddVertex() or AddEdge() or similar methods.
Turning this off can save a bit of performance if you don't use custom values and making many manual edge/vertex create or remove operations.
+ Improved some showcase code
+ Improved GraphArea code performance (slightly)
+ Fixed minimap rectangle drag issue
+ Fixed issue with ZoomControl area selection by Ctrl+Alt+Click
+ Fixed issue with GraphArea::VertexSelected event
+ Fixed issue with inproper overlap removal work (that issue affected some algorithms vis) using new coordinates system
+ Fixed issue with incorrect rendering of parallel edges (thanks to bleibold)
- GraphArea::Children property has been hidden. Use EdgesList and VertexList properties and corresponding methods instead.
↧