Class DropConfiguration

Inheritance
System.Object
Windows.UI.Xaml.DependencyObject
DropConfiguration
Namespace: Catalog.Services.DragAndDrop
Assembly: Catalog.dll
Syntax
public class DropConfiguration : DependencyObject

Fields

DragEnterActionProperty

Declaration
public static readonly DependencyProperty DragEnterActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DragLeaveActionProperty

Declaration
public static readonly DependencyProperty DragLeaveActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DragOverActionProperty

Declaration
public static readonly DependencyProperty DragOverActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropApplicationLinkActionProperty

Declaration
public static readonly DependencyProperty DropApplicationLinkActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropBitmapActionProperty

Declaration
public static readonly DependencyProperty DropBitmapActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropDataViewActionProperty

Declaration
public static readonly DependencyProperty DropDataViewActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropHtmlActionProperty

Declaration
public static readonly DependencyProperty DropHtmlActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropRtfActionProperty

Declaration
public static readonly DependencyProperty DropRtfActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropStorageItemsActionProperty

Declaration
public static readonly DependencyProperty DropStorageItemsActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropTextActionProperty

Declaration
public static readonly DependencyProperty DropTextActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

DropWebLinkActionProperty

Declaration
public static readonly DependencyProperty DropWebLinkActionProperty
Field Value
Type Description
Windows.UI.Xaml.DependencyProperty

Properties

DragEnterAction

Declaration
public Action<DragDropData> DragEnterAction { get; set; }
Property Value
Type Description
System.Action<DragDropData>

DragLeaveAction

Declaration
public Action<DragDropData> DragLeaveAction { get; set; }
Property Value
Type Description
System.Action<DragDropData>

DragOverAction

Declaration
public Action<DragDropData> DragOverAction { get; set; }
Property Value
Type Description
System.Action<DragDropData>

DropApplicationLinkAction

Declaration
public Action<Uri> DropApplicationLinkAction { get; set; }
Property Value
Type Description
System.Action<System.Uri>

DropBitmapAction

Declaration
public Action<RandomAccessStreamReference> DropBitmapAction { get; set; }
Property Value
Type Description
System.Action<Windows.Storage.Streams.RandomAccessStreamReference>

DropDataViewAction

Declaration
public Action<DataPackageView> DropDataViewAction { get; set; }
Property Value
Type Description
System.Action<Windows.ApplicationModel.DataTransfer.DataPackageView>

DropHtmlAction

Declaration
public Action<string> DropHtmlAction { get; set; }
Property Value
Type Description
System.Action<System.String>

DropRtfAction

Declaration
public Action<string> DropRtfAction { get; set; }
Property Value
Type Description
System.Action<System.String>

DropStorageItemsAction

Declaration
public Action<IReadOnlyList<IStorageItem>> DropStorageItemsAction { get; set; }
Property Value
Type Description
System.Action<System.Collections.Generic.IReadOnlyList<Windows.Storage.IStorageItem>>

DropTextAction

Declaration
public Action<string> DropTextAction { get; set; }
Property Value
Type Description
System.Action<System.String>

DropWebLinkAction

Declaration
public Action<Uri> DropWebLinkAction { get; set; }
Property Value
Type Description
System.Action<System.Uri>

Methods

ProcessComandsAsync(DataPackageView)

Declaration
public async Task ProcessComandsAsync(DataPackageView dataview)
Parameters
Type Name Description
Windows.ApplicationModel.DataTransfer.DataPackageView dataview
Returns
Type Description
System.Threading.Tasks.Task