I have a tree in wpf that is built using xaml below. This is a well-structured data source and I have a lot of drag and drop issues. I tried several methods, all to no avail. Can someone tell me what is the standard procedure for this type?
<TreeView x:Name="_treeView" ItemsSource="{Binding}" Grid.Row="0" Grid.Column="0"> <TreeView.Resources> <HierarchicalDataTemplate DataType="{x:Type Logic:Statement}" ItemsSource="{Binding Path=PagedChildren}"> <TextBlock Text="{Binding StatementName}"/> </HierarchicalDataTemplate> <HierarchicalDataTemplate DataType="{x:Type Logic:StatementPage}" ItemsSource="{Binding Path=Children}"> <WrapPanel> <TextBlock Text="Page: "/> <TextBlock Text="{Binding PageIndex}"/> </WrapPanel> </HierarchicalDataTemplate> <DataTemplate DataType="{x:Type Logic:StatementFund}"> <Border HorizontalAlignment="Left" VerticalAlignment="Top" BorderBrush="Black" BorderThickness="2" CornerRadius="25"> <WrapPanel Margin="30 0 30 0" Width="150" Height="150" > <StackPanel> <TextBlock Text="Fund"/> <WrapPanel> <TextBlock Text="Fund: "/> <TextBlock Text="{Binding FundNumber}"/> </WrapPanel> <WrapPanel Margin="10 0 0 0"> <TextBlock Text="{Binding ColumnIndex}"/> </WrapPanel> </StackPanel> </WrapPanel> </Border> </DataTemplate> <DataTemplate DataType="{x:Type Logic:StatementPreviousCycle}"> <Border HorizontalAlignment="Left" VerticalAlignment="Top" BorderBrush="Black" BorderThickness="2" CornerRadius="25"> <WrapPanel Margin="30 0 30 0" Width="150" Height="150" > <StackPanel> <TextBlock Text="Previous Cycle"/> <WrapPanel> <TextBlock Text="Fund: "/> <TextBlock Text="{Binding FundNumber}"/> </WrapPanel> <WrapPanel Margin="10 0 0 0"> <TextBlock Text="{Binding ColumnIndex}"/> </WrapPanel> </StackPanel> </WrapPanel> </Border> </DataTemplate> </TreeView.Resources> </TreeView>
source share