UIElement3D.AllowDrop Property

Definition

Gets or sets a value indicating whether this element can be used as the target of a drag-and-drop operation.

public:
 property bool AllowDrop { bool get(); void set(bool value); };
public bool AllowDrop { get; set; }
member this.AllowDrop : bool with get, set
Public Property AllowDrop As Boolean

Property Value

true if this element can be used as the target of a drag-and-drop operation; otherwise, false. The default value is false.

Remarks

Drag-and-drop operations are not enabled by default, and must be enabled deliberately by setting AllowDrop to true. Beyond this basic setting, drag-and-drop behavior is entirely implementation specific and is not defined by UIElement3D or any other base element class. Certain controls, for example, RichTextBox, do have a default behavior. For more information on drag and drop, see Drag and Drop Overview.

AllowDrop is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Dependency Property Information

Identifier field AllowDropProperty
Metadata properties set to true None

Applies to