I need some help with re-templating the Legend Control, specifically the vertical scrollbar. From what I have read the Legend uses a treeview to display content and the treeview contains a scroll viewer. I have a customized scroll viewer that uses the style of vertical scrollbar that I want. How does one go about changing the template of the treeview used for the legend control to use my custom scrollviewer. The only reference in the template for the Legend to treeview is for TreeViewExtended, shown below:<Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="esri:Legend"> <esriToolkitPrimitives:TreeViewExtended BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Foreground="{TemplateBinding Foreground}" HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}" ItemsSource="{TemplateBinding LayerItemsSource}" Padding="{TemplateBinding Padding}" VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"> <esriToolkitPrimitives:TreeViewExtended.ItemTemplate> <sdk:HierarchicalDataTemplate ItemsSource="{Binding LayerItemsSource}"> <ContentPresenter ContentTemplate="{Binding Template}" Content="{Binding}"/> </sdk:HierarchicalDataTemplate> </esriToolkitPrimitives:TreeViewExtended.ItemTemplate> </esriToolkitPrimitives:TreeViewExtended> </ControlTemplate> </Setter.Value> </Setter>I am having trouble figuring out the syntax to add a new TreeView, any examples and help would be much appreciated.Thanks!