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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -