Download ListBoxInsertionDragDemo.zip version 1.0.0.0, last updated 27/07/2014 (14.71 KB)

Download
  • md5: 39356bf60268fa530c9f0e472b474eb7
// Dragging items in a ListBox control with visual insertion guides
// http://www.cyotek.com/blog/dragging-items-in-a-listbox-control-with-visual-insertion-guides

namespace ListBoxInsertionDragDemo
{
  /// <summary>
  /// Determines the insertion mode of a drag operation
  /// </summary>
  internal enum InsertionMode
  {
    /// <summary>
    /// None
    /// </summary>
    None,

    /// <summary>
    /// The source item will be inserted before the destination item
    /// </summary>
    Before,

    /// <summary>
    /// The source item will be inserted after the destination item
    /// </summary>
    After
  }
}

Donate

Donate