Hello everyone,
In our application we have multiple document types (example: run, running, notrun) and we would like to show and hide the documents depending on the state of the application. Is this possible and can we do this without screwing up things like split views and the list of available document tabs? I have this working by hiding the parent tab strip like this:
foreach (DocumentWindow doc in dockManager1.DocumentWindows)
if(doctype != "run")
(doc.Parent as ActiproSoftware.UIStudio.TabStrip.TabStripPage).Active = false;
But this screws up a bunch of the DocManager functionality. Does anyone know if what we want to do is possible and if so, what is the best way to do this?
Thanks,
Jeff Lundstrom
In our application we have multiple document types (example: run, running, notrun) and we would like to show and hide the documents depending on the state of the application. Is this possible and can we do this without screwing up things like split views and the list of available document tabs? I have this working by hiding the parent tab strip like this:
foreach (DocumentWindow doc in dockManager1.DocumentWindows)
if(doctype != "run")
(doc.Parent as ActiproSoftware.UIStudio.TabStrip.TabStripPage).Active = false;
But this screws up a bunch of the DocManager functionality. Does anyone know if what we want to do is possible and if so, what is the best way to do this?
Thanks,
Jeff Lundstrom