Class DragCheckLixtBoxEventArgs
Provides data for the CheckListBox.DragCheckListBoxHandler event.
Inheritance
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class DragCheckLixtBoxEventArgs : RoutedEventArgs
Constructors
DragCheckLixtBoxEventArgs(RoutedEvent)
Initializes a new instance of the DragCheckLixtBoxEventArgs class.
Declaration
public DragCheckLixtBoxEventArgs(RoutedEvent routedEvent)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Windows.RoutedEvent | routedEvent | The routedEvent contans the System.Windows.RoutedEvent. |
Properties
Cancel
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Remarks
You can cancel or customize the drag and drop operations through CheckListBox.DragCheckListBoxHandler event handler.
Data
Gets or sets the data of the drag and drop items.
Declaration
public DataObject Data { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Windows.DataObject | The data of CheckListBox. |
DragDropEffects
Gets or sets the possible effects of a drag-and-drop operation.
Declaration
public DragDropEffects DragDropEffects { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Windows.DragDropEffects | One of the System.Windows.DragDropEffects enumeration that specifies the effects of a drag-and-drop operation. The default mode is System.Windows.DragDropEffects.Move. |
Remarks
You can use DragDropEffects to display different mouse pointers for drag-and-drop operations.
DragSource
Gets or sets the framework element that contains the dragging items.
Declaration
public FrameworkElement DragSource { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Windows.FrameworkElement | The System.Windows.FrameworkElement that contains the dragging items. |
DropSource
Gets or sets the framework element that contains the dropping items.
Declaration
public FrameworkElement DropSource { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Windows.FrameworkElement | The System.Windows.FrameworkElement that contains the dropping items. |