-
Notifications
You must be signed in to change notification settings - Fork 0
/
GongSolutions.Wpf.DragDrop.xml
1300 lines (1258 loc) · 62.5 KB
/
GongSolutions.Wpf.DragDrop.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>GongSolutions.WPF.DragDrop</name>
</assembly>
<members>
<member name="T:GongSolutions.Wpf.DragDrop.DefaultDragHandler">
<summary>
The default drag handler for GongSolutions.Wpf.DragDrop.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
<summary>
Queries whether a drag can be started.
</summary>
<param name="dragInfo">Information about the drag.</param>
<remarks>
To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects" /> property on <paramref name="dragInfo" />
should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None" />.
</remarks>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.CanStartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
<summary>
Determines whether this instance [can start drag] the specified drag information.
</summary>
<param name="dragInfo">The drag information.</param>
<returns></returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Notifies the drag handler that a drop has occurred.
</summary>
<param name="dropInfo">Information about the drop.</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.DragCancelled">
<summary>
Notifies the drag handler that a drag has been aborted.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.TryCatchOccurredException(System.Exception)">
<summary>
Notifies that an exception has occurred upon dragging.
</summary>
<param name="exception">The exception that occurrred.</param>
<returns>
Boolean indicating whether the exception is handled in the drag handler.
False will rethrow the exception.
</returns>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.DefaultDropHandler">
<summary>
A default insertion drop handler for the most common usages
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.ShouldCopyData(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Determines whether the data of the drag drop action should be copied otherwise moved.
</summary>
<param name="dropInfo">The DropInfo with a valid DragInfo.</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Updates the current drag state.
</summary>
<param name="dropInfo">Information about the drag.</param>
<remarks>
To allow a drop at the current drag position, the <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects" /> property on
<paramref name="dropInfo" /> should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None" />
and <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Data" /> should be set to a non-null value.
</remarks>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Performs a drop.
</summary>
<param name="dropInfo">Information about the drop.</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.CanAcceptData(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Test the specified drop information for the right data.
</summary>
<param name="dropInfo">The drop information.</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.TryGetDragHandler(GongSolutions.Wpf.DragDrop.DragInfo,System.Windows.UIElement)">
<summary>
Gets the drag handler from the drag info or from the sender, if the drag info is null
</summary>
<param name="dragInfo">the drag info object</param>
<param name="sender">the sender from an event, e.g. mouse down, mouse move</param>
<returns></returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.TryGetDropHandler(GongSolutions.Wpf.DragDrop.DropInfo,System.Windows.UIElement)">
<summary>
Gets the drop handler from the drop info or from the sender, if the drop info is null
</summary>
<param name="dropInfo">the drop info object</param>
<param name="sender">the sender from an event, e.g. drag over</param>
<returns></returns>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.IsDragSourceProperty">
<summary>
Gets or Sets whether the control can be used as drag source.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetIsDragSource(System.Windows.UIElement)">
<summary>
Gets whether the control can be used as drag source.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetIsDragSource(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether the control can be used as drag source.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.IsDropTargetProperty">
<summary>
Gets or Sets whether the control can be used as drop target.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetIsDropTarget(System.Windows.UIElement)">
<summary>
Gets whether the control can be used as drop target.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetIsDropTarget(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether the control can be used as drop target.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.CanDragWithMouseRightButtonProperty">
<summary>
Gets or Sets whether the control can be used as drag source together with the right mouse.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetCanDragWithMouseRightButton(System.Windows.UIElement)">
<summary>
Gets whether the control can be used as drag source together with the right mouse.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetCanDragWithMouseRightButton(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether the control can be used as drag source together with the right mouse.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDragHandler">
<summary>
Gets the default DragHandler.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDropHandler">
<summary>
Gets the default DropHandler.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragHandlerProperty">
<summary>
Gets or Sets the handler for the drag action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragHandler(System.Windows.UIElement)">
<summary>
Gets the handler for the drag action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragHandler(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.IDragSource)">
<summary>
Sets the handler for the drag action.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropHandlerProperty">
<summary>
Gets or Sets the handler for the drop action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropHandler(System.Windows.UIElement)">
<summary>
Gets the handler for the drop action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropHandler(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.IDropTarget)">
<summary>
Sets the handler for the drop action.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropScrollingModeProperty">
<summary>
Gets or Sets the ScrollingMode for the drop action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropScrollingMode(System.Windows.UIElement)">
<summary>
Gets the ScrollingMode for the drop action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropScrollingMode(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.ScrollingMode)">
<summary>
Sets the ScrollingMode for the drop action.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropTargetAdornerBrushProperty">
<summary>
Gets or Sets the brush for the DropTargetAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropTargetAdornerBrush(System.Windows.UIElement)">
<summary>
Gets the brush for the DropTargetAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropTargetAdornerBrush(System.Windows.UIElement,System.Windows.Media.Brush)">
<summary>
Sets the brush for the DropTargetAdorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropContextProperty">
<summary>
Gets or Sets a context for a control. Only controls with the same context are allowed for drag or drop actions.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDropContext(System.Windows.UIElement)">
<summary>
Gets a context for a control. Only controls with the same context are allowed for drag or drop actions.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDropContext(System.Windows.UIElement,System.String)">
<summary>
Sets a context for a control. Only controls with the same context are allowed for drag or drop actions.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragSourceIgnoreProperty">
<summary>
Gets or Sets whether an element under the mouse should be ignored for the drag action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragSourceIgnore(System.Windows.UIElement)">
<summary>
Gets whether an element under the mouse should be ignored for the drag action.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragSourceIgnore(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether an element under the mouse should be ignored for the drag action.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDirectlySelectedOnlyProperty">
<summary>
Gets or Sets wheter the drag action should be started only directly on a selected item
or also on the free control space (e.g. in a ListBox).
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDirectlySelectedOnly(System.Windows.DependencyObject)">
<summary>
Gets wheter the drag action should be started only directly on a selected item.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDirectlySelectedOnly(System.Windows.DependencyObject,System.Boolean)">
<summary>
Sets wheter the drag action should be started only directly on a selected item.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropCopyKeyStateProperty">
<summary>
The drag drop copy key state property (default None).
So the drag drop action is
- Move, within the same control or from one to another, if the drag drop key state is None
- Copy, from one to another control with the given drag drop copy key state
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDropCopyKeyState(System.Windows.UIElement)">
<summary>
Gets the copy key state which indicates the effect of the drag drop operation.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDropCopyKeyState(System.Windows.UIElement,System.Windows.DragDropKeyStates)">
<summary>
Sets the copy key state which indicates the effect of the drag drop operation.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseDefaultDragAdornerProperty">
<summary>
Gets or Sets whether if the default DragAdorner should be use.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseDefaultDragAdorner(System.Windows.UIElement)">
<summary>
Gets whether if the default DragAdorner is used.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseDefaultDragAdorner(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether if the default DragAdorner should be use.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDragAdornerOpacityProperty">
<summary>
Gets or Sets the opacity of the default DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDefaultDragAdornerOpacity(System.Windows.UIElement)">
<summary>
Gets the opacity of the default DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDefaultDragAdornerOpacity(System.Windows.UIElement,System.Double)">
<summary>
Sets the opacity of the default DragAdorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragMouseAnchorPointProperty">
<summary>
Gets or Sets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragMouseAnchorPoint(System.Windows.UIElement)">
<summary>
Gets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragMouseAnchorPoint(System.Windows.UIElement,System.Windows.Point)">
<summary>
Sets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragAdornerTemplateProperty">
<summary>
Gets or Sets a DataTemplate for the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets the DataTemplate for the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets the DataTemplate for the DragAdorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragAdornerTemplateSelectorProperty">
<summary>
Gets or Sets a DataTemplateSelector for the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragAdornerTemplateSelector(System.Windows.DependencyObject,System.Windows.Controls.DataTemplateSelector)">
<summary>
Gets the DataTemplateSelector for the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragAdornerTemplateSelector(System.Windows.DependencyObject)">
<summary>
Gets the DataTemplateSelector for the DragAdorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseVisualSourceItemSizeForDragAdornerProperty">
<summary>
Use descendant bounds of the VisualSourceItem as MinWidth for the DragAdorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseVisualSourceItemSizeForDragAdorner(System.Windows.UIElement)">
<summary>
Get the flag which indicates if the DragAdorner use the descendant bounds of the VisualSourceItem as MinWidth.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseVisualSourceItemSizeForDragAdorner(System.Windows.UIElement,System.Boolean)">
<summary>
Set the flag which indicates if the DragAdorner use the descendant bounds of the VisualSourceItem as MinWidth.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseDefaultEffectDataTemplateProperty">
<summary>
Gets or Sets whether if the default DataTemplate for the effects should be use.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseDefaultEffectDataTemplate(System.Windows.UIElement)">
<summary>
Gets whether if the default DataTemplate for the effects should be use.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseDefaultEffectDataTemplate(System.Windows.UIElement,System.Boolean)">
<summary>
Sets whether if the default DataTemplate for the effects should be use.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectNoneAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type None.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectNoneAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type None.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectNoneAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type None.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectCopyAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type Copy.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectCopyAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type Copy.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectCopyAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type Copy.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectMoveAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type Move.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectMoveAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type Move.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectMoveAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type Move.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectLinkAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type Link.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectLinkAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type Link.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectLinkAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type Link.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectAllAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type All.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectAllAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type All.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectAllAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type All.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectScrollAdornerTemplateProperty">
<summary>
Gets or Sets a EffectAdorner DataTemplate for effect type Scroll.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectScrollAdornerTemplate(System.Windows.UIElement)">
<summary>
Gets a EffectAdorner DataTemplate for effect type Scroll.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectScrollAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
<summary>
Sets a EffectAdorner DataTemplate for effect type Scroll.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragDrop.ItemsPanelOrientationProperty">
<summary>
Gets or Sets the Orientation which should be used for the drag drop action (default null).
Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
but sometimes it's necessary to force the oreintation, if the look up is wrong.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetItemsPanelOrientation(System.Windows.UIElement)">
<summary>
Gets the Orientation which should be used for the drag drop action (default null).
Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
but sometimes it's necessary to force the oreintation, if the look up is wrong.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetItemsPanelOrientation(System.Windows.UIElement,System.Nullable{System.Windows.Controls.Orientation})">
<summary>
Sets the Orientation which should be used for the drag drop action (default null).
Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
but sometimes it's necessary to force the oreintation, if the look up is wrong.
</summary>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.DragInfo">
<summary>
Holds information about a the source of a drag drop operation.
</summary>
<remarks>
The <see cref="T:GongSolutions.Wpf.DragDrop.DragInfo"/> class holds all of the framework's information about the source
of a drag. It is used by <see cref="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)"/> to determine whether a drag
can start, and what the dragged data should be.
</remarks>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragInfo.#ctor(System.Object,System.Windows.Input.MouseButtonEventArgs)">
<summary>
Initializes a new instance of the DragInfo class.
</summary>
<param name="sender">
The sender of the mouse event that initiated the drag.
</param>
<param name="e">
The mouse event that initiated the drag.
</param>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.Data">
<summary>
Gets or sets the drag data.
</summary>
<remarks>
This must be set by a drag handler in order for a drag to start.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DragStartPosition">
<summary>
Gets the position of the click that initiated the drag, relative to <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource"/>.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.PositionInDraggedItem">
<summary>
Gets the point where the cursor was relative to the item being dragged when the drag was started.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects">
<summary>
Gets or sets the allowed effects for the drag.
</summary>
<remarks>
This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drag handler in order
for a drag to start.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.MouseButton">
<summary>
Gets the mouse button that initiated the drag.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceCollection">
<summary>
Gets the collection that the source ItemsControl is bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceIndex">
<summary>
Gets the position from where the item was dragged.
</summary>
<value>The index of the source.</value>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceItem">
<summary>
Gets the object that a dragged item is bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceItems">
<summary>
Gets a collection of objects that the selected items in an ItemsControl are bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be empty.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceGroup">
<summary>
Gets the group from a dragged item if the drag is currently from an ItemsControl with groups.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource">
<summary>
Gets the control that initiated the drag.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSourceItem">
<summary>
Gets the item in an ItemsControl that started the drag.
</summary>
<remarks>
If the control that initiated the drag is an ItemsControl, this property will hold the item
container of the clicked item. For example, if <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource"/> is a ListBox this
will hold a ListBoxItem.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSourceFlowDirection">
<summary>
Gets the FlowDirection of the current drag source.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DataObject">
<summary>
Gets the <see cref="T:System.Windows.IDataObject"/> which is used by the drag and drop operation. Set it to
a custom instance if custom drag and drop behavior is needed.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DragDropCopyKeyState">
<summary>
Gets the drag drop copy key state indicating the effect of the drag drop operation.
</summary>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.DropInfo">
<summary>
Holds information about a the target of a drag drop operation.
</summary>
<remarks>
The <see cref="T:GongSolutions.Wpf.DragDrop.DropInfo"/> class holds all of the framework's information about the current
target of a drag. It is used by <see cref="M:GongSolutions.Wpf.DragDrop.IDropTarget.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)"/> method to determine whether
the current drop target is valid, and by <see cref="M:GongSolutions.Wpf.DragDrop.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)"/> to perform the drop.
</remarks>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DropInfo.#ctor(System.Object,System.Windows.DragEventArgs,GongSolutions.Wpf.DragDrop.DragInfo)">
<summary>
Initializes a new instance of the DropInfo class.
</summary>
<param name="sender">
The sender of the drag event.
</param>
<param name="e">
The drag event.
</param>
<param name="dragInfo">
Information about the source of the drag, if the drag came from within the framework.
</param>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.Data">
<summary>
Gets the drag data.
</summary>
<remarks>
If the drag came from within the framework, this will hold:
- The dragged data if a single item was dragged.
- A typed IEnumerable if multiple items were dragged.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DragInfo">
<summary>
Gets a <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.DragInfo"/> object holding information about the source of the drag,
if the drag came from within the framework.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DropPosition">
<summary>
Gets the mouse position relative to the VisualTarget
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DropTargetAdorner">
<summary>
Gets or sets the class of drop target to display.
</summary>
<remarks>
The standard drop target adorner classes are held in the <see cref="T:GongSolutions.Wpf.DragDrop.DropTargetAdorners"/>
class.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects">
<summary>
Gets or sets the allowed effects for the drop.
</summary>
<remarks>
This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drop handler in order
for a drop to be possible.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.InsertIndex">
<summary>
Gets the current insert position within <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection"/>.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.UnfilteredInsertIndex">
<summary>
Gets the current insert position within the source (unfiltered) <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection"/>.
</summary>
<remarks>
This should be only used in a Drop action.
This works only correct with different objects (string, int, etc won't work correct).
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection">
<summary>
Gets the collection that the target ItemsControl is bound to.
</summary>
<remarks>
If the current drop target is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetItem">
<summary>
Gets the object that the current drop target is bound to.
</summary>
<remarks>
If the current drop target is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetGroup">
<summary>
Gets the current group target.
</summary>
<remarks>
If the drag is currently over an ItemsControl with groups, describes the group that
the drag is currently over.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetScrollViewer">
<summary>
Gets the ScrollViewer control for the visual target.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetScrollingMode">
<summary>
Gets or Sets the ScrollingMode for the drop action.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTarget">
<summary>
Gets the control that is the current drop target.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetItem">
<summary>
Gets the item in an ItemsControl that is the current drop target.
</summary>
<remarks>
If the current drop target is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetOrientation">
<summary>
Gets the orientation of the current drop target.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetFlowDirection">
<summary>
Gets the orientation of the current drop target.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DestinationText">
<summary>
Gets and sets the text displayed in the DropDropEffects adorner.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.InsertPosition">
<summary>
Gets the relative position the item will be inserted to compared to the TargetItem
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.KeyStates">
<summary>
Gets a flag enumeration indicating the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropInfo.IsSameDragDropContextAsSource">
<summary>
Gets a value indicating whether the target is in the same context as the source, <see cref="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropContextProperty" />.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorner.Pen">
<summary>
Gets or Sets the pen which can be used for the render process.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorners.Highlight">
<summary>
Gets the type of the default highlight target adorner.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorners.Insert">
<summary>
Gets the type of the default insert target adorner.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DropTargetHighlightAdorner.OnRender(System.Windows.Media.DrawingContext)">
<summary>
When overridden in a derived class, participates in rendering operations that are directed by the layout system.
The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for
later asynchronous use by layout and drawing.
</summary>
<param name="drawingContext">The drawing instructions for a specific element. This context is provided to the layout system.</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DropTargetInsertionAdorner.OnRender(System.Windows.Media.DrawingContext)">
<summary>
When overridden in a derived class, participates in rendering operations that are directed by the layout system.
The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for
later asynchronous use by layout and drawing.
</summary>
<param name="drawingContext">The drawing instructions for a specific element. This context is provided to the layout system.</param>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.Icons.IconFactory">
<summary>
Static class to provide access to standard application images
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectNone">
<summary>
Gets the icon which can be used for the effect type None.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectCopy">
<summary>
Gets the icon which can be used for the effect type Copy.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectMove">
<summary>
Gets the icon which can be used for the effect type Move.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectLink">
<summary>
Gets the icon which can be used for the effect type Link.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.Icons.IconFactory.GetImage(System.String,System.Int32)">
<summary>
Loads an image based on the name and size required.
Images need to be marked as 'Resource' in the project for them be loaded.
</summary>
<param name="iconName">Name of the icon</param>
<param name="size">The size of the icon</param>
<returns>The image to be displayed</returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.Icons.IconFactory.CreateCursor(System.Double,System.Double,System.Windows.Media.SolidColorBrush,System.Windows.Media.Pen)">
<summary>
Creates a custom cursor.
</summary>
<param name="rx"></param>
<param name="ry"></param>
<param name="brush"></param>
<param name="pen"></param>
<returns></returns>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.Data">
<summary>
Gets or sets the drag data.
</summary>
<remarks>
This must be set by a drag handler in order for a drag to start.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DragStartPosition">
<summary>
Gets the position of the click that initiated the drag, relative to <see cref="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource"/>.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.PositionInDraggedItem">
<summary>
Gets the point where the cursor was relative to the item being dragged when the drag was started.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.Effects">
<summary>
Gets or sets the allowed effects for the drag.
</summary>
<remarks>
This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drag handler in order
for a drag to start.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.MouseButton">
<summary>
Gets the mouse button that initiated the drag.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceCollection">
<summary>
Gets the collection that the source ItemsControl is bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceIndex">
<summary>
Gets the position from where the item was dragged.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceItem">
<summary>
Gets the object that a dragged item is bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be null.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceItems">
<summary>
Gets a collection of objects that the selected items in an ItemsControl are bound to.
</summary>
<remarks>
If the control that initated the drag is unbound or not an ItemsControl, this will be empty.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceGroup">
<summary>
Gets the group from a dragged item if the drag is currently from an ItemsControl with groups.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource">
<summary>
Gets the control that initiated the drag.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSourceItem">
<summary>
Gets the item in an ItemsControl that started the drag.
</summary>
<remarks>
If the control that initiated the drag is an ItemsControl, this property will hold the item
container of the clicked item. For example, if <see cref="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource"/> is a ListBox this
will hold a ListBoxItem.
</remarks>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSourceFlowDirection">
<summary>
Gets the FlowDirection of the current drag source.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DataObject">
<summary>
Gets the <see cref="T:System.Windows.IDataObject"/> which is used by the drag and drop operation. Set it to
a custom instance if custom drag and drop behavior is needed.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DragDropCopyKeyState">
<summary>
Gets the drag drop copy key state indicating the effect of the drag drop operation.
</summary>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.IDragSource">
<summary>
Interface implemented by Drag Handlers.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
<summary>
Queries whether a drag can be started.
</summary>
<param name="dragInfo">
Information about the drag.
</param>
<remarks>
To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects"/> property on <paramref name="dragInfo"/>
should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/>.
</remarks>
</member>
<!-- Ungültiger XML-Kommentar wurde für den Member "M:GongSolutions.Wpf.DragDrop.IDragSource.CanStartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)" ignoriert -->
<member name="M:GongSolutions.Wpf.DragDrop.IDragSource.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Notifies the drag handler that a drop has occurred.
</summary>
<param name="dropInfo">
Information about the drop.
</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.IDragSource.DragCancelled">
<summary>
Notifies the drag handler that a drag has been aborted.
</summary>