Raised when an anchor point must be custom drawn.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
C# Copy Code |
---|
public event EventHandler<DrawAnchorPointEventArgs> DrawAnchorPoint |
Visual Basic Copy Code |
---|
Public Event DrawAnchorPoint As EventHandler(Of DrawAnchorPointEventArgs) |
DrawAnchorPoint event handlers receive an argument of type DrawAnchorPointEventArgs. The following DrawAnchorPointEventArgs members provide information relevant to the event:
Member name | Description |
---|---|
Node | A DiagramNode containing the anchor point that is being painted. |
AnchorIndex | Index of the anchor point withing the node's AnchorPattern. |
AnchorPattern | An AnchorPattern instance that contains the anchor point definition. |
Location | A Point specifying the location of the anchor point. |
A DrawingContext instance whose methods should be used to draw the anchor point mark. |
DrawAnchorPoint is raised for an AnchorPoint if the point's MarkStyle is set to Custom.
The following example demonstrates how to draw images for anchor points:
C# Copy Code |
---|
void diagram_DrawAnchorPoint(object sender, DrawAnchorPointEventArgs e) |
Visual Basic Copy Code |
---|
Sub diagram_DrawAnchorPoint(ByVal sender As Object, ByVal e As DrawAnchorPointEventArgs) Handles diagram.DrawAnchorPoint |
WpfDiagram Programmer's Guide | © 2024 MindFusion |