BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi Hemant,
Thanks for using Syncfusion product.
can save the processing diagram and later open it? | Yes, you can use diagram.LoadBinary() and diagram.SaveBinary() method to load and save the diagram file. Please refer the below code snippet and dashboard location for your reference. Here is the code snippet: string filepath = ".../.../.../WindowsFormsApplication2/sample.edd"; //Load diagram file diagram1.LoadBinary(filepath); //Save diagram file diagram1.SaveBinary(filepath); Here is the dashboard location: ...\My Documents\Syncfusion\EssentialStudio\VersionNumber\Windows\Diagram.Windows\Samples |
can add custom win forms for saving properties with each custom defined control and connectors too? | Could you please share us more information about your requirement probably screenshot or video which will help us to analyze further and provide you a better solution? |
can read all those custom defined control's and its properties? | Could you please let us know whether your actual intention is to use other windows controls in diagram or not? If so, please use our ControlNode in order to use other controls in diagram. If not, please share us more information probably a screenshot or video, this will help us to analyze further and provide better solution. Here is the code snippet: //initialize button ButtonAdv btn = new ButtonAdv(); btn.Text = "Click to activate me"; btn.UseVisualStyle = true; btn.UseVisualStyleBackColor = true; btn.Office2007ColorScheme = Office2007Theme.Blue; btn.Appearance = ButtonAppearance.Office2007; btn.Click += new EventHandler( btn_Click ); //initialize control node with button ControlNode ctrlnode = new ControlNode( btn, new RectangleF( 100, 200, 150, 50 ) ); ctrlnode.ActivateStyle = ActivateStyle.ClickPassThrough; this.diagram1.Model.AppendChild( ctrlnode ); Here is the dashboard sample location in your machine: ...\My Documents\Syncfusion\EssentialStudio\ VersionNumber\Windows\Diagram.Windows\Samples\Getting Started\ Controls Galore |
Please let us know if you have any concern.
Regards,
Naganathan K G