I have a tab control which I docked in my windows form via the ultraDockManager. When I drag the window to undock it from the main form, is there a way I can maximize that undocked window to fill my entire second screen or is this simply not a feature of the dock manager? I do have maximize and minimize buttons visible in the upper right corner of the undocked window but I think those are for maximizing and minimizing within the panel itself, not to maximize the entire docked window. Any help would be very much appreciated.
Thanks!
simply do this:
ultraDockManager.PaneFromControl(YourControl).Visible=false;
Form popUpForm=new Form();
YourControl.Parent=popUpForm;
YourControl.Dock=Dock.Fill;
popUpForm.WindowState=WindowState.Maximized;
popUpForm.Show();
Thanks Jose! Very much appreciated...
Hello Michelle,
I will be happy to help you out with this issue.
I have created case # CAS-83682-1TW7ZN for you to better assist you with this issue going forward. To access the case, simply log into your IG account and click on My Support Activity.
Please let me know if you have further questions in this matter utilizing the case created.
Hi Mike,
I know it's been a few months but I'm still not able to get my undocked pane to work properly and have nearly given up on attempting to minimize and maximize the undocked window. I'm at the point where I just want to remove the maximize and minimize icons in the upper right hand corner of the window. I've set the ShowMinimizeButton and ShowMaximizeButton properties to false and they disappear in the design environment but as soon as I run the application, they are both there but grayed out. So I've got two things going on now. I can't get the maximize and minimize to work yet I can't get rid of the button so we're not confusing our users. If you have any suggestions, I would very much appreciate your help.
Thanks,
Michelle
Michelle,
Is there anything further that I can do to help you?