How can I get list of the floating RadPanes in RadDocking control?
1 Answer, 1 is accepted
0
Kalin
Telerik team
answered on 16 Sep 2014, 09:00 AM
Hello Hisham,
The easiest way to get all of the floating Panes would be to get all the Panes from Panes collection of the Docking which have IsFloating set to true. For example you can simply use the following code snippet:
var floatingPanes = this.Docking.Panes.Where(p => p.IsFloating);
Hope this helps.
Regards,
Kalin
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.