I have requirement to have a window/page that will support
background Image, Ruler, zoom functionality , draw points (add, remove and move points)
draw lines and able to join lines to points.
I have attached an image gives rough idea.
Which controls/ library can I use to achieve this?
Thanks you
The XamDiagram does not support print functionality at this moment but you can up vote this feature request here.That being said, you can implement a workaround by creating an image out of the xamDiagram, and print it instead.
Is there print support in XAMDiagram ?
Many Thanks
Thank you very much for your help. I am going to ask for new features like ruler and connection to connection support.
The DiagramConnection does not provide ConnectionPoints property like DiagramNode does and therefore you cannot snap one DiagramConnection to another DiagramConnection. I suggest you to submit feature request on our website: http://ideas.infragistics.com/forums/192363-wpf
That being said, you can partially achieve what you need by defining LineGeomerty for a custom DiagramNode and then specify ConnectionPoints:<GeometryGroup x:Key="VerticalLine"> <LineGeometry StartPoint="0,0" EndPoint="0,10" /> </GeometryGroup>
<ig:DiagramConnectionPointCollection x:Key="VerticalLineConnections"> <ig:DiagramConnectionPoint Position="0.5,0.0" Name="c0" /> <ig:DiagramConnectionPoint Position="0.5,0.25" Name="c1" /> <ig:DiagramConnectionPoint Position="0.5,0.50" Name="c2" /> <ig:DiagramConnectionPoint Position="0.5,0.75" Name="c3" /> <ig:DiagramConnectionPoint Position="0.5,1.0" Name="c4" /> </ig:DiagramConnectionPointCollection>
<ig:DiagramNode Width="1" Height="25" Stroke="Red" MaintainAspectRatio="False" StrokeThickness="1" ConnectionPoints="{StaticResource VerticalLineConnections}" Geometry="{StaticResource VerticalLine}"/>
This way you can connect any DiagramConnection to above DiagramNode. However, you will not be able to re-position StartPoint and EndPoint of the VerticalLine in free-mode as you can with starting/ending points of DiagramConnection.
As questions #2, Diagram controls does not provide a way to hide square boxes displayed at the end of connection when it is selected, because they allow end-users to re-position of starting/ending points.
Hi there,
Thanks you again for updated sample app, ruler works as expected. Some question regarding my requirements.
1 Feeling I am getting from using XAMDiagram is that it supports nodes and connections and a node can be connected to a connection.
Is it possible to connect connection with connection? Or introduce custom type ? My requirement is to create a circuit and draw segments, It means
I want to connect connections edges with lines. (a Line that will snap to connection edges)
2. How to hide square boxes displayed at the end of connection when it is selected
Thank You