Hi Suresh,
You could load and save tabbed MDI state information using the TabbedMDIManager''s LoadTabGroupStates/SaveTabGroupStates method.
The Load module should look as shown below :
this.memstream.Position = 0;
AppStateSerializer aser = new AppStateSerializer(SerializeMode.BinaryFmtStream, memstream);
this.tabbedMDIManager.LoadTabGroupStates(aser);
The Save module should look as shown below :
AppStateSerializer aser = new AppStateSerializer(SerializeMode.BinaryFmtStream, memstream);
this.tabbedMDIManager.SaveTabGroupStates(aser);
aser.PersistNow();
Please refer to the
sample application attached here which shows how this can be done. Let me know if you need any additional information. Thanks for choosing Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.