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

RadPaneGroup DropDownMenu only on first group

1 Answer 72 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 26 Jun 2012, 04:13 PM
If I have document panes in two RadPaneGroups, the dropdown list of open documents is only shown in the first group.  Is this by design? And if so would it be possible to have it displayed in all groups? I've attached an image illustrating the current problem.
Thanks in advance,
Steve

1 Answer, 1 is accepted

Sort by
0
Georgi
Telerik team
answered on 29 Jun 2012, 10:33 AM
Hello Steve,

When you drag a PaneGroup in the DocumentHost new PaneGroup is generated and by default its DropDown is not visible. So in order to overcome that you need to apply an implicit style in App.xaml:
<Application.Resources>
        <Style x:Name="paneGroupStyle" TargetType="{x:Type telerik:RadPaneGroup}">
            <Setter Property="DropDownDisplayMode" Value="Visible"/>
        </Style>
    </Application.Resources>

You can find a simple implementation in the attached project .
Hope this will help.

Kind regards,
Georgi
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
Docking
Asked by
Steve
Top achievements
Rank 1
Answers by
Georgi
Telerik team
Share this question
or