WPF

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DragCheckLixtBoxEventArgs

    Show / Hide Table of Contents

    Class DragCheckLixtBoxEventArgs

    Provides data for the CheckListBox.DragCheckListBoxHandler event.

    Inheritance
    System.Object
    DragCheckLixtBoxEventArgs
    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

    Gets or sets a value that indicates whether the DragStart and DragEnd event should be canceled.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if event should be canceled; otherwise, false.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved