ContentElement.AllowDrop Property

Definition

Gets or sets a value that indicates 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.

Examples

The following example sets AllowDrop in XAML.

<Paragraph Name="focusableP" Style="{StaticResource FocusableParagraph}"  AllowDrop="True" Drop="dropHandler">
  Drop something here...
  <Hyperlink Name="h1" Click="MakeSpecialLink">Follow me!</Hyperlink>
</Paragraph>

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 ContentElement or any other base element class. Certain controls, for example, RichTextBox, do have a default behavior, but no ContentElement derived classes have such a behavior. For more information on drag and drop, see Drag and Drop Overview.

FrameworkContentElement overrides the metadata for this dependency property in its implementation. Specifically, FrameworkContentElement designates that this property allows property value inheritance (Inherits is true in metadata). Property value inheritance in this context means that if there are child elements with no other value for AllowDrop assigned through local values or styles, the value of the nearest parent element with this value assigned (again, either in styles, by default values, or a local value), then the value from that parent element is assigned to all unassigned child elements by the property system. This means that you can specify whether to allow drop operations at the root element and then propagate the value to all FrameworkContentElement child elements that have not specifically assigned it a value of false.

Dependency Property Information

Identifier field AllowDropProperty
Metadata properties set to true None

Applies to