Hello,
Did somebody find out a ''workaround" for that!
I have the same situation. I have programmed a very nice application with a ribbon and I can detect what kid of form is active in my Raddock so the menu in the ribbon is dynamic.
Since a lot of people have 2 screens right now, I was thinkg of , in the same application, start the same master_form ( where my ribbon is) and then with drag and drop or a button be able to ship my documentwindow to the other screen ( with the exact same layout since it is just another instance of my form).
But this code doesn't work
RadForm CurrentActiveDockWindows = (RadForm)((Telerik.WinControls.UI.Docking.HostWindow(RadDock1.DocumentManager.ActiveDocument)).MdiChild;
TheOtherScreen.RadDock1.DockControl(CurrentActiveDockWindows, Telerik.WinControls.UI.Docking.DockPosition.Fill, Telerik.WinControls.UI.Docking.DockType.Document);
Maybe it is me that doesn't understand (I'm new to telerik) I think that I'm transfering the radform of the doccumentDock element here... but I want to transfert all the DocumentElement on the other side...