Hi,
I am having problems displaying Histogram(bar series) with Points(point series) within them in a CartesianChart in WPF.
If I declare only one single Horizontal axis(Categorical) for both the series, then the series are appearing one after another horizontally.
If I declare two separate axis(categorical) for both, then the scales arent getting adjusted equally.
I would want to achieve such that either both share a single Horizontal axis and both series are drawn overlapping or
let both series have two separate axis and their scale is equvivalent.
How do I achieve this?

Hello,
I'm trying to add RadRibbonGallery to MVVM examplefrom the Example Demo:
\Telerik_UI_for_WPF_2018_1_220_Demos\Examples\RibbonView\MVVM
so i already add a template selector and add the elements in view model
the RadRibbonGallery displayed
BUT, the images inside each item has border when mouse is hover, and on click the item NOT selected,
only if i click on the the BORDER of each item inside the Galley, then the item selected
here is my progress until now:
the template selector:
<mvvm:ButtonsTemplateSelector x:Key="groupsSelector" Button="{StaticResource ButtonTemplate}" SplitButton="{StaticResource SplitButtonTemplate}" ButtonsGroup="{StaticResource ButtonsGroup}" SmallButtonGroup="{StaticResource SmallButtonGroup}"Gallery="{StaticResource RibbonViewElementGalleryTemplate}" />
<DataTemplate x:Key="RibbonViewElementGalleryTemplate"> <telerik:RadRibbonGallery ItemsSource="{Binding Items}" SelectedIndex="{Binding SelectedIndex, Mode=TwoWay}" Width="240" MaxWidth="240" ViewportWidth="220" ViewportHeight="48" ItemWidth="64" ItemHeight="48" PopupViewportWidth="300"> <telerik:RadRibbonGallery.ItemsPanel> <ItemsPanelTemplate> <telerikRibbonViewPrimitives:RibbonGalleryPanel /> </ItemsPanelTemplate> </telerik:RadRibbonGallery.ItemsPanel> <telerik:EventToCommandBehavior.EventBindings> <telerik:EventBinding Command="{Binding MouseLeftButtonUpCommand}" EventName="MouseLeftButtonUp" RaiseOnHandledEvents="True" PassEventArgsToCommand="True" /> </telerik:EventToCommandBehavior.EventBindings> <telerik:RadRibbonGallery.ItemTemplate> <DataTemplate> <telerik:RadGalleryItem BorderBrush="Red" BorderThickness="1" Margin="1" Padding="0" Image="{Binding Image}" IsHeader="{Binding IsHeader}" Content="{Binding TipTitle, Mode=TwoWay}" Width="64" Height="48" telerik:ScreenTip.Description="{Binding TipDescription}" telerik:ScreenTip.Title="{Binding TipTitle}"> <telerik:RadGalleryItem.Template> <ControlTemplate TargetType="telerikRibbonView:RadGalleryItem"> <Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="KeyboardNavigationStates"> <VisualState x:Name="KeyboardUnfocused" /> <VisualState x:Name="KeyboardFocused"> <Storyboard> <DoubleAnimation Storyboard.TargetName="KeyboardNavigationVisual" Storyboard.TargetProperty="Opacity" To="1" Duration="0" /> </Storyboard> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <!--<Border x:Name="Header_Background" Opacity="0" Background="{StaticResource MainBrush}" />--> <Border x:Name="BorderVisual" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" > <Grid> <ContentControl x:Name="contentControl" ContentTemplate="{TemplateBinding ContentTemplate}" Content="{TemplateBinding Content}" IsTabStop="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Foreground="{TemplateBinding Foreground}" ContentTemplateSelector="{TemplateBinding ContentTemplateSelector}" ContentStringFormat="{TemplateBinding ContentStringFormat}" /> <Image x:Name="Image" Stretch="Fill" Source="{TemplateBinding Image}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" /> </Grid> </Border> <!--<Border x:Name="MouseOverSelectedBorder" Opacity="0" BorderThickness="1" BorderBrush="{StaticResource MarkerBrush}"/> <Border x:Name="KeyboardNavigationVisual" Opacity="0" CornerRadius="{StaticResource CornerRadius}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{StaticResource MouseOverBrush}" />--> </Grid> <ControlTemplate.Triggers> <!--<Trigger Property="IsMouseOver" Value="True"> <Setter TargetName="BorderVisual" Property="BorderBrush" Value="{StaticResource MouseOverBrush}" /> </Trigger> <Trigger Property="IsSelected" Value="True"> <Setter TargetName="BorderVisual" Property="BorderBrush" Value="{StaticResource PressedBrush}" /> </Trigger>--> <MultiTrigger> <MultiTrigger.Conditions> <Condition Property="IsMouseOver" Value="True" /> <Condition Property="IsSelected" Value="True" /> </MultiTrigger.Conditions> <!--<Setter TargetName="MouseOverSelectedBorder" Property="Opacity" Value="1" />--> </MultiTrigger> <Trigger Property="IsHeader" Value="True"> <Setter TargetName="BorderVisual" Property="Margin" Value="5 0 0 0" /> <!--<Setter TargetName="Header_Background" Property="Opacity" Value="1" />--> <Setter TargetName="contentControl" Property="HorizontalAlignment" Value="Left" /> <Setter TargetName="BorderVisual" Property="BorderThickness" Value="0" /> </Trigger> <!--<Trigger Property="IsEnabled" Value="False"> <Setter TargetName="contentControl" Property="Opacity" Value="{StaticResource DisabledOpacity}" /> <Setter TargetName="Image" Property="Opacity" Value="{StaticResource DisabledOpacity}" /> </Trigger>--> </ControlTemplate.Triggers> </ControlTemplate> </telerik:RadGalleryItem.Template> </telerik:RadGalleryItem> </DataTemplate> </telerik:RadRibbonGallery.ItemTemplate> </telerik:RadRibbonGallery></DataTemplate>
public class RibbonViewElementGallery : RibbonViewElementBase{ private string title; public string Title { get { return title; } set { if (this.title != value) { this.title = value; this.OnPropertyChanged("Title"); } } } private int selectedIndex; public int SelectedIndex { get { return selectedIndex; } set { if (this.selectedIndex != value) { this.selectedIndex = value; this.OnPropertyChanged("SelectedIndex"); Log.Logger.Instance.Log("RibbonViewElementGallery SelectedIndex = " + this.selectedIndex.ToString(), Prism.Logging.Category.Debug, Prism.Logging.Priority.High); } } } private int width = 300; public int Width { get { return width; } set { if (this.width != value) { this.width = value; this.OnPropertyChanged("Width"); } } } private int popupViewportWidth = 400; public int PopupViewportWidth { get { return popupViewportWidth; } set { if (this.popupViewportWidth != value) { this.popupViewportWidth = value; this.OnPropertyChanged("PopupViewportWidth"); } } } private ObservableCollection<RibbonViewElementGalleryItem> items; public ObservableCollection<RibbonViewElementGalleryItem> Items { get { return items; } set { if (this.items != value) { this.items = value; this.OnPropertyChanged("Items"); } } } // private ObservableCollection<RadMenuItem> popupMenuItems; public ObservableCollection<RadMenuItem> PopupMenuItems { get { return popupMenuItems; } set { if (this.popupMenuItems != value) { this.popupMenuItems = value; this.OnPropertyChanged("PopupMenuItems"); } } } public ICommand MouseLeftButtonUpCommand { get; private set; } private void MouseLeftButtonUpCommand_Execute(object arg) { var e = arg as System.Windows.Input.MouseButtonEventArgs; Logger.Instance.Log(String.Format("MouseButtonEventArgs Source : {0}", e.Source.ToString()), Prism.Logging.Category.Debug, Prism.Logging.Priority.High); if (e.Source != null && e.Source is RadRibbonGallery) { } } private bool MouseLeftButtonUpCommand_CanExecute(object arg) { return true; } public RibbonViewElementGallery() { string ImagePath = "/k1.Windows.Core.Resources;component/RibbonView/{0}"; this.Title = "Gallery Demo"; this.Items = new ObservableCollection<RibbonViewElementGalleryItem>(); this.Items.Add(new RibbonViewElementGalleryItem() { Image = string.Format(ImagePath, "new.png"), IsHeader = true, IsSelected = false, TipDescription = "Header of items", TipTitle = "Header1" }); for (int i = 0; i < 7; i++) { this.Items.Add(new RibbonViewElementGalleryItem(string.Format(ImagePath, "ProjectsHistory.png"), false, string.Format("Tip {0} Title", 10 * i + 1))); this.Items.Add(new RibbonViewElementGalleryItem(string.Format(ImagePath, "SampleProjects.png"), false, string.Format("Tip {0} Title", 10 * i + 2))); this.Items.Add(new RibbonViewElementGalleryItem(string.Format(ImagePath, "open.png"), false, string.Format("Tip {0} Title", 10 * i + 3))); } this.PopupMenuItems = new ObservableCollection<RadMenuItem>(); for (int i = 0; i < 5; i++) { this.PopupMenuItems.Add(new RadMenuItem() { Header = String.Format("Menu item {0}", i.ToString()) }); } this.MouseLeftButtonUpCommand = new DelegateCommand<object>(MouseLeftButtonUpCommand_Execute, MouseLeftButtonUpCommand_CanExecute); }}public class RibbonViewElementGalleryItem{ private string image; public string Image { get { return image; } set { image = value; } } private bool isSelected; public bool IsSelected { get { return isSelected; } set { isSelected = value; } } private bool isHeader = false; public bool IsHeader { get { return isHeader; } set { isHeader = value; } } private string tipDescription = "tip Description"; public string TipDescription { get { return tipDescription; } set { tipDescription = value; } } private string tipTitle = "tip Title"; public string TipTitle { get { return tipTitle; } set { tipTitle = value; } } public RibbonViewElementGalleryItem() { } public RibbonViewElementGalleryItem(string image, bool isSelected, string tipTitle) { this.Image = image; this.TipTitle = tipTitle; this.IsSelected = isSelected; } public override string ToString() { return string.Format("[GalleryItem : image = {0}]", this.image); }}
also the items with IsHeader = True
displayed inside the gallery as Item, when the Gallery is Open, they are not displayed as Headers
see images.
Can you help please with this issue or provide a link for help about this or Example of RadRibbonGallery MVVM ?
Thanks,
Hi.
I have RadGridView with some 12 columns defined. This grid is bound to list of business objects and is editable.
I would like some rows of the grid to have changed layout.
I was able to define and apply ControlTemplate for GridViewRow, to display row data in one TextBlock that has width equal to the width of the Grid.
This template works fine for rows selected by one of the businessobject properties (using DataTrigger)
But I need to further modify this Template in this way that, its width should be equal to the total width of the first 8 columns and the last 4 columns should be visible and editable as in standard grid row.
In existing threads i didn't found any soulution to this problem, so I would like to ask how can I achieve such an effect?
I am using RadGridView version 2018.1.
Thanks in advance.
Hello,
In the documentation, it is said that the image for a large button should be 32 x 32 pixels. With images this size, there is a huge empty area in the bottom of the RibbonView.
If the height is correct, the buttons should be vertically aligned... or, better, a top margin should be added.
See the screenshot

Hello,
When a button has a text that is larger than 32 pixels, the content of the button is left align, but it should be centered, as in other themes.
See the screen shot for an example.

Assuming all the records are not loaded for the above mentioned scenarios,
Regards,
Anand
Hi,
I have a requirement to implement a screen to show information in a grid with distinct columns/data for each button click(3 buttons).
For e.g., Button1_Click -> Grid must render columns ( Column1, Column2)
Button2_Click -> Grid must render columns ( Column11, Column12, Column13)
Button3_Click -> Grid must render columns ( Column21, Column22, Column23, Column24 etc.,)
I do not want to have 3 different grids for each button click by show/hide and have their exclusive bindings just because i feel it is not a right approach. Also I should be able to bind my data fields appropriately to the columns. I really appreciate if someone can share their experience to achieve this in a manageable and scalable way. Hope the scenario is self explanatory. Thanks in advance.
Regards,
Chand.
Hello,
We are extensively using hierarchical radgridview in our application. We want to provice search as you type functionality for child grids too but it look like it only searches parent grid. Can you let me know how to achive this functionlity ?
Thanks
Sandeep

Hi,
I'm running into some issues using the KeyTipService with the RadRibbonView.
The first issue is that if the ribbon is minimized, the key tips seem to display most of the time, without popping up the ribbon tab. (See attached picture). I say most of the time, since once in a while it will actually work (the ribbon tab will open), but then sometimes after it does work (the ribbon tab opens), it might not close afterwards! (e.g., if the user clicks the application title bar instead of choosing a key tip).
The second issue is that when the ribbon is NOT minimized, the key tips seem to work pretty well, except for an annoying focus rectangle that I cannot seem to get rid of when displaying a menu (see attachment). I have tried setting IsFocusable to false and the like, but still can't get it to stop showing. Any tips on how to get rid of that focus rectangle (using RadContextMenu and RadMenuItem).
Finally, when the key tips do display, they display very slowly. i.e., when using ALT, then picking a tab, the key tips on that tab take a long time to display. So much so that you can see them pop up, gradually, from left to right. At first I thought it was a deliberate animation, but seeing that Office and other applications show the key tips instantaneously, I am wondering whether it's just a performance issue, because if the key tip the user wants is to the far right hand side, then they have to wait a couple of seconds to see it.
As for these three issues, the one I am most concerned about is the flaky behavior with key tips when the ribbon is minimized, because it looks out of place and users will have a difficult time trying to navigate it. They shouldn't have to have the ribbon maximized in order to use key tips.
Kind Regards,
Wayne.

I have a WPF app using MVVM design pattern.
as I am testing for memory growth, I have come across memory leak. I have been trying to fix for days without success. If possible someone can point out the issue.
01.<Grid>02. <Grid.RowDefinitions>03. <RowDefinition Height="5"></RowDefinition>04. <RowDefinition Height="*"></RowDefinition>05. </Grid.RowDefinitions>06. <!--Service Header Editable Data-->07. <StackPanel Grid.Row="0">08. </StackPanel>09. <telerik:RadGridView x:Name="grid"10. IsReadOnly="{Binding IsServiceReadOnly}"11. ItemsSource="{Binding DetailsModel.Collection}"12. SelectedItem="{Binding SelectedCharge, Mode=TwoWay}"13. CellEditEnded="grid_CellEditEnded"14. AutoGenerateColumns="False"15. ShowGroupPanel="False"16. RowIndicatorVisibility="Collapsed"17. ShowColumnFooters="True"18. CanUserFreezeColumns="False"19. behav:GridFoucsBehav.GridFocusPosition="{Binding GridViewChargesFocColPos, Mode=TwoWay}">20. <telerik:RadGridView.Columns>21. <telerik:GridViewDataColumn Header="{lp:Lp UI:ServiceCode}"22. DataMemberBinding="{Binding ServiceCode}">23. <telerik:GridViewDataColumn.AggregateFunctions>24. <telerik:CountFunction Caption="c: " />25. </telerik:GridViewDataColumn.AggregateFunctions>26. <telerik:GridViewDataColumn.CellEditTemplate>27. <DataTemplate>28. <CustomControl:MyControl SelectedIDPath="ID"29. SelectedID="{Binding ServiceID}"30. StringToSearch="{Binding ServiceCode}"31. SelectedItem="{Binding DataContext.SelectedService, Mode=TwoWay, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type v:MyView}}}"32. ExprQueryByString="{Binding DataContext.ServiceExprQueryByString, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type v:MyView}}}">33. <CustomControl:Lookup.DisplayMemberPaths>34. <s:String>code</s:String>35. </CustomControl:Lookup.DisplayMemberPaths>36. <CustomControl:Lookup.ColumnHeaders>37. <s:String>Code</s:String>38. <s:String>Description</s:String>39. </CustomControl:Lookup.ColumnHeaders>40. </CustomControl:MyControl>41. </DataTemplate>42. </telerik:GridViewDataColumn.CellEditTemplate>43. </telerik:GridViewDataColumn>44. 45. <telerik:GridViewDataColumn Header="{lp:Lp UI:ReceiptView_NumberOfUnit}"46. DataMemberBinding="{Binding NumberOfUnit}">47. <telerik:GridViewDataColumn.CellEditTemplate>48. <DataTemplate>49. <telerik:RadNumericUpDown Value="{Binding NumberOfUnit, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"50. UpdateValueEvent="PropertyChanged"51. Minimum="0" />52. </DataTemplate>53. </telerik:GridViewDataColumn.CellEditTemplate>54. </telerik:GridViewDataColumn>55. <telerik:GridViewDataColumn Header="{lp:Lp UI:Code}"56. DataMemberBinding="{Binding Code, Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">57. <telerik:GridViewDataColumn.CellEditTemplate>58. <DataTemplate>59. <TextBox Text="{util:TwoWayBinding Code}" />60. </DataTemplate>61. </telerik:GridViewDataColumn.CellEditTemplate>62. </telerik:GridViewDataColumn>63. <telerik:GridViewDataColumn Header="{lp:lp UI:Remarks}"64. DataMemberBinding="{Binding Remarks,Mode=TwoWay}">65. <telerik:GridViewDataColumn.CellEditTemplate>66. <DataTemplate>67. <TextBox Text="{Binding Remarks, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />68. </DataTemplate>69. </telerik:GridViewDataColumn.CellEditTemplate>70. </telerik:GridViewDataColumn>71. </telerik:RadGridView.Columns>72. </telerik:RadGridView>73.</Grid>
after opening few windows and closing them, the memory grows, and the objects are still hanged in the memory.
this is for my windows:
MyWindow System.Windows.DataTemplate-> MyApp.MyWindow->(System.Windows.Controls.Border,System.Windows.EffectiveValueEntry [],System.Windows.Threading.Dispatcher,...): 12 MB (11.23%) (3 objects, 852 bytes (0.00%)) Previous allocations (newest to oldest): 11 MB (11.22%), 7.4 MB (7.19%), 7.4 MB(7.19%),Referred to by: 12 MB (11.23%) from System.Windows.DataTemplate System.Windows.EffectiveValueEntry []->System.Windows.DataTemplate->(MyWindow,System.Collections.Specialized.HybridDictionary,System.Windows.Threading.Dispatcher,...)Referring to: 668 kB (0.64%) to Telerik.Windows.Controls.RadTabControl MyWindow->Telerik.Windows.Controls.RadTabControl->(System.Windows.EffectiveValueEntry [],System.Windows.Style,System.Windows.Threading.Dispatcher,...) 93 kB (0.09%) to MyApp.ItemsNavigator MyApp.MyWindow->MyApp.ItemsNavigator->(System.Windows.Controls.DockPanel,System.Windows.Threading.Dispatcher,Telerik.Windows.Controls.RadTabItem,...) 24 kB (0.02%) to Telerik.Windows.Controls.RadContextMenu MyApp.MyWindow->Telerik.Windows.Controls.RadContextMenu->(System.Windows.Controls.ControlTemplate,System.Windows.EffectiveValueEntry [],System.Windows.Threading.Dispatcher,...) 2.8 kB (0.00%) to System.Windows.Controls.Border MyApp.MyWindow->System.Windows.Controls.Border->(MyApp.MyWindow, System.Windows.EffectiveValueEntry [],System.Windows.Threading.Dispatcher) 3.3 MB (3.26%) to MyApp.LocalizedValidationPanel MyApp.MyWindow->MyApp.LocalizedValidationPanel->(System.Windows.Controls.ContentPresenter,System.Windows.Controls.Grid,System.Windows.Threading.Dispatcher,...) 3.0 MB (2.97%) to MyApp.ExRadGridView MyApp.MyWindow ->MyApp.ExRadGridView->(System.Windows.EffectiveValueEntry [],System.Windows.Style,System.Windows.Threading.Dispatcher,...) 2.2 MB (2.14%) to Telerik.Windows.Controls.RadGridView MyApp.MyWindow->Telerik.Windows.Controls.RadGridView->(System.Windows.EffectiveValueEntry [],System.Windows.Style,System.Windows.Threading.Dispatcher,...) 1.1 MB (1.06%) to MyApp.MenuItem MyApp.MyWindow->MyApp.MenuItem->(System.Windows.EffectiveValueEntry [],System.Windows.Style,System.Windows.Threading.Dispatcher,...) 1.1 MB (1.04%) to System.Windows.EffectiveValueEntry [] MyApp.MyWindow->System.Windows.EffectiveValueEntry []->(System.Collections.Hashtable,System.Uri,System.Windows.EventHandlersStore,...)
I got this. if it can be helpful
Telerik.Windows.Controls.RadGridView System.Collections.Generic.Dictionary.Entry []->Telerik.Windows.Controls.RadGridView->(System.Windows.EffectiveValueEntry [],System.Windows.Style,System.Windows.Threading.Dispatcher,...): 12 MB (100.00%) (3 objects, 0.0 bytes (0.00%))Referred to by: 12 MB (100.00%) from System.Collections.Generic.Dictionary.Entry [] System.Collections.Generic.Dictionary->System.Collections.Generic.Dictionary.Entry []->(Telerik.Windows.Controls.RadGridView)Referring to: 12 kB (0.10%) to System.Windows.EffectiveValueEntry [] Telerik.Windows.Controls.RadGridView->System.Windows.EffectiveValueEntry []->(MS.Utility.FrugalMap,System.Boolean,System.Windows.EventHandlersStore,...) 8.0 kB (0.07%) to Telerik.Windows.Data.DataItemCollection Telerik.Windows.Controls.RadGridView->Telerik.Windows.Data.DataItemCollection->(Telerik.Windows.Data.CompositeFilterDescriptorCollection,Telerik.Windows.Data.GroupDescriptorCollection,Telerik.Windows.Data.ObservableCollectionManagerCollection,...) 3.5 kB (0.03%) to System.Windows.Controls.Grid Telerik.Windows.Controls.RadGridView->System.Windows.Controls.Grid->(System.Windows.Controls.UIElementCollection,System.Windows.EffectiveValueEntry [],System.Windows.Threading.Dispatcher) 1.0 kB (0.01%) to Telerik.Windows.Controls.GridView.Selection.GridViewItemSelectionHandler Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.Selection.GridViewItemSelectionHandler->(Telerik.Windows.Controls.RadGridView,Telerik.Windows.Data.DataItemCollection,Telerik.Windows.Data.Selection.InternalSelectionItemsStorage) 912 bytes (0.01%) to Telerik.Windows.Controls.GridView.Selection.SelectionDrag Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.Selection.SelectionDrag->(Telerik.Windows.Controls.GridView.Scrolling.ScrollViewerCoordinator,Telerik.Windows.Controls.GridView.Selection.DefaultMouseInfoProvider,Telerik.Windows.Controls.RadGridView) 564 bytes (0.00%) to Telerik.Windows.Controls.GridView.GridViewItemContainerGenerator Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.GridViewItemContainerGenerator->(System.Collections.Generic.Queue,Telerik.Windows.Controls.GridView.GridViewItemContainerGenerator.ItemBlock,Telerik.Windows.Controls.RadGridView) 504 bytes (0.00%) to Telerik.Windows.Controls.GridView.Selection.CellSelectionHandler Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.Selection.CellSelectionHandler->(Telerik.Windows.Controls.GridView.Selection.CellInfoCollection,Telerik.Windows.Controls.RadGridView) 504 bytes (0.00%) to Telerik.Windows.Controls.GridView.DetailsProvider Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.DetailsProvider->(System.Action,System.Func) 360 bytes (0.00%) to System.Globalization.CultureInfo Telerik.Windows.Controls.RadGridView->System.Globalization.CultureInfo->(System.Globalization.TextInfo,System.String) 288 bytes (0.00%) to Telerik.Windows.Data.AggregateResultCollection Telerik.Windows.Controls.RadGridView->Telerik.Windows.Data.AggregateResultCollection->(System.Collections.Generic.List) 288 bytes (0.00%) to System.Collections.ObjectModel.ObservableCollection Telerik.Windows.Controls.RadGridView->System.Collections.ObjectModel.ObservableCollection->(System.Collections.Generic.List,System.Collections.ObjectModel.ObservableCollection.SimpleMonitor) 240 bytes (0.00%) to System.Collections.Generic.HashSet Telerik.Windows.Controls.RadGridView->System.Collections.Generic.HashSet->(System.Collections.Generic.ObjectEqualityComparer) 228 bytes (0.00%) to System.EventHandler Telerik.Windows.Controls.RadGridView->System.EventHandler->(Behaviors.AlignGridViewCellBehav) 216 bytes (0.00%) to Telerik.Windows.Controls.GridView.ItemDataCellPresenterHeightStorage Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.ItemDataCellPresenterHeightStorage->(System.Collections.Generic.Dictionary) 192 bytes (0.00%) to Telerik.Windows.Controls.GridView.Selection.CellAndRowSelectionDispatcher Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.Selection.CellAndRowSelectionDispatcher->(System.Func,Telerik.Windows.Controls.GridView.KeyboardModifiersProvider) 192 bytes (0.00%) to System.Collections.ObjectModel.ObservableCollection Telerik.Windows.Controls.RadGridView->System.Collections.ObjectModel.ObservableCollection->(System.Collections.Generic.List) 180 bytes (0.00%) to Telerik.Windows.Controls.GridView.ItemAttachedStorage Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.ItemAttachedStorage->(System.Collections.Generic.Dictionary) 72 bytes (0.00%) to System.Collections.Generic.List Telerik.Windows.Controls.RadGridView->System.Collections.Generic.List->(System.Action []) 36 bytes (0.00%) to Telerik.Windows.Controls.GridView.Selection.CompositeSelectionHandler Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.Selection.CompositeSelectionHandler->(Telerik.Windows.Controls.RadGridView) 36 bytes (0.00%) to Telerik.Windows.Controls.GridView.DefaultCellLocator Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridView.DefaultCellLocator->(Telerik.Windows.Controls.RadGridView) 12 MB (99.74%) to Telerik.Windows.Controls.GridViewColumnCollectionInternal Telerik.Windows.Controls.RadGridView->Telerik.Windows.Controls.GridViewColumnCollectionInternal->(System.Collections.Generic.List,System.Collections.Generic.List,System.Collections.ObjectModel.ObservableCollection.SimpleMonitor,...)
as you noticed in the last details, it says 3 objects after opening the window and closing for three times. I have spent quite long time trying to figure out what is going on, but I couldn't. I worked on different screens with RadGridView and pretty much same controls and there is no problem. Did I miss out anything?
If you need further details, let me know
FYI: when RadGridView is commented out, there is no problem
MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor System.Collections.Generic.Dictionary.Entry []->MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->(System.Object,System.String,System.Windows.DependencyProperty,...): 12 MB (100.00%)Referred to by: 12 MB (100.00%) fromReferring to: 12 MB (100.00%) to System.Collections.Generic.Dictionary MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Collections.Generic.Dictionary->(System.Collections.Generic.ObjectEqualityComparer,System.Int32 [])
MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor System.Collections.Generic.Dictionary<T,U>.Entry []->MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->(System.Object,System.String,System.Windows.DependencyProperty,...): 26 MB (13.68%) (168 objects, 32 kB (0.02%))Referred to by: 26 MB (13.68%) from System.Collections.Generic.Dictionary<T,U>.Entry [] System.Collections.Generic.Dictionary<T,U>->System.Collections.Generic.Dictionary<T,U>.Entry []->(MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor,System.ComponentModel.ReflectPropertyDescriptor)Referring to:3.9 kB (0.00%) to System.Object MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Object3.2 kB (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.PropertyChangedCallback)3.1 kB (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Boolean,System.Windows.FreezeValueCallback)1.2 kB (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Double,System.Windows.FreezeValueCallback)1.1 kB (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Boolean,System.Windows.FreezeValueCallback)784 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Boolean)600 bytes (0.00%) to System.Windows.UIPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.UIPropertyMetadata->(System.Windows.PropertyChangedCallback)480 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.PropertyChangedCallback)368 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.PropertyChangedCallback)368 bytes (0.00%) to System.Windows.UIPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.UIPropertyMetadata->(System.Boolean,System.Windows.CoerceValueCallback)336 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FreezeValueCallback)240 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.Media.SolidColorBrush)240 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Int32,System.Windows.FreezeValueCallback)240 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Media.SolidColorBrush)184 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.PropertyChangedCallback)168 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.Thickness)168 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback)144 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FontWeight,System.Windows.FreezeValueCallback)144 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FontStyle,System.Windows.FreezeValueCallback)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.DataLoadMode)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.GridViewNewRowPosition)120 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Int32,System.Windows.FreezeValueCallback)120 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.GridViewSelectionUnit)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.GridViewRowDetailsVisibilityMode)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.GroupRenderMode)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.Controls.SelectionMode,System.Windows.FreezeValueCallback)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.GridLinesVisibility)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.ScrollUpdateMode)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.FilteringMode)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridView.MergedCellsDirection)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Double,System.Windows.FreezeValueCallback)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridViewClipboardCopyMode)120 bytes (0.00%) to System.Windows.UIPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.UIPropertyMetadata->(System.Double,System.Windows.FreezeValueCallback)120 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Media.MatrixTransform)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Visibility)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,Telerik.Windows.Controls.GridViewClipboardPasteMode)120 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Media.FontFamily)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Point)120 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.FreezeValueCallback,System.Windows.Media.MatrixTransform)112 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.VerticalAlignment)112 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.Media.SolidColorBrush)112 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.HorizontalAlignment)112 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(System.Windows.Visibility)112 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Boolean) 56 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.String) 56 bytes (0.00%) to System.Windows.UIPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.UIPropertyMetadata->(System.String) 56 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(Telerik.Windows.Controls.GridView.GridViewEditTriggers) 56 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.FontStretch) 56 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(Telerik.Windows.Controls.GridViewValidationMode) 56 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(Telerik.Windows.Controls.ActionOnLostFocus) 56 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Windows.Style) 56 bytes (0.00%) to System.Windows.PropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.PropertyMetadata->(Telerik.Windows.Controls.GridView.ColumnReorderOptions) 56 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(Telerik.Windows.Controls.GridViewLength) 56 bytes (0.00%) to System.Windows.FrameworkPropertyMetadata MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Windows.FrameworkPropertyMetadata->(System.Double) 26 MB (13.65%) to System.Collections.Generic.Dictionary<T,U> MS.Internal.ComponentModel.DependencyObjectPropertyDescriptor->System.Collections.Generic.Dictionary<T,U>->(System.Collections.Generic.ObjectEqualityComparer<T>,System.Int32 [])
We're using Telerik.WPF.UIControl_2015Q2 for .NET Framework 4.0
Thank you