Hi,
I am new to Telerik WPF Controls,
I need to convert some Silverlight stuff to WPF.
I heard that "All the classes or controls in Silverlight has equal classes or controls in WPF".
But when i am trying to do it,i was not able to find some similar controls for WPF.
I will be greatfull if i get a mapping between the Silverlight and WPF controls.
For Eg.
(1) In silverlight,<HierarchicalDataTemplate> is in assembly=Telerik.Windows.Controls
but for WPF it is not there, may be due to <HierarchicalDataTemplate>
is present directly in WPF.
(2) in silverlight the folowing code is used what will be the equivalent code in WPF?.
xmlns:radDock="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
<radDock:RadDocking.DocumentHost>
<radDock:RadSplitContainer>
<radDock:RadPaneGroup x:Name="DocumentHostRadPaneGroup">
</radDock:RadPaneGroup>
</radDock:RadSplitContainer>
</radDock:RadDocking.DocumentHost>

| pagesGridView.GroupDescriptors.Add( |
| new GroupDescriptor { |
| Member = "CmsPageParent.Title", |
| SortDirection = ListSortDirection.Ascending |
| } |
| ); |
How do I set the "title" property of the group? I need to simulate the grouping of a column named “Parent” – as far as I can see I cannot mark a column as a default grouping set so I need to do it programmatically. However when I do it this way the resulting item in the group header says “CmsPageParent.Title” not “Parent” as the header for the same column would.
Ideas?

| <telerik:RadGridView Grid.Row="1" Name="pagesGridView" telerik:StyleManager.Theme="Vista" DataLoadMode="Synchronous" AutoGenerateColumns="False" CanUserInsertRows="False" CanUserFreezeColumns="False" UseAlternateRowStyle="True" ColumnsWidthMode="Auto" ShowGroupPanel="True" SourceUpdated="pagesGridView_SourceUpdated"> |
| <telerik:RadGridView.Columns> |
| <telerik:GridViewDataColumn x:Name="ParentColumn" HeaderText="Parent" Width="200" DataMemberBinding="{Binding Path=CmsPageParent.Title}" /> |
| <telerik:GridViewDataColumn x:Name="StatusColumn" HeaderText="Status" Width="200" DataMemberBinding="{Binding Path=CmsItemState.Name}" /> |
| <telerik:GridViewDataColumn x:Name="Title" HeaderText="Name" Width="*" DataMemberBinding="{Binding Path=Title}" /> |
| </telerik:RadGridView.Columns> |
| </telerik:RadGridView> |
Any help?