Hello Nick, For to use BulkEdit or DockPanels with UIType = TabbedMDI you have to create additional class (for example TabbedMDIDetailViewForm) in ...Module.Win: public class TabbedMDIDetailViewForm: DetailViewForm, IDockManagerHolder
{
public DockManager DockManager
{
get
{
var dockManager = new DockManager();
dockManager.DockingOptions.ShowCaptionImage = true;
dockManager.Form = this;
dockManager.TopZIndexControls.AddRange(new string[] {
"DevExpress.XtraBars.BarDockControl",
"DevExpress.XtraBars.StandaloneBarDockControl",
"System.Windows.Forms.StatusBar",
"DevExpress.XtraBars.Ribbon.RibbonStatusBar",
"DevExpress.XtraBars.Ribbon.RibbonControl"
});
return dockManager;
}
}
} and to add CreateCustomTemplate event to WinApplication.cs: private void Ticket_23112TabbedWindowsFormsApplication_CreateCustomTemplate(object sender, CreateCustomTemplateEventArgs e)
{
if (e.Context == TemplateContext.View)
e.Template = new TabbedMDIDetailViewForm();
} This instructions will be added in documentation Xafari in future. Feel free to contact us if you experience any further difficulties. Regards, Sasha. |