/wpf-diagram-change-connection-points

Change a shape's connection points at runtime

Primary LanguageC#OtherNOASSERTION

DiagramControl for WPF - Change a Shape's Connection Points at Runtime

This example modifies a shape's ConnectionPoints collection at runtime. To illustrate this behavior, we added a trackbar that changes the number and position of connection points.

image

The ConnectionPoints collection does not have public members that allow you to add or remove items. To accomplish this task, create a new point collection and assign it to the ConnectionPoints property:

Point[] points = new Point[...];
shape.ConnectionPoints = new DevExpress.Diagram.Core.DiagramPointCollection(points);

Files to Review

Documentation

More Examples

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)