<telerik:RadRibbonWindow x:Class="IgOutlook.Shell" xmlns:prism="http://www.codeplex.com/prism" Title="Shell" Height="300" Width="300" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> <telerik:RadRibbonView Name="radRibbonView1" prism:RegionManager.RegionName="RibbonTabRegion"> <telerik:RadRibbonView.ApplicationMenu> <telerik:ApplicationMenu /> </telerik:RadRibbonView.ApplicationMenu> <telerik:RadRibbonView.QuickAccessToolBar> <telerik:QuickAccessToolBar /> </telerik:RadRibbonView.QuickAccessToolBar> </telerik:RadRibbonView> <DockPanel LastChildFill="True"> <telerik:RadOutlookBar DockPanel.Dock="Left" Width="200" prism:RegionManager.RegionName="OutlookBarGroupRegion" /> <ContentControl prism:RegionManager.RegionName="ContentRegion" Margin="1,3,3,3" /> </DockPanel></telerik:RadRibbonWindow>
Hi,
I am using the PropertyRelation on the RadgridView like so:
<Telerik:RadGridView.ChildTableDefinitions>
<Telerik:GridViewTableDefinition x:Name="gvtd">
<Telerik:GridViewTableDefinition.Relation >
<telerikData:PropertyRelation ParentPropertyName="MyProperty"/>
</Telerik:GridViewTableDefinition.Relation>
</Telerik:GridViewTableDefinition>
</Telerik:RadGridView.ChildTableDefinitions>
Which works fine when it autogenerates the columns.. is there an example on how to user define the columns?
My futile tries involve:
AutoGenerateColoumns="False"
or
AutoGenerateFieldDescriptors
="False"
I have tried setting the FieldDescriptors manually.
Tried to use HierarchyChildTemplate like so:
<Telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<Telerik:RadGridView>
<Telerik:RadGridView.Columns>
<Telerik:GridViewDataColumn Header="ID" UniqueName="id"/>
<Telerik:GridViewDataColumn Header="FirstName" DataMemberBinding="{Binding Name}"/>
</Telerik:RadGridView.Columns>
</Telerik:RadGridView>
</DataTemplate>
</Telerik:RadGridView.HierarchyChildTemplate>
With the result of it loosing its binding and going back to the usercontrols dataContext.
- Martin

Hello,
I am using 4-8 sparklines in one window.
Each getting new points (new ItemSource) twice/three times a second (using DataBinding).
The problem is that when I am trying to do other things in my window (for example opening a menu), the app takes time to respond.
I believe that the reason for that is the amount of refreshes a second.
I have three questions regarding that problem:
1. Is sparkline the right control for my needs? Is there another one you would recommend?
2. Is there any way to wait until I have the new points for all of my sparklines and only than refresh them all at once instead of each at a different time?
3. What is the cause for this problem? is it the GPU/CPU/Memory? (I believe that it has nothing to do with the other parts of my app because only when I added the sparklines this problem appeared)
Thank you in advance