Hello JSW W.,
We had small issue with the mix, max, close buttons of the documents when they are in MdiStandard document style and they are maximized.
Yesterday (Feb,03,2010) we have released a service pack where this problem is fixed.
However, in order to be able to see these buttons you need to place NCommandBarsManager control with one NMenuBar in it where these buttons should resize.
Regarding the second question when the document style is MdiStandard the host of the panel is NMdiChild and you can do the following:
NUIDocument
doc = new NUIDocument();NMdiChild
host = doc.Host as NMdiChild;if (host != null){
host.WindowState =
FormWindowState.Maximized;host.MinimizeBox =
false;}
Regards,
Angel.