//add namespace using ControlExtenders; ... // declare dockExtender as a member of the form DockExtender dockExtender; ... // in the Form1() constructor create the DockExtender to manage controls // on for the 'dockHost' dockExtender = new DockExtender(this); // 'this' is Form1 // Attach the toolStrip1 toolbar. The 2nd argument is the handle. // This will make the whole toolstrip draggable. A floaty object is // returned. IFloaty floaty = dockExtender.Attach(toolStrip1);
// Attach the panel as container, a label as handlebar and a splitter to // resize the control to make panel1 dockable/floatable and resizable IFloaty floaty = dockExtender.Attach(panel1, label1, splitter1);
// Attach the toolStrip1 toolbar as container and handle IFloaty floaty = dockExtender.Attach(toolStrip1); // Supply false for 'dockOnInside'-flag. Allow docking on the outside of the // docking host floaty.DockOnInside = false; // dock to outside
// Get a reference to the floating control to which the container is attached // by the DockExtender IFloaty floaty = dockExtender.Attach(panel1, label1, splitter1); // The floaty will raise a Docking event when it is docking. floaty.Docking += new EventHandler(floaty_Docking); ... void floaty_Docking(object sender, EventArgs e) { // Make sure the ZOrder remains intact for the menubar and statusbar menuStrip1.SendToBack(); statusStrip1.SendToBack(); }