I'm trying to programmatically display two Mdi child forms side-by-side, like the attached picture.
I can accomplish this by dragging a child to 'dock' by the side, but I don't want the user to have to do this.
Can I accomplish this programmatically?
Hello Daryl,
Yes, you can position and reposition tabs as you need. To do so you may use MoveToGroup or MoveToNewGroup methods of UltraTabbedMdiManger. Check the attached sample where I shown how to implement this. Note, you can also disallow end user to drag tabs by setting AllowDrag of TabSettings to None.
Please let me know if you have any additional questions on this matter.
Thank you! This works awesomely :) I chose to set the TabGroupSettings 'Style' property to wizard when there is only one tab, allowing it to hide the header bar, and only showing when there is more than one tab. It's clean!