This is a migrated thread and some comments may be shown as answers.

Floating RadPanes List

1 Answer 30 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Hisham
Top achievements
Rank 1
Hisham asked on 13 Sep 2014, 01:05 PM
How can I get list of the floating RadPanes in RadDocking control?

1 Answer, 1 is accepted

Sort by
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.
 
Tags
Docking
Asked by
Hisham
Top achievements
Rank 1
Answers by
Kalin
Telerik team
Share this question
or