
7 Answers, 1 is accepted
Thank you for contacting us.
We will be happy to help you, but we need more details about the problem.
Could you please send us a screenshot or a demo to illustrate the described behavior?
Looking forward to your reply.
George
the Telerik team

<telerik:RadPane x:Class="OMTestHarness.LogonPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Header="Logon" mc:Ignorable="d" d:DesignHeight="232" d:DesignWidth="348" Name="Logon" CanUserClose="False" >
<Canvas Margin="0,0,0,0">
<Label Margin="0,20,0,0" Height="20" Width="98" Content="User Name" Padding="0" HorizontalContentAlignment="Right" />
<TextBox Margin="102,20,0,0" Height="20" Width="120" Name="UserName" LostFocus="UserNameChk" />
<Label Margin="0,50,0,0" Height="20" Width="98" Content="Password" Padding="0" HorizontalContentAlignment="Right" />
<TextBox Margin="102,50,0,0" Height="20" Width="120" Name="Password" />
<Label Margin="0,80,0,0" Height="20" Width="98" Content="Password2" Padding="0" HorizontalContentAlignment="Right" />
<TextBox Margin="102,80,0,0" Height="20" Width="120" Name="Password2" />
<Label Margin="0,110,0,0" Height="20" Width="98" Content="Application" Padding="0" HorizontalContentAlignment="Right" />
<telerik:RadComboBox Margin="102,110,0,0" Height="20" Width="120" DisplayMemberPath="Key" SelectedValuePath="Value" Name="ApplicationID" ToolTip="The Application to Logon to" TabIndex="20">
</telerik:RadComboBox>
<Label Margin="0,140,0,0" Height="20" Width="98" Content="AppEntity ID" Padding="0" HorizontalContentAlignment="Right" />
<TextBox Margin="102,140,0,0" Height="20" Width="100" Name="AppEntity" />
<Button Margin="80,170,0,0" Height="20" Width="100" Name="LogonBtn" ToolTip="Logon using the parameters above" Click="Login" IsDefault="True">
<StackPanel FlowDirection="LeftToRight">
<Image Margin="0,0,0,0" Source="/OMTestHarness;component/Images/lock.png" Width="19" Height="19" HorizontalAlignment="Center" VerticalAlignment="Center" />
<Label Margin="20,0,0,0">Logon</Label>
</StackPanel>
</Button>
<Button Margin="80,170,0,0" Height="20" Width="100" Name="LogOffBtn" Content="Log Off" ToolTip="LogOff the OM Session" Visibility="Hidden" Click="LogOff"/>
</Canvas>
</telerik:RadPane>
RadPanes represents only the small TabItems grouped in the RadPaneGroup. For more information you could refer to our online documentation - http://www.telerik.com/help/silverlight/raddocking-visual-structure.html
Could you explain why do you need to customize a RadPane in the code you provide?
George
the Telerik team

In my application, I display a RadPane on request in a RadDocking/RadPaneGroup. It is a very flexible model and works well.
If I create a WPF Page object, I can edit it in the viewer. I want to be able to create a RadPane the same way. I need to add fields or modify layout and there should be no reason I cannot edit it in VS 2010 or Expression Blend? Currently, I have to replace RadPane with Page (and make a couple of other minor changes) in order to edit it.
It appears that the RadPane gets presented over top of the other controls, is it possible to 'push' it to the bottom layer?

Editing the RadPane in this way is not supported scenario. If you want to customize it, I would suggest you to refer to our online documentation here - http://www.telerik.com/help/wpf/raddocking-styling-the-radpane.html
Please do not hesitate to contact us if you require any further information. I will be glad to assist you further.
George
the Telerik team

I can't believe there haven't been more requests for this. I'll look around the site a little more.