-
-
Notifications
You must be signed in to change notification settings - Fork 410
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty treeviewitem and common moving support #128
Empty treeviewitem and common moving support #128
Conversation
@christianhuening @dudiam @chandramouleswaran @AnnekeHeelsum @AnnekeHeelsum @Toprakete testable with |
next change would be (yes a breaking change)
/cc @thoemmi what do you think? /cc @christianhuening @dudiam @chandramouleswaran @AnnekeHeelsum @AnnekeHeelsum @Toprakete |
@punker76 Thanks for updating this solution! The project I used it for has long gone into production and is no longer maintained by me. But I nonetheless appreciate the new stuff and the fixes for future projects! Great! Cheers, |
@enkafan ups, i should fix this 8-D |
@enkafan it's now fixed in 1.0.0-ALPHA003 but you should noticed, issue #65 example is a very special example... <TreeView Grid.Column="0"
Grid.Row="1"
dd:DragDrop.IsDropTarget="True"
dd:DragDrop.IsDragSource="True"
dd:DragDrop.UseDefaultDragAdorner="True">
<TreeViewItem Header="A TreeViewItem with ItemsSource"
ItemsSource="{Binding TreeCollection}">
<TreeViewItem.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<TextBlock Text="{Binding Caption}" />
</HierarchicalDataTemplate>
</TreeViewItem.ItemTemplate>
</TreeViewItem>
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<TextBlock Text="{Binding Caption}" />
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView> |
…oving-support Empty treeviewitem and common moving support
Hi, Thx and best regards |
yes... now it's time to support empty
TreeViewItem
's ...EffectAdorner
if drag&dropEffects
are changedItemsControl
grab the latest alpha: https://www.nuget.org/packages/gong-wpf-dragdrop/
Closes #31