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

RadPanes Coming into TabForm

1 Answer 70 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Piyush Patel
Top achievements
Rank 1
Piyush Patel asked on 07 Oct 2009, 11:06 AM

Hello Sir! I m working on silverlight 3.0 beta version. I m design one .xaml file.I m using one RadSplitContainer with one RadPaneGroup. I m using TWO RadPanes in one RadPaneGroup.Now my problem is Both RadPanes are display in TABFORM.Mean At time only one RadPane I can see.For other RadPanes I press TAB.So why Both RadPane coming into TABFORM. I WANT BOTH RADEPANE WITHOUT TABFORM.AND BOTH RADPANE DISPLAY SAME TIME NOT ONE AFTER OTHER.I want to display both RadPanes without TAB.My code is below.Thank You!

<RadDock:RadSplitContainer InitialPosition="DockedTop">

                                <RadDock:RadPaneGroup>

                                    <RadDock:RadPane x:Name="paneDates">

                                    </RadDock:RadPane>

                                 

                                    <RadDock:RadPane x:Name="paneDates2" >

                                    </RadDock:RadPane>

                                </RadDock:RadPaneGroup>

                            </RadDock:RadSplitContainer>

1 Answer, 1 is accepted

Sort by
0
Accepted
Miroslav Nedyalkov
Telerik team
answered on 08 Oct 2009, 07:14 AM
Hi Piyush,

If you need to show the panes next each other you need to create two PaneGrous and put panes in separate groups. Here is an example:
<RadDock:RadSplitContainer InitialPosition="DockedTop"
    <RadDock:RadPaneGroup> 
        <RadDock:RadPane x:Name="paneDates1"
 
        </RadDock:RadPane> 
    </RadDock:RadPaneGroup> 
    <RadDock:RadPaneGroup> 
        <RadDock:RadPane x:Name="paneDates2"
 
        </RadDock:RadPane> 
    </RadDock:RadPaneGroup> 
</RadDock:RadSplitContainer> 

If you need to arrange the panes in vertical direction, just set the Orientation property of the RadSplitContainer control to Vertical.

Sincerely yours,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Docking
Asked by
Piyush Patel
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or