The third line isn't valid...how can I peform the desired action?
DocumentWindow dc= dockSite.DocumentWindows.First(dw => dw.Name == "MyTab");
dc.Float();
dc.Maximize();
The third line isn't valid...how can I peform the desired action?
DocumentWindow dc= dockSite.DocumentWindows.First(dw => dw.Name == "MyTab");
dc.Float();
dc.Maximize();
Hi Jim,
Perhaps you could do Window.GetWindow(dc) to get the Window and then set its WindowState.
That works great...thanks!
Please log in to a validated account to post comments.