|
when I have two models in the document explorer, I cant switch to the corresponding diagram |
We suggest you to use DocumentExplorer’s “AfterSelect” event to select the corresponding Diagram manually in your application. Please check our DiagramBuilder sample which is installed your machine in below mentioned location.
Code example:
[VB]
' Subscribe for DocumentExplorer selection change
AddHandler m_documentExplorer.AfterSelect, AddressOf m_documentExplorer_AfterSelect
Private Sub m_documentExplorer_AfterSelect(ByVal sender As Object, ByVal e As TreeViewEventArgs)
'Add your logic here...
End Sub
[Installed Drive]:\Users[username]\AppData\Local \Syncfusion\EssentialStudio\[Installed Version]\samples\Windows\ Diagram.Windows\Samples\Product Showcase\Diagram Builder
|
|
when I use detach(model), I cant overwrite on existing model,, i.e to creat new model by overwriting on existing model. If I try to overwrite, the model name becomes the default 'Model' |
By default, the DocumentExplorer is set the Name as “Model” while initializing/attaching the model into the documentExplorer. We have considered this as an issue with “The Model’s Name is not updated after loading the Saved diagram” and we have logged a defect report. The fix for the issue is estimated to be available in our Volume 1 Service Pack 2 release and it will be available on end of April 2018.
|