How can I help you?
How to float a single control even if it is tabbed to many controls?
4 Feb 20251 minute to read
The FloatControl method enables the end users to float a particular control. Using this method, we can float a single control even if it is tabbed with many controls.
//To display the ListBox control at the desired location.
Rectangle rectangle = this.Bounds;
this.dockingManager.FloatControl(this.listBox1, new Rectangle(rectangle.Right+25,rectangle.Bottom-150,175,200));'To display the ListBox control at the desired location.
Dim rectangle As Rectangle = Me.Bounds
Me.dockingManager.FloatControl(Me.listBox1, New Rectangle(rectangle.Right+25,rectangle.Bottom-150,175,200))