Class DropIndicationDetails
Provides a context for a file dialog drag-over operation.
Inherited Members
Namespace: Telerik.Windows.Controls.FileDialogs.DragDrop
Assembly: Telerik.Windows.Controls.FileDialogs.dll
Syntax
public class DropIndicationDetails : ViewModelBase, INotifyPropertyChanged, IDisposable
Constructors
DropIndicationDetails()
Declaration
public DropIndicationDetails()
Properties
Count
Gets or sets the count of the dragged files/folders.
Declaration
public int Count { get; set; }
Property Value
System.Int32
|
DraggedFiles
Gets or sets the files/folders being dragged.
Declaration
public IEnumerable<string> DraggedFiles { get; set; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
DropFolderName
Gets or sets the name of the drop folder.
Declaration
public string DropFolderName { get; set; }
Property Value
System.String
|
DropFolderPath
Gets or sets the path of the drop folder.
Declaration
public string DropFolderPath { get; set; }
Property Value
System.String
|
Icon
Gets or sets the icon of the dragged files/folders.
Declaration
public ImageSource Icon { get; set; }
Property Value
System.Windows.Media.ImageSource
|
Operation
Gets or sets the current FileOperation that will be performed if drop i successful.
Declaration
public FileOperation Operation { get; set; }
Property Value
FileOperation
|
ShowDropIndicationInformation
Gets or sets a value indicating whether to show drop information in the drag visual.
Declaration
public bool ShowDropIndicationInformation { get; set; }
Property Value
System.Boolean
|