Hi,
in an RadTreeView i can disable the expanding animations with the following line
telerik:AnimationManager.IsAnimationEnabled="False"
This line has no effect if i add it to my TreeListView. I also tried:
AnimationManager.IsGlobalAnimationEnabled =
false
;
This also has no effect.
Whenever i reload my TreeListView-Elements after OnPropertyChanged is fired all this expanding is going on.
This is completely happening on the telerik's site because onPropertyChanged is fired when i've completely read all elements. So the tree is already complete when this expanding orgy starts.
This is especially bad when i do this on slow computers. It takes sometimes longer than a second until ONE thing is expanded!
This is my definition of the RadTreeListView:
<
telerik:RadTreeListView
Grid.Row
=
"1"
x:Name
=
"radTreeListView"
IsReadOnly
=
"True"
ItemsSource
=
"{Binding ConnectorList}"
CanUserFreezeColumns
=
"False"
SelectionMode
=
"Single"
TreeLinesVisibility
=
"Visible"
RowIndicatorVisibility
=
"Collapsed"
KeyboardNavigation.DirectionalNavigation
=
"Contained"
telerik:AnimationManager.IsAnimationEnabled
=
"False"
IsExpandedBinding
=
"{Binding IsExpanded, Mode=TwoWay}"
ItemContainerStyle
=
"{StaticResource ItemContainerStyle}"
SelectedItem
=
"{Binding SelectedConnectorItem, Mode=TwoWay}"
ColumnWidth
=
"*"
telerik:DragDropManager.AllowDrag
=
"False"
GridLinesVisibility
=
"Vertical"
AutoGenerateColumns
=
"False"
>
I would be very thankful for any idea.