We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Diagram Control

Windows forms:
Dim nodes As NodeCollection = Me.diagram1.Model.Nodes

this code how to convert wpf appliction

2 Replies

PA Parthiban A Syncfusion Team February 17, 2014 05:57 AM UTC

Hi Vijay,

The below vb code can be converted to wpf as follows,
VB: 
Dim nodes As NodeCollection = Me.diagram1.Model.Nodes
WPF:
NodeCollection nodes=this.diagram1.Model.Nodes;

Regards,
Parthiban A.


PA Parthiban A Syncfusion Team February 17, 2014 11:21 AM UTC

Hi Vijay,

Please ignore the previuos response.

The below windows form code can be converted to wpf as follows,
Windows Forms:
Dim nodes As NodeCollection = Me.diagram1.Model.Nodes
WPF:
Dim nodes As CollectionExt = Me.diagram1.Model.Nodes

Regards,
Parthiban A.

Loader.
Up arrow icon