Hello,
I have created a new XAF 16.1.5 solution, set in TabbedMDI.Mode and then I have added XafariDockPanels Module.
Additionally I have added the substandig class and the event to load it.
Now all the standard actions are doubled. What am i doing wrong?
Thanks
Reinhold
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;
}
}
}