You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This license applies to modified Microsoft WPF code used in GongSolutions.WPF.DragDrop/Utilities/VisualTreeDescendantBoundsHelper.cs and originally sourced from https://github.com/dotnet/wpf/blob/83b9af142acd341d4bf470450e8b5c3ec3723d76/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/Visual.cs
2
+
3
+
The MIT License (MIT)
4
+
5
+
Copyright (c) .NET Foundation and Contributors
6
+
7
+
All rights reserved.
8
+
9
+
Permission is hereby granted, free of charge, to any person obtaining a copy
10
+
of this software and associated documentation files (the "Software"), to deal
11
+
in the Software without restriction, including without limitation the rights
12
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+
copies of the Software, and to permit persons to whom the Software is
14
+
furnished to do so, subject to the following conditions:
15
+
16
+
The above copyright notice and this permission notice shall be included in all
17
+
copies or substantial portions of the Software.
18
+
19
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ Works with MVVM : the logic for the drag and drop can be placed in a ViewModel. No code needs to be placed in codebehind, instead attached properties are used to bind to a drag handler/drop handler in a ViewModel.
50
+
+ Works with MVVM : the logic for the drag and drop can be placed in a ViewModel. No code needs to be placed in code-behind, instead attached properties are used to bind to a drag handler/drop handler in a ViewModel.
50
51
+ Works with multiple selections.
51
-
+ Can drag data within the same control to re-order, or between controls.
52
+
+ Can drag data within the same control to re-order, or between (different) controls.
52
53
+ Works with `ListBox`, `ListView`, `TreeView`, `DataGrid` and any other `ItemsControl`.
53
-
+ Can insert, move or copy an item into a collection of the same control or into another.
54
+
+ Can insert, move or copy an item into a collection of the same/another control (same item type).
54
55
+ Can display Adorners to give the user visual feedback of the operation in progress.
56
+
+ Can display a preview of the dragged item (the preview is always visible).
55
57
+ Has sensible defaults so that you have to write less code for common operations.
`GongSolutions.WPF.DragDrop` is provided as-is under the BSD 3-Clause License. For more information see [LICENSE](./LICENSE).
74
+
67
75
## Want to say thanks?
68
76
69
-
This framework is free and can be used for free, open source and commercial applications. It's tested and contributed by many people... So mainly hit the :star: button, that's all... thx :squirrel: (:dollar:, :euro:, :beer: or some other gifts are also being accepted...).
77
+
This framework is free and can be used for free, open source and commercial applications. It's tested, used and contributed by many awesome people. So hit the magic :star: button, we appreciate it!!! :pray:
78
+
79
+
[Become a sponsor](https://github.com/sponsors/punker76) and show your support to this open source project.
80
+
81
+
If you use `GongSolutions.WPF.DragDrop` as serious task, and you'd like to honor my work on it, please donate, I'll appreciate it.
82
+
83
+
Does your company use `GongSolutions.WPF.DragDrop`? Ask your manager or marketing team if your company would be interested in supporting this project. Your company's logo can be shown [on GitHub](https://github.com/punker76/gong-wpf-dragdrop#readme) - who doesn't want a little extra exposure?
0 commit comments