c# - Can't find myDockPanel.DockAsMdiDocument() -


i can't find dockasmdidocument() method of dockpanel. added available devexpress references still there no such function.

i want docpanel fill form in load event ( because know not possible in design view ). missing ? how can without dockasmdidocument method ?

i'm using devexpress version 11.1.4 c3 visual studio 2010 on windows 7 x64.

instead of using dockasmdidocument alternatively can dock dockpanel creating new document object following:

mydockpanel.dock = dockingstyle.float; //this because documentmanager can dock floating dockpanel, because works forms. document doc = tabbedview1.controller.registerdockpanel(mydockpanel.floatform) document; tabbedview1.controller.dock(doc); 

put on dockmanager's load event if want use code on start up.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -