This question is locked. New answers and comments are not allowed.
I have created a custom control with a RadPanelBar and RadPanelBarItems (which are using HierarchicalDataTemplate) and inside one of those RadPanelBarItem is a RadTreeView which is also using a HierarchicalDataTemplate.
I've tried to costumize the RadTreeView on Blender to REMOVE the scrollviewer from the tree items panel to make use of the RadPanelBarItem scroll.
Original template:
If i place only the itemspresenter inside the grid, I can only see the root node.
What can I do or what do I need to costumize also to achive the desired behaviour?
Can you post a sample?
Thanks.
I've tried to costumize the RadTreeView on Blender to REMOVE the scrollviewer from the tree items panel to make use of the RadPanelBarItem scroll.
Original template:
<Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}"><Grid><ScrollViewer x:Name="ScrollViewer" BorderThickness="0" Background="{x:Null}" telerik:ScrollViewerExtensions.EnableMouseWheel="True" IsTabStop="False"Padding="{TemplateBinding Padding}" telerik:StyleManager.Theme="{StaticResource Theme}"><ItemsPresenter/></ScrollViewer><Grid x:Name="DragBetweenItemsFeedback" HorizontalAlignment="Left" Height="8" IsHitTestVisible="False" Margin="{TemplateBinding Padding}" Visibility="Collapsed" VerticalAlignment="Top"><Grid.ColumnDefinitions><ColumnDefinition Width="8"/><ColumnDefinition/></Grid.ColumnDefinitions><Ellipse HorizontalAlignment="Left" Height="8" Stroke="{StaticResource DragBetweenItemsFeedback_BackgroundBrush}" StrokeThickness="2" VerticalAlignment="Center" Width="8"/><Rectangle Grid.Column="1" Fill="{StaticResource DragBetweenItemsFeedback_BackgroundBrush}" Height="2" Margin="-2,3,0,0" RadiusY="2" RadiusX="2" VerticalAlignment="Top"/></Grid></Grid></Border>If i place only the itemspresenter inside the grid, I can only see the root node.
<Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}"><Grid><ItemsPresenter/><Grid x:Name="DragBetweenItemsFeedback" HorizontalAlignment="Left" Height="8" IsHitTestVisible="False" Margin="{TemplateBinding Padding}" Visibility="Collapsed" VerticalAlignment="Top"><Grid.ColumnDefinitions><ColumnDefinition Width="8"/><ColumnDefinition/></Grid.ColumnDefinitions><Ellipse HorizontalAlignment="Left" Height="8" Stroke="{StaticResource DragBetweenItemsFeedback_BackgroundBrush}" StrokeThickness="2" VerticalAlignment="Center" Width="8"/><Rectangle Grid.Column="1" Fill="{StaticResource DragBetweenItemsFeedback_BackgroundBrush}" Height="2" Margin="-2,3,0,0" RadiusY="2" RadiusX="2" VerticalAlignment="Top"/></Grid></Grid></Border>What can I do or what do I need to costumize also to achive the desired behaviour?
Can you post a sample?
Thanks.