
For example,
I would like to write code as next,
DockingWindow window1 = this.dockSite.GetDockingWindow( 0 ); // Window in 1st tab
DockingWindow window2 = this.dockSite.GetDockingWindow( 1 ); // Window in 2nd tab
As you know, currently GetDockingWindow doesn't support integer index parameter.
Also, DockSite.Documents property has docking windows in order by the time of creation.
Is there any appropriate method or property?
Thanks in advance.
I would like to write code as next,
DockingWindow window1 = this.dockSite.GetDockingWindow( 0 ); // Window in 1st tab
DockingWindow window2 = this.dockSite.GetDockingWindow( 1 ); // Window in 2nd tab
As you know, currently GetDockingWindow doesn't support integer index parameter.
Also, DockSite.Documents property has docking windows in order by the time of creation.
Is there any appropriate method or property?
Thanks in advance.