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
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>GongSolutions.Wpf.DragDrop</name>
</assembly>
<members>
<member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.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.IDropInfo.DragInfo">
<summary>
Gets a <see cref="P:GongSolutions.Wpf.DragDrop.IDropInfo.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.IDropInfo.DropPosition">
<summary>
Gets the mouse position relative to the VisualTarget
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.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.IDropInfo.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.IDropInfo.InsertIndex">
<summary>
Gets the current insert position within <see cref="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetCollection"/>.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.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.IDropInfo.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.IDropInfo.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.IDropInfo.VisualTarget">
<summary>
Gets the control that is the current drop target.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.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.IDropInfo.VisualTargetOrientation">
<summary>
Gets th orientation of the current drop target.
</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.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.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 th orientation of the current drop target.
</summary>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.DragAdorner">
<summary>
The drag adorner.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragAdorner.m_AdornerLayer">
<summary>
The m_ adorner layer.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragAdorner.m_Adornment">
<summary>
The m_ adornment.
</summary>
</member>
<member name="F:GongSolutions.Wpf.DragDrop.DragAdorner.m_MousePosition">
<summary>
The m_ mouse position.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.#ctor(System.Windows.UIElement,System.Windows.UIElement)">
<summary>
Initializes a new instance of the <see cref="T:GongSolutions.Wpf.DragDrop.DragAdorner"/> class.
</summary>
<param name="adornedElement">
The adorned element.
</param>
<param name="adornment">
The adornment.
</param>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.Detatch">
<summary>
The detatch.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.GetDesiredTransform(System.Windows.Media.GeneralTransform)">
<summary>
The get desired transform.
</summary>
<param name="transform">
The transform.
</param>
<returns>
</returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.ArrangeOverride(System.Windows.Size)">
<summary>
The arrange override.
</summary>
<param name="finalSize">
The final size.
</param>
<returns>
</returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.GetVisualChild(System.Int32)">
<summary>
The get visual child.
</summary>
<param name="index">
The index.
</param>
<returns>
</returns>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.DragAdorner.MeasureOverride(System.Windows.Size)">
<summary>
The measure override.
</summary>
<param name="constraint">
The constraint.
</param>
<returns>
</returns>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragAdorner.MousePosition">
<summary>
Gets or sets MousePosition.
</summary>
</member>
<member name="P:GongSolutions.Wpf.DragDrop.DragAdorner.VisualChildrenCount">
<summary>
Gets VisualChildrenCount.
</summary>
</member>
<member name="T:GongSolutions.Wpf.DragDrop.IDropTarget">
<summary>
Interface implemented by Drop Handlers.
</summary>
</member>
<member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.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.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">
<summary>
Performs a drop.
</summary>
<param name="dropInfo">
Information about the drop.
</param>
</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="!:DragDropEffects.None"/>.
</remarks>
</member>
<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="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.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.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.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="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.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.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.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>
</members>
</doc>
|