Hi, I'm using Telerik RadControls for WPF v.2012.3.1017.45 and use RadGridView in the following configuration:
(columns are ommited, they are just databound to simple properties of one object).
Even simple mouse over causes serious peromance issues (up to 30% CPU usage from gridview application only) and bad user experience. When I moving over any other part of application - CPU usage is around zero. Any idea how to fix this?
<
telerik:RadGridView
Grid.Row
=
"1"
Grid.Column
=
"0"
x:Name
=
"listView"
EnableRowVirtualization
=
"True"
MouseDoubleClick
=
"ListViewMouseDoubleClick"
SelectionChanged
=
"ListViewSelectionChanged"
AutoGenerateColumns
=
"False"
AlternateRowBackground
=
"#3d3D3d3d"
Background
=
"#99333333"
SelectedItem
=
"{Binding SelectedItem, Mode=TwoWay}"
ItemsSource
=
"{Binding VirtualizedItems}"
IsSynchronizedWithCurrentItem
=
"True"
DataLoadMode
=
"Asynchronous"
RowDetailsVisibilityMode
=
"Collapsed"
ShowGroupPanel
=
"False"
IsReadOnly
=
"True"
CanUserSortColumns
=
"True"
IsFilteringAllowed
=
"False"
CanUserDeleteRows
=
"False"
CanUserInsertRows
=
"False"
Width
=
"870"
/>
(columns are ommited, they are just databound to simple properties of one object).
Even simple mouse over causes serious peromance issues (up to 30% CPU usage from gridview application only) and bad user experience. When I moving over any other part of application - CPU usage is around zero. Any idea how to fix this?