This question is locked. New answers and comments are not allowed.
The following xaml crashes with the message "The property 'IsVirtualizing' was not found in type 'Telerik.Windows.Controls.RadTreeView'. [Line: 15 Position: 30]"
If I comment out the style setter and put IsVirtualizing="True" directly on the treeview it works fine.
I am using the latest internal build (RadControls_for_Silverlight_5_2012_3_1112_DEV_hotfix).
If I comment out the style setter and put IsVirtualizing="True" directly on the treeview it works fine.
I am using the latest internal build (RadControls_for_Silverlight_5_2012_3_1112_DEV_hotfix).
<UserControl x:Class="TelerikTestProject01.MainPage_TreeView" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <UserControl.Resources> <Style x:Key="RadTreeViewStyle" TargetType="telerik:RadTreeView"> <Setter Property="IsVirtualizing" Value="True"></Setter> </Style> </UserControl.Resources> <Grid x:Name="LayoutRoot"> <telerik:RadTreeView x:Name="RadTreeView1" Style="{StaticResource RadTreeViewStyle}"></telerik:RadTreeView> </Grid></UserControl>